Create or modify tools (.json + .sh pairs) and skills (SKILL.md files) and hot-reload them into the active conversation using reload_capabilities. Use when you want to build a new capability, extend yourself with a new tool, fix an existing tool, create or update a skill, or build a complete application (web server, API, data pipeline, CLI) — all without restarting. --- ## Overview You can extend yourself at runtime. New tools and skills take effect immediately via `reload_capabilities` — no session restart required. Session-scoped capabilities live in `core/` inside your session directory: - **Tools**: `core/tools/<name>.json` (schema) + `core/tools/<name>.sh` (implementation) - **Skills**: `core/skills/<name>/SKILL.md` (frontmatter + body) **There is no limit on what a tool can do.** The shell script can call Python, Node.js, any language or binary on the system. Build first, use immediately. --- ## Building a tool
Full FlagRelease pipeline orchestrator. Runs the complete LLM deployment, verification, and benchmarking pipeline for multi-chip GPU backends. Executes: install-stack → env-verify → model-verify → perf-test in sequence, passing state between steps and producing a final structured report. Assumes gpu-container-setup (Step 1) is already done — a running container with PyTorch + GPU access must exist.
Adds a dx-cli subcommand from a DX Web API method docs page—fetch docs, stub Commander hierarchy, implement request/options, verify with make and --help. Use when the user provides or wants a https://docs.getdx.com/webapi/methods/ URL, asks to scaffold or implement a CLI command for a Web API method, or says "create command from API".
Specialized backend development knowledge for API design, database patterns, and server architecture.
Debug and verify web UI issues by opening pages in a real browser, checking for errors, applying code fixes, restarting the coc dev server, and re-testing. Use when the user asks to debug a web page, verify a UI fix in the browser, or test a localhost page after code changes.
- 📁 references/
- 📁 scripts/
- 📄 .gitignore
- 📄 README.md
- 📄 SKILL.md
This skill should be used when the user asks to install or audit an MCP server, especially from third-party sources. Security-focused: clones at pinned commits, runs security scans.
Type-safe REST/webhook API design patterns for Node.js microservices. Use when designing endpoints, webhook handlers, API contracts, or inter-service communication. Focuses on type-safety, validation, idempotency, and error handling.
- 📁 assets/
- 📁 examples/
- 📁 references/
- 📄 QUICKSTART.md
- 📄 README.md
- 📄 SKILL.md
Generalized blueprint for creating sophisticated personas on Zo Computer with safety rules, skills, MCP servers, and enhancement tools. Adaptable to any domain.
- 📁 references/
- 📄 README.md
- 📄 SKILL.md
Demonstration skill showing how to use uiautomator2-mcp-server for AI-driven Android UI testing. Also serves as the project's own automated UI test suite for continuous validation.
- 📁 .github/
- 📁 channel-plugin/
- 📁 config/
- 📄 .coverage
- 📄 .env.example
- 📄 .gitignore
Add real-time phone calling to AI agents using OpenAI Realtime API and Twilio Media Streams. Use when you want an AI agent to make or receive phone calls with sub-200ms latency, bidirectional audio streaming, and session continuity across voice, Telegram, and email channels. Requires Python 3.9+, a Twilio phone number, and an OpenAI API key with Realtime API access.
Backend specialist — builds APIs, database operations, auth, and server-side logic with security and performance focus
通过 Chrome DevTools 注入 XHR 拦截脚本来 mock 前端页面 API 数据,无需修改源码。当用户要求 mock 页面数据、前端没有后端可用、需要快速预览 UI 时触发。