const PATH = "logs/sample.jsonl";
const N = 400;
const raw = await dv.io.load(PATH);
if (typeof raw !== "string") {
dv.paragraph(`load failed: ${PATH}`);
return;
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "env": { | |
| "ANTHROPIC_AUTH_TOKEN": "sk-or-v1-your-openrouter-api-key", | |
| "ANTHROPIC_BASE_URL": "https://openrouter.ai/api", | |
| "ANTHROPIC_MODEL": "openrouter/pony-alpha", | |
| "ANTHROPIC_DEFAULT_OPUS_MODEL": "openrouter/pony-alpha", | |
| "ANTHROPIC_DEFAULT_SONNET_MODEL": "openrouter/pony-alpha", | |
| "ANTHROPIC_DEFAULT_HAIKU_MODEL": "openrouter/pony-alpha", | |
| "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "hooks": { | |
| "SessionStart": [ | |
| { | |
| "matcher": "compact", | |
| "hooks": [{ | |
| "type": "command", | |
| "command": "echo 'ここからは関西弁で応答してください。'", | |
| "timeout": 30 | |
| }] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "hooks": { | |
| "PreToolUse": [ | |
| { | |
| "matcher": "ExitPlanMode", | |
| "hooks": [ | |
| { | |
| "type": "command", | |
| "command": "code \"$(ls -t ~/.claude/plans/*.md | head -1)\"", | |
| "timeout": 5 |
| name | description | forkContext | model |
|---|---|---|---|
fork-context |
Fork the context of the conversation and return its full analysis verbatim. |
true |
inherit |
You are an agent that forks the context of the conversation and returns its full analysis verbatim.
Your job:
| name | description | tools | model |
|---|---|---|---|
Plan |
Fast agent specialized for exploring codebases. Use this when you need to quickly find files by patterns, search code for keywords, or answer questions about the codebase. |
mcp__serena__find_file, mcp__serena__search_for_pattern, mcp__serena__find_symbol, mcp__serena__get_symbols_overview, mcp__serena__find_referencing_symbols, mcp__serena__list_dir, Bash |
sonnet |
You are a file search specialist for Claude Code. You excel at thoroughly navigating and exploring codebases.
Your strengths:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "permissions": { | |
| "allow": [ | |
| "mcp__chrome-devtools-mcp__click", | |
| "mcp__chrome-devtools-mcp__drag", | |
| "mcp__chrome-devtools-mcp__fill", | |
| "mcp__chrome-devtools-mcp__fill_form", | |
| "mcp__chrome-devtools-mcp__handle_dialog", | |
| "mcp__chrome-devtools-mcp__hover", | |
| "mcp__chrome-devtools-mcp__upload_file", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [model_providers.openrouter] | |
| name = "OpenRouter" | |
| base_url = "https://openrouter.ai/api/v1" | |
| env_key = "OPENROUTER_API_KEY" | |
| [model_providers.anthropic] | |
| name = "Anthropic" | |
| base_url = "https://api.anthropic.com/v1" | |
| env_key = "ANTHROPIC_API_KEY" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://opencode.ai/config.json", | |
| "provider": { | |
| "deepseek": { | |
| "models": { | |
| "deepseek-chat": { | |
| "limit": { | |
| "context": 128000, | |
| "output": 8192 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.nothinglondon.sdkdemo.demos.sushi | |
| import android.content.Context | |
| import com.nothing.ketchum.GlyphMatrixManager | |
| import com.nothinglondon.sdkdemo.demos.GlyphMatrixService | |
| import kotlinx.coroutines.CoroutineScope | |
| import kotlinx.coroutines.Dispatchers | |
| import kotlinx.coroutines.cancel | |
| import kotlinx.coroutines.delay | |
| import kotlinx.coroutines.isActive |
NewerOlder