Clojure Playwright 1.58.0 wrapper. Browser automation, testing, assertions, codegen, CLI. Use for: E2E tests, bug-finding, checkout automation, site exploration, screenshots, scraping, visual regression. NOT for: general web dev, non-browser APIs, non-Playwright frameworks.
Run a local code review against project architecture rules and quality standards. Use when the user asks to review code, check for violations, or audit changes.
- 📁 actions/
- 📁 assets/
- 📁 benchmarks/
- 📄 .gitignore
- 📄 DESIGN_unified_actions.md
- 📄 LICENSE
GUI automation via visual detection. Clicking, typing, reading content, navigating menus, filling forms — all through screenshot → detect → act workflow. Supports macOS and Linux.
Guide for AI Agents and LLM development skills including RAG, multi-agent systems, prompt engineering, memory systems, and context engineering.
- 📁 references/
- 📁 scripts/
- 📄 path-security.ts
- 📄 SKILL.md
读写、编辑和删除本地文件。当用户提到「打开文件」「帮我看看这个文档」 「帮我写一份 XX」「修改 XX 文件」「读一下 XX」「删除 XX」或拖拽文件到对话中时使用此技能。 支持 .txt, .md, 代码文件的直接读写,以及 .pdf, .docx, .xlsx 的文本提取。 --- # 文件操作技能(FileSkill) ## 概述 此技能让你能够读取、创建、编辑和删除用户本地文件系统中的文件。所有文件操作都限制在用户授权的目录范围内。 所有操作通过 `run_skill_script` 工具执行 `scripts/` 目录下的脚本。脚本源码不会进入对话上下文窗口,你只能看到执行结果。 ## 可用脚本 通过 `run_skill_script` 调用,`skill_name` 始终为 `file`: ### read_file.ts 读取指定路径的文件内容。纯文本文件直接返回内容;.pdf / .docx / .xlsx 返回提取的文本。 ``` 参数(JSON):{ "path": "文件绝对路径" } 返回:{ "success": true, "content": "文件内容" } ``` ### write_file.ts 创建新文件或覆写已有文件。 ``` 参数(JSON):{ "path": "文件绝对路径", "content": "要写入的内容" } 返回:{ "success": true, "content": "已创建文件: ..." } ``` ### edit_file.ts 通过字符串替换精确修改已有文件。old_text 必须与文件内容完全一致(包括空格和换行)。 ``` 参数(JSON):{ "path": "文件绝对路径", "old_text": "被替换文本", "new_text": "新文本" } 返回:{ "success": true, "content": "已编辑文件: ..." } ``` ### delete_file.ts 删除指定路径的文件。 ``` 参数(JSON):{ "path": "文件绝对路径" } 返回:{ "success": true, "content": "已删除文件: ..." } ``` ## 使用指南 ### 何时使用 read_file.ts - 用户说「打开」「看看」「读一下」某个文件 - 用户拖拽文件到对话(消息中包含文件路径) - 你需要了解某个文件的内容才能回答问题 ### 何时使用 write_file.ts - 用户明确要求创建新文件(「帮我写一份笔记」「创建一个 TODO 列表」) - 用户要求将内容保存到文件 - **注意**:覆写已有文件前,先用 read_file.ts 确认文件是否存在。如果文件存在且用户未明确说要覆写,应先告知用户 ### 何时使用 edit_file.ts - 用户要求修改已有文件的部分内容 - 先用 read_file.ts 读取文件,找到要修改的精确文本片段,再用 edit_file.ts 替换 - old_text 必须与文件中的内容完全匹配(包括空格和换行) ### 何时使用 delete_file.ts - 用户明确要求删除某个文件 - 内部系统需要删除临时文件(如 BOOTSTRAP.md 自毁) - **谨慎使用**:删除前确认用户意图,不可恢复 ## 文件类型支持 | 类型 | 读取 | 写入 | 编辑 | 删除 | |------|------|------|------|------| | .txt, .md | ✅ 直接读取 | ✅ | ✅ | ✅ | | 代码文件 (.js, .ts, .py 等) | ✅ 直接读取 | ✅ | ✅ | ✅ | | .pdf | ✅ 文本提取 | ❌ | ❌ | ✅ | | .docx | ✅ 文本提取 | ❌ | ❌ | ✅ | | .xlsx | ✅ 文本提取 | ❌ | ❌ | ✅ | ## 安全边界 - 所有路径必须在用户授权的目录(allowedRoots)范围内,路径校验失败会返回错误 - 禁止访问系统敏感目录(如 ~/.ssh/、/etc/) - 不要尝试读取二进制文件(图片、视频、可执行文件等) - 文件大小有上限限制,过大的文件会返回截断提示 > 需要查看完整的文件格式支持列表和详细说明,请使用 `read_skill_reference` 读取 `format-details.md`。
- 📁 .claude-plugin/
- 📁 assets/
- 📁 references/
- 📄 SKILL.md
- 📄 SOURCES.md
Fast research that beats plain websearch — discovers what exists before searching specifics (Landscape Scan), catches recent releases within days/weeks (Recency Pulse + upstream supply chain), and runs parallel queries for multi-angle coverage. Good for everyday research and current-info questions. Use when user requests research, comparison, or "what's the latest on X". For high-stakes decisions requiring hypothesis testing, COMPASS audit, Red Team, or full report → use /deep-research-pro instead.
REST API design best practices covering versioning, error handling, pagination, and OpenAPI documentation. Use when designing or implementing REST APIs or HTTP endpoints. TRIGGER when: API design, REST endpoint, HTTP route, OpenAPI, swagger, pagination. DO NOT TRIGGER when: internal library code, CLI tools, non-HTTP interfaces.
- 📁 .github/
- 📁 crates/
- 📁 docs/
- 📄 .gitignore
- 📄 .npmignore
- 📄 Cargo.lock
Formally verify programs by writing Lean 4 proofs. Trigger this skill whenever the user wants to formally verify code, generate Lean 4 proofs, prove properties about algorithms or smart contracts, verify invariants, convert program logic into formal specifications, or anything involving Lean 4 and formal verification. Also trigger when the user mentions "qedgen", "lean proof", "formal proof", "verify my code", "prove correctness", "formal verification", or wants mathematical guarantees about their implementation.
- 📁 .github/
- 📁 .superpowers/
- 📁 archon-cli/
- 📄 .gitignore
- 📄 archon-context.json
- 📄 archon-self.json
Archon can be invoked as a skill by AI agents during the development loop to provide architectural context and validation.
Search Memex long-term memory for relevant information. Returns facts, notes, and entities matching the query.
- 📁 docs/
- 📁 prompts/
- 📁 tests/
- 📄 .gitignore
- 📄 conftest.py
- 📄 README.md
追爱军师 — 帮你用最纯情的话把心上人追到手 | Love Strategist — win over your crush with the most sincere words
- 📁 bundled-skills/
- 📁 references/
- 📁 templates/
- 📄 README.md
- 📄 SKILL.md
Use when the user wants to initialize a project development environment, establish a documentation system, set up an Agent Team, or says "harness", "project initialization", or "setup dev environment". Also automatically suggested at the first development session of a new project.