callee
Markdown-defined provider-backed agents and deterministic workflows for ACP runtimes.
File Explorer
- marketplace.json
- openai.yaml
- SKILL.md
- post-checkout
- post-merge
- pre-commit
- pre-push
- prepare-commit-msg
- .gitignore
- config.yaml
- interactions.jsonl
- metadata.json
- README.md
- agent-instructions-reviewer.md
- agent-instructions-writer.md
- architect.md
- explorer.md
- implementer.md
- release-operator.md
- release-verifier.md
- reviewer.md
- spec-writer.md
- technical-writer.md
- goalkeeper.md
- investigate.md
- maintain-documentation.md
- maintain-readme.md
- prepare-release.md
- release.md
- marketplace.json
- config.toml
- hooks.json
- marketplace.json
- marketplace.json
- lint.yml
- omnidist-release.yml
- release.yml
- security.yml
- test.yml
- marketplace.json
- .gitignore
- omnidist.yaml
- main.go
- main_test.go
- architecture.md
- development.md
- release.md
- acp-permissions.md
- acp-providers.md
- cli.md
- coding-host-integrations.md
- agent-resources.md
- execution-metrics.md
- workflow-semantics.md
- index.md
- luna-max-implementer.md
- sol-planner.md
- plan-then-implement.md
- README.md
- deepseek-reviewer.md
- glm-judge.md
- mimo-reviewer.md
- minimax-reviewer.md
- rejudge-diff.md
- rejudge.md
- README.md
- architect.md
- classifier.md
- custom-reviewer.md
- explorer.md
- implementer.md
- reviewer.md
- tester.md
- goalkeeper.md
- investigate.md
- routed-task.md
- task-router.md
- codec.go
- codec_test.go
- dependencies_test.go
- human_test.go
- resource.go
- router_test.go
- schema.go
- schema.json
- schema_test.go
- script_test.go
- state.go
- template.go
- template_replay_test.go
- template_test.go
- workflows.md
- SKILL.md
- SKILL.md
- callee-create-agent.md
- callee.md
- workflows.md
- SKILL.md
- SKILL.md
- architect.md
- explorer.md
- implementer.md
- reviewer.md
- goalkeeper.md
- investigate.md
- agent_import.go
- agent_import_test.go
- agent_root.go
- agents.go
- agents_test.go
- bridge.go
- opencode_assets.go
- parameters.go
- permissions_integration_test.go
- permissions_test.go
- promptkit.go
- promptkit_test.go
- pty_integration_test.go
- root.go
- root_test.go
- setup.go
- setup_test.go
- starter_agents.go
- agents.go
- agents_test.go
- graph.go
- logging.go
- logging_test.go
- agents.go
- agents_test.go
- config.go
- metrics.go
- metrics_test.go
- norma.go
- process.go
- process_test.go
- runtime_test.go
- adk.go
- adk_test.go
- control.go
- control_test.go
- heartbeat.go
- human.go
- lifecycle_test.go
- metrics.go
- policy.go
- policy_test.go
- router_test.go
- runner.go
- runner_test.go
- script.go
- script_test.go
- timeout.go
- timeout_test.go
- plugin.json
- plugin.json
- plugin.json
- plugin.json
- plugin.json
- workflows.md
- SKILL.md
- SKILL.md
- openai.yaml
- workflows.md
- SKILL.md
- openai.yaml
- SKILL.md
- doc.go
- plugin_test.go
- smoke-test-callee-human.sh
- questions.md
- normalizer.md
- assert-clarification.md
- human-loop.md
- LICENSE
- LICENSE
- .aiignore
- .dockerignore
- .gitignore
- .golangci.yml
- AGENTS.md
- go.mod
- go.sum
- LICENSE
- README.md
- THIRD_PARTY_NOTICES.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
dir
View Details ▼
dir
List files.
dir
List files in the current working directory:
tldr ls
View documentation for the original command:
dir
Show the contents of the current directory:
claude
View Details ▼
claude
An agent-based coding tool that understands your code base and helps you code faster through natural language commands.
claude prompt
Execute with prompt:
claude update
Update `claude`:
claude mcp list
Get the list of specified MCP servers:
codex
View Details ▼
codex
Natural language code assistant for the terminal, powered by OpenAI.
Reads and edits files in your current directory to fulfill requests.
codex
Start an interactive Codex session in the current directory:
codex "{{prompt}}"
Run a single Codex command using a prompt:
codex --sandbox workspace-write "{{prompt}}"
Run a prompt allowing Codex to edit files in the workspace:
complete
View Details ▼
complete
Get and set argument autocompletion rules of shell commands in Bash.
The specified completions will be invoked when `<Tab>` is pressed in Bash.
See also: `compgen`, `compopt`.
complete -F {{function}} {{command}}
Set arguments of a command to autocomplete through a function (completion response is sent in `$COMPREPLY` variable):
complete -C {{autocomplete_command}} {{command}}
Set arguments of a command to autocomplete through another command (`$1` is the command, `$2` is the argument the cursor is on, and `$3` is the argument preceding the cursor):
complete -b {{command}}
Set arguments of a command to autocomplete to shell builtins:
copilot
View Details ▼
copilot
Interact with GitHub Copilot.
copilot
Start interactive mode:
copilot --allow-tool write
Allow all file editing:
copilot --continue
Resume the most recent session:
done
View Details ▼
done
This shell keyword is used with `for`, `while`, `select`, and `until` to mark the end of a loop.
tldr for
View documentation for the `for` keyword:
tldr while
View documentation for the `while` keyword:
tldr select
View documentation for the `select` keyword:
git
View Details ▼
git
Distributed version control system.
Some subcommands such as `commit`, `add`, `branch`, `switch`, `push`, etc. have their own usage documentation.
git init
Create an empty Git repository:
git clone {{https://example.com/repo.git}}
Clone a remote Git repository from the internet:
git status
View the status of the local repository:
go install
View Details ▼
go install
Compile and install packages named by the import paths.
go install
Compile and install the current package:
go install {{path/to/package}}
Compile and install a specific local package:
go install {{golang.org/x/tools/gopls}}@{{latest}}
Install the latest version of a program, ignoring `go.mod` in the current directory:
go test
View Details ▼
go test
Test Go packages (files have to end with `_test.go`).
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.
go test
Test the package found in the current directory:
go test -v
[v]erbosely test the package in the current directory:
go test -v ./...
Test the packages in the current directory and all subdirectories:
kind
View Details ▼
kind
Run local Kubernetes clusters using Docker container "nodes".
Designed for testing Kubernetes itself, but may be used for local development or continuous integration.
kind create cluster --name {{cluster_name}}
Create a local Kubernetes cluster:
kind delete clusters {{cluster_name}}
Delete one or more clusters:
kind get {{clusters|nodes|kubeconfig}}
Get details about clusters, nodes, or the kubeconfig:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
opencode
View Details ▼
opencode
An AI coding agent.
Some subcommands such as `auth`, `models`, `web`, etc. have their own usage documentation.
opencode
Start the interactive TUI:
opencode {{[-c|--continue]}}
Continue the most recent session:
opencode run "{{message}}"
Run opencode in non-interactive mode by passing a prompt directly:
route
View Details ▼
route
Show and manipulate the route table.
route -n
Display the information of route table:
sudo route add "{{destination_ip_address}}" "{{gateway_address}}"
Add a route to a destination through a gateway:
sudo route add -net {{ip_address}} netmask {{netmask_address}} gw {{gw_address}}
Add route rule:
timeout
View Details ▼
timeout
Run a command with a time limit.
timeout 3s sleep 10
Run `sleep 10` and terminate it after 3 seconds:
timeout {{[-s|--signal]}} {{INT|HUP|KILL|...}} {{5s}} {{sleep 10}}
Send a signal to the command after the time limit expires (`TERM` by default, `kill -l` to list all signals):
timeout {{[-v|--verbose]}} {{0.5s|1m|1h|1d|...}} {{command}}
Send verbose output to `stderr` showing signal sent upon timeout:
bridge
View Details ▼
bridge
Show and manipulate network bridge addresses and devices.
bridge {{[l|link]}}
List all bridges and their interfaces:
bridge {{[v|vlan]}}
Show port vlan information:
sudo bridge {{[v|vlan]}} {{[a|add]}} dev {{lanX}} vid {{vlan_id}} pvid {{tagged|untagged}}
Assign a VLAN to a port:
