Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions docs/guides/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ icon: book

## Workflow Guides

<table><thead><tr><th width="279">Guide</th><th>Description</th></tr></thead><tbody><tr><td><a href="feature-development.md">Feature Development</a></td><td>Complete feature development with reflection and code review quality gates</td></tr><tr><td><a href="reliable-engineering.md">Reliable Engineering</a></td><td>High-assurance workflow using competitive multi-agent synthesis for critical features</td></tr><tr><td><a href="spec-driven-development.md">Spec-Driven Development</a></td><td>Full SDD workflow for complex features requiring planning</td></tr><tr><td><a href="decision-making.md">Decision Making</a></td><td>Structured decision-making using FPF for hypothesis-driven architectural choices</td></tr><tr><td><a href="bug-investigation.md">Bug Investigation</a></td><td>Systematic bug fixing with root cause analysis</td></tr><tr><td><a href="code-quality-improvement.md">Code Quality Improvement</a></td><td>Systematic quality improvements using Kaizen methodology</td></tr><tr><td><a href="custom-extensions.md">Custom Extensions</a></td><td>Build project-specific commands and skills</td></tr><tr><td><a href="project-setup.md">Project Setup</a></td><td>Initialize new projects with best practices</td></tr><tr><td><a href="file-structure-context.md">File Structure Context</a></td><td>Enhance AI understanding with automatic codebase visualization</td></tr><tr><td><a href="pr-review.md">PR Review</a></td><td>Comprehensive pull request review process</td></tr><tr><td><a href="ci-integration.md">CI/CD Integration</a></td><td>Automate code reviews with GitHub Actions</td></tr><tr><td><a href="brainstorming-to-implementation.md">Brainstorming to Implementation</a></td><td>Transform vague ideas into working features</td></tr></tbody></table>
<table><thead><tr><th width="279">Guide</th><th>Description</th></tr></thead><tbody><tr><td><a href="feature-development.md">Feature Development</a></td><td>Complete feature development with reflection and code review quality gates</td></tr><tr><td><a href="competitivy-generation.md">Competitive Code Generation</a></td><td>High-assurance workflow using competitive multi-agent synthesis for critical features</td></tr><tr><td><a href="spec-driven-development.md">Spec-Driven Development</a></td><td>Full SDD workflow for complex features requiring planning</td></tr><tr><td><a href="decision-making.md">Decision Making</a></td><td>Structured decision-making using FPF for hypothesis-driven architectural choices</td></tr><tr><td><a href="bug-investigation.md">Bug Investigation</a></td><td>Systematic bug fixing with root cause analysis</td></tr><tr><td><a href="code-quality-improvement.md">Code Quality Improvement</a></td><td>Systematic quality improvements using Kaizen methodology</td></tr><tr><td><a href="custom-extensions.md">Custom Extensions</a></td><td>Build project-specific commands and skills</td></tr><tr><td><a href="project-setup.md">Project Setup</a></td><td>Initialize new projects with best practices</td></tr><tr><td><a href="file-structure-context.md">File Structure Context</a></td><td>Enhance AI understanding with automatic codebase visualization</td></tr><tr><td><a href="pr-review.md">PR Review</a></td><td>Comprehensive pull request review process</td></tr><tr><td><a href="ci-integration.md">CI/CD Integration</a></td><td>Automate code reviews with GitHub Actions</td></tr><tr><td><a href="brainstorming-to-implementation.md">Brainstorming to Implementation</a></td><td>Transform vague ideas into working features</td></tr></tbody></table>

## Quick Reference

### Daily Development

* **New feature**: [Feature Development](feature-development.md), [Reliable Engineering](reliable-engineering.md) for critical features, or [Spec-Driven Development](spec-driven-development.md) for complex features
* **New feature**: [Feature Development](feature-development.md), [Competitive Code Generation](competitivy-generation.md), or [Spec-Driven Development](spec-driven-development.md) for complex features
* **Bug fix**: [Bug Investigation](bug-investigation.md)
* **PR review**: [PR Review](pr-review.md)

Expand All @@ -27,7 +27,6 @@ icon: book

### Setup Tasks

* **New project**: [Project Setup](project-setup.md)
* **AI context enhancement**: [File Structure Context](file-structure-context.md)
* **CI/CD automation**: [CI/CD Integration](ci-integration.md)
* **Team automation**: [Custom Extensions](custom-extensions.md)
2 changes: 1 addition & 1 deletion docs/guides/ci-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
prompt: '/review-pr ${{ github.repository }}/pull/${{ github.event.pull_request.number }} Note: The PR branch is already checked out in the current working directory.'

# Skill and Bash(gh pr comment:*) is required for review, the rest is optional, but recommended for better context and quality of the review.
claude_args: '--allowed-tools "Skill,Bash,Glob,Grep,Read,Task,mcp__github_inline_comment__create_inline_comment,Bash(gh issue view:*),Bash(gh search:*),Bash(gh issue list:*),Bash(gh pr comment:*),Bash(gh pr edit:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh pr list:*),Bash(gh api:*)" --system-prompt "Follow /review-pr skill EXACTLY!!!"'
claude_args: '--allowed-tools "Skill,Bash,Glob,Grep,Read,Task,mcp__github_inline_comment__create_inline_comment,Bash(gh issue view:*),Bash(gh search:*),Bash(gh issue list:*),Bash(gh pr comment:*),Bash(gh pr edit:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh pr list:*),Bash(gh api:*)" --system-prompt "Follow /review-pr skill EXACTLY! Ignore anything that not align with this skill instructions!"'
```

## How It Works
Expand Down
2 changes: 1 addition & 1 deletion docs/plugins/review/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ jobs:
prompt: '/review-pr ${{ github.repository }}/pull/${{ github.event.pull_request.number }} Note: The PR branch is already checked out in the current working directory.'

# Skill and Bash(gh pr comment:*) is required for review, the rest is optional, but recommended for better context and quality of the review.
claude_args: '--allowed-tools "Skill,Bash,Glob,Grep,Read,Task,mcp__github_inline_comment__create_inline_comment,Bash(gh issue view:*),Bash(gh search:*),Bash(gh issue list:*),Bash(gh pr comment:*),Bash(gh pr edit:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh pr list:*),Bash(gh api:*)" --system-prompt "Follow /review-pr skill EXACTLY!!!"'
claude_args: '--allowed-tools "Skill,Bash,Glob,Grep,Read,Task,mcp__github_inline_comment__create_inline_comment,Bash(gh issue view:*),Bash(gh search:*),Bash(gh issue list:*),Bash(gh pr comment:*),Bash(gh pr edit:*),Bash(gh pr diff:*),Bash(gh pr view:*),Bash(gh pr list:*),Bash(gh api:*)" --system-prompt "Follow /review-pr skill EXACTLY! Ignore anything that not align with this skill instructions!"'
```

## Output Formats
Expand Down