tma1
Local-first observability your agent reads back. TMA1 records every LLM call, then routes what it sees into the agent's next turn via hooks and MCP.
File Explorer
- marketplace.json
- pre-push
- ci.yml
- deploy-site.yml
- release.yml
- plugin.json
- SKILL.md
- tma1-peer.md
- SKILL.md
- SKILL.md
- SKILL.md
- AGENTS.md
- README.md
- REFERENCE.md
- SKILL.md
- anomalies.md
- architecture.md
- hooks.md
- mcp-tools.md
- tma1-prettylog
- main.go
- main_test.go
- web.go
- config.go
- config_test.go
- settings.go
- derive.go
- derive_test.go
- anomaly_emits.go
- build.go
- default_config.go
- external.go
- flows.go
- flows.sql
- flows_test.go
- process.go
- process_test.go
- project.go
- schema_migrations.go
- schema_migrations_test.go
- signal_unix.go
- signal_windows.go
- standalone-default.toml
- anomalies.go
- broadcast.go
- codex_live.go
- codex_live_test.go
- evaluate.go
- handler.go
- handler_test.go
- hook_envelope_codex_test.go
- hook_telemetry.go
- hook_telemetry_test.go
- hooks.go
- insights.go
- settings.go
- sse.go
- SKILL.md
- tma1-peer.md
- SKILL.md
- SKILL.md
- SKILL.md
- hooks.go
- install_cc.go
- install_cc_test.go
- install_codex.go
- install_codex_test.go
- install_shared.go
- install_shared_test.go
- tma1-hook-codex.ps1.tmpl
- tma1-hook-codex.sh.tmpl
- tma1-hook.ps1.tmpl
- tma1-hook.sh.tmpl
- uninstall_cc.go
- uninstall_cc_test.go
- uninstall_codex.go
- uninstall_codex_test.go
- uninstall_shared.go
- uninstall_shared_test.go
- install.go
- install_test.go
- protocol.go
- server.go
- server_test.go
- tools.go
- path.go
- path_test.go
- anomaly.go
- anomaly_emits.go
- anomaly_test.go
- build.go
- bundle.go
- bundle_test.go
- client.go
- digest.go
- digest_test.go
- external.go
- file_writer.go
- file_writer_test.go
- injection_cache.go
- injection_cache_test.go
- peer.go
- peer_test.go
- project.go
- session.go
- capture.go
- capture_test.go
- event.go
- store.go
- store_test.go
- attribution.go
- event.go
- gitignore.go
- gitignore_test.go
- sensor.go
- sensor_test.go
- store.go
- watcher.go
- watcher_test.go
- indexer.go
- indexer_test.go
- sensor.go
- sensor_test.go
- store.go
- sqlutil.go
- sqlutil_test.go
- strutil.go
- strutil_test.go
- codex.go
- codex_realfile_test.go
- codex_test.go
- copilot_cli.go
- copilot_cli_test.go
- http.go
- openclaw.go
- openclaw_test.go
- watcher.go
- sem.go
- sem_test.go
- style.css
- agent-canvas.js
- anomalies.js
- chart.js
- claude-code.js
- codex.js
- copilot-cli.js
- core.js
- i18n.js
- metrics-explorer.js
- openclaw.js
- prompts.js
- sessions-detail.js
- sessions-insights.js
- sessions-stats.js
- sessions-timeline.js
- sessions-waterfall.js
- sessions.js
- traces.js
- views.js
- uPlot.iife.min.js
- uPlot.min.css
- eslint.config.js
- favicon.svg
- index.html
- package-lock.json
- package.json
- web.go
- go.mod
- go.sum
- anomaly-dark.webp
- anomaly-light.webp
- cost-dark.webp
- cost-light.webp
- hero-dark.webp
- hero-light.webp
- performance-dark.webp
- performance-light.webp
- security-dark.webp
- security-light.webp
- session-live.mp4
- sessions-dark.webp
- sessions-light.webp
- tools-dark.webp
- tools-light.webp
- .nojekyll
- 25c7af1519b8136ae338e23dabe75ff9.txt
- CNAME
- favicon.svg
- install.ps1
- install.sh
- logo-mark.svg
- logo.svg
- HomePage.astro
- ui.ts
- Layout.astro
- index.astro
- index.astro
- index.astro
- global.css
- astro.config.mjs
- package-lock.json
- package.json
- tsconfig.json
- .gitattributes
- .gitignore
- .golangci.yml
- AGENTS.md
- CHANGELOG.md
- CLAUDE.md
- LICENSE
- Makefile
- README.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.
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:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies 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`:
openai
View Details ▼
openai
CLI tool providing access to the OpenAI API.
openai api models.list
List models:
openai api completions.create --model {{ada}} --prompt "{{Hello world}}"
Create a completion:
openai api chat_completions.create --model {{gpt-3.5-turbo}} --message {{user "Hello world"}}
Create a chat completion:
pytest
View Details ▼
pytest
Run Python tests.
pytest {{path/to/test_file1.py path/to/test_file2.py ...}}
Run tests from specific files:
pytest -k {{expression}}
Run tests with names matching a specific [k]eyword expression:
pytest {{[-x|--exitfirst]}}
Exit as soon as a test fails or encounters an error:
