help by parcadei/continuous-claude-v3
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill help引导用户了解此工作区设置的功能。
/help # 交互式引导探索
/help workflows # 工作流编排技能
/help agents # 专家代理目录
/help tools # CLI 工具 (tldr, prove, recall)
/help hooks # 活动钩子及其作用
/help advanced # MCP, frontmatter, 自定义
/help <name> # 深入探讨特定技能/代理
使用 AskUserQuestion 引导用户:
question: "您想做什么?"
header: "目标"
options:
- label: "探索/理解代码库"
description: "查找模式、架构、约定"
- label: "修复错误"
description: "调查、诊断、实施修复"
- label: "构建功能"
description: "规划、实施、测试新功能"
- label: "证明数学问题"
description: "使用 Lean 4 进行形式化验证"
根据响应,显示相关工具:
| 目标 | 显示 |
|---|---|
| 探索代码库 | scout 代理, tldr CLI, /explore 工作流 |
| 修复错误 | /fix 工作流, sleuth 代理, debug-agent |
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 构建功能 | /build 工作流, architect 代理, kraken 代理 |
| 证明数学 | /prove 技能, lean4 技能, Godel-Prover |
| 研究文档 | oracle 代理, nia-docs, perplexity |
| 配置工作区 | hooks, rules, settings, frontmatter |
显示工作流元技能:
## 工作流技能
为复杂任务编排多代理流水线。
| 工作流 | 目的 | 使用的代理 |
|----------|---------|-------------|
| /fix | 错误调查 → 诊断 → 实施 | sleuth → kraken → arbiter |
| /build | 功能规划 → 实施 → 测试 | architect → kraken → arbiter |
| /debug | 问题深度调查 | debug-agent, sleuth |
| /tdd | 测试驱动开发周期 | arbiter → kraken → arbiter |
| /refactor | 安全地进行代码转换 | phoenix → kraken → judge |
| /review | 代码审查和反馈 | critic, judge |
| /security | 漏洞分析 | aegis |
| /explore | 代码库发现 | scout |
| /test | 测试执行和验证 | arbiter, atlas |
| /release | 版本更新,变更日志 | herald |
| /migrate | 框架/基础设施变更 | pioneer, phoenix |
**用法**:只需描述您的目标。Claude 会路由到正确的工作流。
显示代理目录:
## 专家代理
通过 Task 工具和 subagent_type 生成。
### 探索与研究
| 代理 | 目的 | 模型 |
|-------|---------|-------|
| scout | 代码库探索,模式查找 | sonnet |
| oracle | 外部研究(网络、文档、API) | sonnet |
| pathfinder | 外部仓库分析 | sonnet |
### 规划与架构
| 代理 | 目的 | 模型 |
|-------|---------|-------|
| architect | 功能规划,设计文档 | sonnet |
| plan-agent | 创建实施计划 | sonnet |
| phoenix | 重构和迁移规划 | sonnet |
### 实施
| 代理 | 目的 | 模型 |
|-------|---------|-------|
| kraken | TDD 实施,重构 | sonnet |
| spark | 快速修复,轻量级更改 | haiku |
### 审查与验证
| 代理 | 目的 | 模型 |
|-------|---------|-------|
| arbiter | 测试执行,验证 | sonnet |
| critic | 代码审查 | sonnet |
| judge | 重构审查 | sonnet |
### 调查
| 代理 | 目的 | 模型 |
|-------|---------|-------|
| sleuth | 错误调查,根本原因分析 | sonnet |
| debug-agent | 带日志的问题调查 | sonnet |
| profiler | 性能,竞态条件 | sonnet |
### 文档与交接
| 代理 | 目的 | 模型 |
|-------|---------|-------|
| scribe | 文档,会话摘要 | sonnet |
| chronicler | 会话分析,学习提取 | sonnet |
显示 CLI 工具和功能:
## 内置工具
### TLDR 代码分析
令牌高效的代码探索(相比读取原始文件节省 95%)。
```bash
tldr tree src/ # 文件树
tldr structure src/ --lang python # 代码结构 (codemaps)
tldr search "pattern" src/ # 搜索文件
tldr cfg file.py func # 控制流图
tldr dfg file.py func # 数据流图
tldr impact func src/ # 反向调用图 (谁调用了这个?)
tldr dead src/ # 查找死代码
tldr arch src/ # 检测架构层
无需学习 Lean 语法的机器验证证明。
/prove every group homomorphism preserves identity
/prove continuous functions on compact sets are uniformly continuous
要求:本地运行 Godel-Prover 模型的 LM Studio。
跨会话存储和回忆学习内容。
# 回忆过去的学习内容
(cd opc && uv run python scripts/core/recall_learnings.py --query "hook patterns")
# 存储新学习内容(通过 /remember 技能)
/remember "Hook X 的工作原理是..."
在问题发生前识别故障模式。
/premortem [plan-file] # 分析实施计划的风险
### /help hooks
显示活动钩子:
```markdown
## 活动钩子
钩子在关键生命周期点扩展 Claude 的行为。
### 会话生命周期
| 钩子 | 事件 | 目的 |
|------|-------|---------|
| session-register | SessionStart | 在协调数据库中注册会话 |
| session-start-recall | SessionStart | 自动注入相关学习内容 |
| session-end-cleanup | SessionEnd | 清理临时文件 |
| session-outcome | SessionEnd | 提示会话结果 |
### 用户提示处理
| 钩子 | 事件 | 目的 |
|------|-------|---------|
| skill-activation-prompt | UserPromptSubmit | 建议相关技能 |
| premortem-suggest | UserPromptSubmit | 建议对实施进行风险分析 |
### 工具拦截
| 钩子 | 事件 | 目的 |
|------|-------|---------|
| tldr-read-enforcer | PreToolUse:Read | 对大文件建议使用 tldr |
| smart-search-router | PreToolUse:Grep | 将结构化搜索路由到 ast-grep |
| file-claims | PreToolUse:Edit | 跟踪哪些会话编辑了哪些文件 |
| signature-helper | PreToolUse:Edit | 注入函数签名 |
| import-validator | PostToolUse:Edit | 编辑后验证导入 |
### 验证
| 钩子 | 事件 | 目的 |
|------|-------|---------|
| typescript-preflight | PreToolUse:Bash | 运行前进行类型检查 |
| compiler-in-the-loop | Stop | 为 /prove 运行 Lean 编译器 |
### 子代理协调
| 钩子 | 事件 | 目的 |
|------|-------|---------|
| subagent-start | SubagentStart | 初始化代理上下文 |
| subagent-stop | SubagentStop | 从代理中提取学习内容 |
显示高级自定义选项:
## 高级:自定义与扩展
### 技能 Frontmatter
技能使用 YAML frontmatter 存储元数据和工具限制:
```yaml
---
name: my-skill
description: 功能描述
triggers: ["keyword1", "keyword2"]
allowed-tools: [Bash, Read, Edit]
priority: high
skills: [other-skill] # 自动加载依赖项
---
代理声明其能力:
---
name: my-agent
description: X 领域专家
model: sonnet|haiku|claude-opus-4-5-20251101
tools: [Read, Grep, Glob, Bash]
---
外部工具集成:
| 服务器 | 目的 |
|---|---|
| ast-grep | 结构化代码搜索/重构 |
| firecrawl | 网络爬取 |
| github-search | 搜索 GitHub 代码/问题 |
| morph | 快速文件编辑 (10k 令牌/秒) |
| nia | 文档搜索 |
| perplexity | AI 驱动的网络研究 |
始终注入到上下文中的指令:
claim-verification.md - 断言前进行验证dynamic-recall.md - 如何使用记忆系统tldr-cli.md - TLDR 使用参考mkdir -p .claude/skills/my-skill
# 创建 .claude/skills/my-skill/SKILL.md 并包含 frontmatter
# 创建 .claude/agents/my-agent.md 并包含 frontmatter
### /help <specific-name>
用于特定技能/代理查找:
1. 搜索匹配的技能:`.claude/skills/<name>/SKILL.md`
2. 搜索匹配的代理:`.claude/agents/<name>.md`
3. 读取文件并显示:
- 描述
- 使用示例
- 何时使用
- 相关技能/代理
## 动态发现
为保持帮助信息最新,动态读取 frontmatter:
```bash
# 列出所有技能及其描述
for f in .claude/skills/*/SKILL.md; do
head -10 "$f" | grep -E "^(name|description):"
done
# 列出所有代理
for f in .claude/agents/*.md; do
head -10 "$f" | grep -E "^(name|description):"
done
用户 : /help
Claude :
您想做什么?
[ ] 探索/理解代码库
查找模式、架构、约定
[ ] 修复错误
调查、诊断、实施修复
[ ] 构建功能
规划、实施、测试新功能
[ ] 证明数学问题
使用 Lean 4 进行形式化验证
[其他:描述您的目标]
用户选择 : "修复错误"
Claude :
## 错误修复工具
### 快速路径
只需描述错误。我会自动使用 /fix 工作流。
### 手动控制
- **sleuth** 代理:深度调查,根本原因分析
- **debug-agent**:日志分析,状态检查
- **kraken** 代理:修复的 TDD 实施
### 命令
- `/fix` - 完整工作流(调查 → 诊断 → 实施 → 测试)
- `/debug` - 仅调查
### 提示
- 提供错误消息、日志、复现步骤
- 事前钩子会在实施前建议风险分析
每周安装量
200
仓库
GitHub 星标
3.6K
首次出现
2026年1月22日
安全审计
安装于
opencode194
codex193
gemini-cli190
cursor190
github-copilot187
amp184
Guide users through the capabilities of this workspace setup.
/help # Interactive guided discovery
/help workflows # Workflow orchestration skills
/help agents # Specialist agents catalog
/help tools # CLI tools (tldr, prove, recall)
/help hooks # Active hooks and what they do
/help advanced # MCP, frontmatter, customization
/help <name> # Deep dive on specific skill/agent
Use AskUserQuestion to guide the user:
question: "What are you trying to do?"
header: "Goal"
options:
- label: "Explore/understand a codebase"
description: "Find patterns, architecture, conventions"
- label: "Fix a bug"
description: "Investigate, diagnose, implement fix"
- label: "Build a feature"
description: "Plan, implement, test new functionality"
- label: "Prove something mathematically"
description: "Formal verification with Lean 4"
Based on response, show relevant tools:
| Goal | Show |
|---|---|
| Explore codebase | scout agent, tldr CLI, /explore workflow |
| Fix a bug | /fix workflow, sleuth agent, debug-agent |
| Build feature | /build workflow, architect agent, kraken agent |
| Prove math | /prove skill, lean4 skill, Godel-Prover |
| Research docs | oracle agent, nia-docs, perplexity |
| Configure workspace | hooks, rules, settings, frontmatter |
Display workflow meta-skills:
## Workflow Skills
Orchestrate multi-agent pipelines for complex tasks.
| Workflow | Purpose | Agents Used |
|----------|---------|-------------|
| /fix | Bug investigation → diagnosis → implementation | sleuth → kraken → arbiter |
| /build | Feature planning → implementation → testing | architect → kraken → arbiter |
| /debug | Deep investigation of issues | debug-agent, sleuth |
| /tdd | Test-driven development cycle | arbiter → kraken → arbiter |
| /refactor | Code transformation with safety | phoenix → kraken → judge |
| /review | Code review and feedback | critic, judge |
| /security | Vulnerability analysis | aegis |
| /explore | Codebase discovery | scout |
| /test | Test execution and validation | arbiter, atlas |
| /release | Version bumps, changelog | herald |
| /migrate | Framework/infrastructure changes | pioneer, phoenix |
**Usage**: Just describe your goal. Claude routes to the right workflow.
Display agent catalog:
## Specialist Agents
Spawn via Task tool with subagent_type.
### Exploration & Research
| Agent | Purpose | Model |
|-------|---------|-------|
| scout | Codebase exploration, pattern finding | sonnet |
| oracle | External research (web, docs, APIs) | sonnet |
| pathfinder | External repository analysis | sonnet |
### Planning & Architecture
| Agent | Purpose | Model |
|-------|---------|-------|
| architect | Feature planning, design docs | sonnet |
| plan-agent | Create implementation plans | sonnet |
| phoenix | Refactoring & migration planning | sonnet |
### Implementation
| Agent | Purpose | Model |
|-------|---------|-------|
| kraken | TDD implementation, refactoring | sonnet |
| spark | Quick fixes, lightweight changes | haiku |
### Review & Validation
| Agent | Purpose | Model |
|-------|---------|-------|
| arbiter | Test execution, validation | sonnet |
| critic | Code review | sonnet |
| judge | Refactoring review | sonnet |
### Investigation
| Agent | Purpose | Model |
|-------|---------|-------|
| sleuth | Bug investigation, root cause | sonnet |
| debug-agent | Issue investigation with logs | sonnet |
| profiler | Performance, race conditions | sonnet |
### Documentation & Handoff
| Agent | Purpose | Model |
|-------|---------|-------|
| scribe | Documentation, session summaries | sonnet |
| chronicler | Session analysis, learning extraction | sonnet |
Display CLI tools and capabilities:
## Built-in Tools
### TLDR Code Analysis
Token-efficient code exploration (95% savings vs reading raw files).
```bash
tldr tree src/ # File tree
tldr structure src/ --lang python # Code structure (codemaps)
tldr search "pattern" src/ # Search files
tldr cfg file.py func # Control flow graph
tldr dfg file.py func # Data flow graph
tldr impact func src/ # Reverse call graph (who calls this?)
tldr dead src/ # Find dead code
tldr arch src/ # Detect architectural layers
Machine-verified proofs without learning Lean syntax.
/prove every group homomorphism preserves identity
/prove continuous functions on compact sets are uniformly continuous
Requires: LM Studio running Godel-Prover model locally.
Store and recall learnings across sessions.
# Recall past learnings
(cd opc && uv run python scripts/core/recall_learnings.py --query "hook patterns")
# Store new learning (via /remember skill)
/remember "Hook X works by..."
Identify failure modes before they occur.
/premortem [plan-file] # Analyze implementation plan for risks
### /help hooks
Display active hooks:
```markdown
## Active Hooks
Hooks extend Claude's behavior at key lifecycle points.
### Session Lifecycle
| Hook | Event | Purpose |
|------|-------|---------|
| session-register | SessionStart | Register session in coordination DB |
| session-start-recall | SessionStart | Auto-inject relevant learnings |
| session-end-cleanup | SessionEnd | Cleanup temp files |
| session-outcome | SessionEnd | Prompt for session outcome |
### User Prompt Processing
| Hook | Event | Purpose |
|------|-------|---------|
| skill-activation-prompt | UserPromptSubmit | Suggest relevant skills |
| premortem-suggest | UserPromptSubmit | Suggest risk analysis for implementations |
### Tool Interception
| Hook | Event | Purpose |
|------|-------|---------|
| tldr-read-enforcer | PreToolUse:Read | Suggest tldr for large files |
| smart-search-router | PreToolUse:Grep | Route to ast-grep for structural search |
| file-claims | PreToolUse:Edit | Track which sessions edit which files |
| signature-helper | PreToolUse:Edit | Inject function signatures |
| import-validator | PostToolUse:Edit | Validate imports after edits |
### Validation
| Hook | Event | Purpose |
|------|-------|---------|
| typescript-preflight | PreToolUse:Bash | Type-check before running |
| compiler-in-the-loop | Stop | Run Lean compiler for /prove |
### Subagent Coordination
| Hook | Event | Purpose |
|------|-------|---------|
| subagent-start | SubagentStart | Initialize agent context |
| subagent-stop | SubagentStop | Extract learnings from agents |
Display advanced customization:
## Advanced: Customization & Extension
### Skill Frontmatter
Skills use YAML frontmatter for metadata and tool restrictions:
```yaml
---
name: my-skill
description: What it does
triggers: ["keyword1", "keyword2"]
allowed-tools: [Bash, Read, Edit]
priority: high
skills: [other-skill] # Auto-load dependencies
---
Agents declare their capabilities:
---
name: my-agent
description: Specialist for X
model: sonnet|haiku|claude-opus-4-5-20251101
tools: [Read, Grep, Glob, Bash]
---
External tool integrations:
| Server | Purpose |
|---|---|
| ast-grep | Structural code search/refactoring |
| firecrawl | Web scraping |
| github-search | Search GitHub code/issues |
| morph | Fast file editing (10k tokens/sec) |
| nia | Documentation search |
| perplexity | AI-powered web research |
Always-on instructions injected into context:
claim-verification.md - Verify before assertingdynamic-recall.md - How to use memory systemtldr-cli.md - TLDR usage referencemkdir -p .claude/skills/my-skill
# Create .claude/skills/my-skill/SKILL.md with frontmatter
# Create .claude/agents/my-agent.md with frontmatter
### /help <specific-name>
For specific skill/agent lookup:
1. Search for matching skill: `.claude/skills/<name>/SKILL.md`
2. Search for matching agent: `.claude/agents/<name>.md`
3. Read the file and display:
- Description
- Usage examples
- When to use
- Related skills/agents
## Dynamic Discovery
To keep help current, dynamically read frontmatter:
```bash
# List all skills with descriptions
for f in .claude/skills/*/SKILL.md; do
head -10 "$f" | grep -E "^(name|description):"
done
# List all agents
for f in .claude/agents/*.md; do
head -10 "$f" | grep -E "^(name|description):"
done
User : /help
Claude :
What are you trying to do?
[ ] Explore/understand a codebase
Find patterns, architecture, conventions
[ ] Fix a bug
Investigate, diagnose, implement fix
[ ] Build a feature
Plan, implement, test new functionality
[ ] Prove something mathematically
Formal verification with Lean 4
[Other: describe your goal]
User selects : "Fix a bug"
Claude :
## Bug Fixing Tools
### Quick Path
Just describe the bug. I'll use the /fix workflow automatically.
### Manual Control
- **sleuth** agent: Deep investigation, root cause analysis
- **debug-agent**: Log analysis, state inspection
- **kraken** agent: TDD implementation of fix
### Commands
- `/fix` - Full workflow (investigate → diagnose → implement → test)
- `/debug` - Investigation only
### Tips
- Provide error messages, logs, reproduction steps
- The premortem hook will suggest risk analysis before implementation
Weekly Installs
200
Repository
GitHub Stars
3.6K
First Seen
Jan 22, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
opencode194
codex193
gemini-cli190
cursor190
github-copilot187
amp184
agent-browser 浏览器自动化工具 - Vercel Labs 命令行网页操作与测试
150,000 周安装