- 📁 .github/
- 📁 config/
- 📁 docs/
- 📄 .gitignore
- 📄 AGENTS.md
- 📄 docker-compose.yml
Use when an AI agent needs to manage Traefik Route Manager routes through its HTTP API, including authenticating, listing routes, and creating, updating, or deleting managed route entries that map domains to backend services.
高德地图 JSAPI v2.0 (WebGL) 开发技能。涵盖地图生命周期管理、强制安全配置、3D 视图控制、覆盖物绘制及 LBS 服务集成。
Interact with Claudie's private mailbox system via API. Use when the user wants to register for a mailbox, log in, check for new messages, read their conversation thread, send a message to Claudie, or reset their mailbox password. Triggers on mentions of "Claudie", "mailbox", "send a message to Claudie", "check mail", or "Claudie's mailbox".
Moves frontend files between directories, updates imports, renames symbols, and validates with type-check/lint/test/build.
Cross-engine dispatch layer for AI coding agents. Use when you need to: launch a worker on Codex/Claude/Gemini, recover a timed-out dispatch, steer a running worker mid-flight, or coordinate multi-model work. Trigger on: agent-mux, dispatch, spawn worker, codex worker, profile dispatch, async dispatch, steer agent, recover timeout, multi-engine. --- # agent-mux One CLI, three engines (Codex, Claude, Gemini), one JSON contract. Worker identity lives in prompt files at `~/.agent-mux/prompts/` -- markdown with YAML frontmatter that sets engine, model, effort, timeout, and system prompt. No config files, no role tables. The prompt IS the worker. ## Quick Dispatch Three patterns cover 95% of dispatches. **Profile dispatch** (the standard path -- one flag resolves everything): ```bash agent-mux -P=lifter -C=/repo "Fix the retry logic in src/client/retry.go" 2>/dev/null ``` **Async dispatch** (fire, collect later): ```bash ID=$(agent-mux -P=scout --async -C=/repo "Find deprecated API usages" 2>/dev/null | jq -r .dispatch_id) agent-mux wait --poll 30s "$ID" 2>/dev/null agent-mux result --json "$ID" 2>/dev/null ``` **Structured dispatch via stdin** (canonical machine invocation): ```bash printf '%s' '{"profile":"lifter","prompt":"Implement the fix","cwd":"/repo"}' \ | agent-mux --stdin --async 2>/dev/null ``` Parse stdout JSON. Every result has `status`, `response`, `activity.files_changed`, and `metadata.engine`. Always check `status` first. ## Profile Roster
- 📁 .claude-plugin/
- 📄 SKILL.md
Query Claude Code session analytics from ccrecall database. Use when user asks about token usage, session history, or wants to analyze their Claude Code usage patterns.
- 📄 reference.md
- 📄 SKILL.md
企业级AI提示词全生命周期开发规范,包含需求设计、开发编写、版本管控、测试验收、安全合规全流程,适用于企业级提示词项目开发
This skill should be used when reading any tabular data file (Excel, CSV, Parquet, ODS). It automatically detects and fixes common data issues including multi-level headers, encoding problems, empty rows/columns, and data type mismatches. Returns a clean DataFrame ready for analysis with zero user intervention.
- 📁 .claude-plugin/
- 📁 .github/
- 📁 agent/
- 📄 .gitignore
- 📄 .nvmrc
- 📄 CHANGELOG.md
Build autonomous AI agents with Claude Agent SDK. TypeScript v0.2.104 | Python v0.1.58.
Reference for project architecture. Use when you need to understand the codebase structure, module organization, request/response flow, or key types.
- 📁 agents/
- 📁 references/
- 📁 scripts/
- 📄 SKILL.md
Enforce maintainable, testable, and robust engineering practices for the OpenTulpa codebase. Use when implementing features, refactors, bug fixes, or integrations in this repository, especially for LangGraph runtime, FastAPI routes, Telegram interfaces, scheduler/task flows, and memory/directive behavior. Apply this skill to plan separation-of-concerns changes, preserve runtime behavior, and run repository-specific quality gates and regression checks.
- 📁 .claude-plugin/
- 📁 references/
- 📄 .DS_Store
- 📄 LICENSE
- 📄 README.md
Enforces the Airbnb iOS Swift Style Guide on Swift code. Use this skill any time the user