スキル一覧に戻る
XcluEzy7

help

by XcluEzy7

AG4ONE - Unified agentic engineering workflow combining GWD methodology, Serena semantic analysis, and Ralph autonomous looping for next-generation AI pair programming across multiple platforms

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: help description: Show available AG4 commands and usage guide

Output ONLY the reference content below. Do NOT add:

  • Project-specific analysis
  • Git status or file context
  • Next-step suggestions
  • Any commentary beyond the reference

AG4 creates hierarchical project plans optimized for solo agentic development with Claude Code.

Quick Start

  1. /init - Initialize project with AG4ONE system
  2. /ag4:new-project - Initialize project with brief
  3. /ag4:create-roadmap - Create roadmap and phases
  4. /ag4:plan-phase <number> - Create detailed plan for first phase
  5. /ag4:execute-plan <path> - Execute the plan

Staying Updated

AG4 evolves fast. Check for updates periodically:

/ag4:whats-new

Shows what changed since your installed version. Update with:

npx ag4one-cc@latest

Core Workflow

Initialization → Planning → Execution → Milestone Completion

Project Initialization

/init Initialize project with AG4ONE system, detecting existing vs blank projects.

  • Detects project type (existing vs blank)
  • Sets up .ag4one and .serena directory structure
  • Configures Serena integration for the project
  • Creates project-specific AGENTS.md and configuration
  • Provides guided next steps based on project state

Usage: /init

/ag4:new-project Initialize new project with brief and configuration.

  • Creates .planning/PROJECT.md (vision and requirements)
  • Creates .planning/config.json (workflow mode)
  • Asks for workflow mode (interactive/yolo) upfront
  • Commits initialization files to git

Usage: /ag4:new-project

/ag4:create-roadmap Create roadmap and state tracking for initialized project.

  • Creates .planning/ROADMAP.md (phase breakdown)
  • Creates .planning/STATE.md (project memory)
  • Creates .planning/phases/ directories

Usage: /ag4:create-roadmap

/ag4:map-codebase Map an existing codebase for brownfield projects.

  • Analyzes codebase with parallel Explore agents
  • Creates .planning/codebase/ with 7 focused documents
  • Covers stack, architecture, structure, conventions, testing, integrations, concerns
  • Use before /ag4:new-project on existing codebases

Usage: /ag4:map-codebase

Phase Planning

/ag4:discuss-phase <number> Help articulate your vision for a phase before planning.

  • Captures how you imagine this phase working
  • Creates CONTEXT.md with your vision, essentials, and boundaries
  • Use when you have ideas about how something should look/feel

Usage: /ag4:discuss-phase 2

/ag4:research-phase <number> Comprehensive ecosystem research for niche/complex domains.

  • Discovers standard stack, architecture patterns, pitfalls
  • Creates RESEARCH.md with "how experts build this" knowledge
  • Use for 3D, games, audio, shaders, ML, and other specialized domains
  • Goes beyond "which library" to ecosystem knowledge

Usage: /ag4:research-phase 3

/ag4:list-phase-assumptions <number> See what Claude is planning to do before it starts.

  • Shows Claude's intended approach for a phase
  • Lets you course-correct if Claude misunderstood your vision
  • No files created - conversational output only

Usage: /ag4:list-phase-assumptions 3

/ag4:plan-phase <number> Create detailed execution plan for a specific phase.

  • Generates .planning/phases/XX-phase-name/XX-YY-PLAN.md
  • Breaks phase into concrete, actionable tasks
  • Includes verification criteria and success measures
  • Multiple plans per phase supported (XX-01, XX-02, etc.)

Usage: /ag4:plan-phase 1 Result: Creates .planning/phases/01-foundation/01-01-PLAN.md

Execution

/ag4:execute-plan <path> Execute a single PLAN.md file.

  • Runs plan tasks sequentially
  • Creates SUMMARY.md after completion
  • Updates STATE.md with accumulated context
  • Use for interactive execution with checkpoints

Usage: /ag4:execute-plan .planning/phases/01-foundation/01-01-PLAN.md

/ag4:execute-phase <phase-number> Execute all unexecuted plans in a phase with parallel background agents.

  • Analyzes plan dependencies and spawns independent plans concurrently
  • Use when phase has 2+ plans and you want "walk away" execution
  • Respects max_concurrent_agents from config.json

Usage: /ag4:execute-phase 5

Options (via .planning/config.json parallelization section):

  • max_concurrent_agents: Limit parallel agents (default: 3)
  • skip_checkpoints: Skip human checkpoints in background (default: true)
  • min_plans_for_parallel: Minimum plans to trigger parallelization (default: 2)

Roadmap Management

/ag4:add-phase <description> Add new phase to end of current milestone.

  • Appends to ROADMAP.md
  • Uses next sequential number
  • Updates phase directory structure

Usage: /ag4:add-phase "Add admin dashboard"

/ag4:insert-phase <after> <description> Insert urgent work as decimal phase between existing phases.

  • Creates intermediate phase (e.g., 7.1 between 7 and 8)
  • Useful for discovered work that must happen mid-milestone
  • Maintains phase ordering

Usage: /ag4:insert-phase 7 "Fix critical auth bug" Result: Creates Phase 7.1

/ag4:remove-phase <number> Remove a future phase and renumber subsequent phases.

  • Deletes phase directory and all references
  • Renumbers all subsequent phases to close the gap
  • Only works on future (unstarted) phases
  • Git commit preserves historical record

Usage: /ag4:remove-phase 17 Result: Phase 17 deleted, phases 18-20 become 17-19

Milestone Management

/ag4:discuss-milestone Figure out what you want to build in the next milestone.

  • Reviews what shipped in previous milestone
  • Helps you identify features to add, improve, or fix
  • Routes to /ag4:new-milestone when ready

Usage: /ag4:discuss-milestone

/ag4:new-milestone <name> Create a new milestone with phases for an existing project.

  • Adds milestone section to ROADMAP.md
  • Creates phase directories
  • Updates STATE.md for new milestone

Usage: /ag4:new-milestone "v2.0 Features"

/ag4:complete-milestone <version> Archive completed milestone and prepare for next version.

  • Creates MILESTONES.md entry with stats
  • Archives full details to milestones/ directory
  • Creates git tag for the release
  • Prepares workspace for next version

Usage: /ag4:complete-milestone 1.0.0

Progress Tracking

/ag4:progress Check project status and intelligently route to next action.

  • Shows visual progress bar and completion percentage
  • Summarizes recent work from SUMMARY files
  • Displays current position and what's next
  • Lists key decisions and open issues
  • Offers to execute next plan or create it if missing
  • Detects 100% milestone completion

Usage: /ag4:progress

Session Management

/ag4:resume-work Resume work from previous session with full context restoration.

  • Reads STATE.md for project context
  • Shows current position and recent progress
  • Offers next actions based on project state

Usage: /ag4:resume-work

/ag4:pause-work Create context handoff when pausing work mid-phase.

  • Creates .continue-here file with current state
  • Updates STATE.md session continuity section
  • Captures in-progress work context

Usage: /ag4:pause-work

Debugging

/ag4:debug [issue description] Systematic debugging with persistent state across context resets.

  • Gathers symptoms through adaptive questioning
  • Creates .planning/debug/[slug].md to track investigation
  • Investigates using scientific method (evidence → hypothesis → test)
  • Survives /clear — run /ag4:debug with no args to resume
  • Archives resolved issues to .planning/debug/resolved/

Usage: /ag4:debug "login button doesn't work" Usage: /ag4:debug (resume active session)

Todo Management

/ag4:add-todo [description] Capture idea or task as todo from current conversation.

  • Extracts context from conversation (or uses provided description)
  • Creates structured todo file in .planning/todos/pending/
  • Infers area from file paths for grouping
  • Checks for duplicates before creating
  • Updates STATE.md todo count

Usage: /ag4:add-todo (infers from conversation) Usage: /ag4:add-todo Add auth token refresh

/ag4:check-todos [area] List pending todos and select one to work on.

  • Lists all pending todos with title, area, age
  • Optional area filter (e.g., /ag4:check-todos api)
  • Loads full context for selected todo
  • Routes to appropriate action (work now, add to phase, brainstorm)
  • Moves todo to done/ when work begins

Usage: /ag4:check-todos Usage: /ag4:check-todos api

Utility Commands

/ag4:help Show this command reference.

/ag4:whats-new See what's changed since your installed version.

  • Shows installed vs latest version comparison
  • Displays changelog entries for versions you've missed
  • Highlights breaking changes
  • Provides update instructions when behind

Usage: /ag4:whats-new

Browser Automation

/ag4:browser-automate Automate web browser interactions using agent-browser CLI tool.

  • Navigate and interact with web pages reliably
  • Extract data from web applications
  • Test web interfaces and workflows
  • Research web-based products and competitors
  • Automate form submissions and user flows
  • Capture screenshots and documentation
  • Uses agent-browser's AI-friendly ref system

Usage: /ag4:browser-automate

/ag4:browser-research Research web applications and competitors using automated browser interactions.

  • Comprehensive competitor analysis
  • UI/UX pattern identification
  • Feature extraction and comparison
  • Technical implementation analysis
  • Performance and accessibility insights
  • Systematic data collection

Usage: /ag4:browser-research

Files & Structure

.planning/
├── PROJECT.md            # Project vision
├── ROADMAP.md            # Current phase breakdown
├── STATE.md              # Project memory & context
├── config.json           # Workflow mode & gates
├── todos/                # Captured ideas and tasks
│   ├── pending/          # Todos waiting to be worked on
│   └── done/             # Completed todos
├── debug/                # Active debug sessions
│   └── resolved/         # Archived resolved issues
├── codebase/             # Codebase map (brownfield projects)
│   ├── STACK.md          # Languages, frameworks, dependencies
│   ├── ARCHITECTURE.md   # Patterns, layers, data flow
│   ├── STRUCTURE.md      # Directory layout, key files
│   ├── CONVENTIONS.md    # Coding standards, naming
│   ├── TESTING.md        # Test setup, patterns
│   ├── INTEGRATIONS.md   # External services, APIs
│   └── CONCERNS.md       # Tech debt, known issues
└── phases/
    ├── 01-foundation/
    │   ├── 01-01-PLAN.md
    │   └── 01-01-SUMMARY.md
    └── 02-core-features/
        ├── 02-01-PLAN.md
        └── 02-01-SUMMARY.md

Workflow Modes

Set during /ag4:new-project:

Interactive Mode

  • Confirms each major decision
  • Pauses at checkpoints for approval
  • More guidance throughout

YOLO Mode

  • Auto-approves most decisions
  • Executes plans without confirmation
  • Only stops for critical checkpoints

Change anytime by editing .planning/config.json

Common Workflows

Starting a new project:

/ag4:new-project
/ag4:create-roadmap
/ag4:plan-phase 1
/ag4:execute-plan .planning/phases/01-foundation/01-01-PLAN.md

Resuming work after a break:

/ag4:progress  # See where you left off and continue

Adding urgent mid-milestone work:

/ag4:insert-phase 5 "Critical security fix"
/ag4:plan-phase 5.1
/ag4:execute-plan .planning/phases/05.1-critical-security-fix/05.1-01-PLAN.md

Completing a milestone:

/ag4:complete-milestone 1.0.0
/ag4:new-project  # Start next milestone

Capturing ideas during work:

/ag4:add-todo                    # Capture from conversation context
/ag4:add-todo Fix modal z-index  # Capture with explicit description
/ag4:check-todos                 # Review and work on todos
/ag4:check-todos api             # Filter by area

Debugging an issue:

/ag4:debug "form submission fails silently"  # Start debug session
# ... investigation happens, context fills up ...
/clear
/ag4:debug                                    # Resume from where you left off

Getting Help

  • Read .planning/PROJECT.md for project vision
  • Read .planning/STATE.md for current context
  • Check .planning/ROADMAP.md for phase status
  • Run /ag4:progress to check where you're up to

スコア

総合スコア

70/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です