Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub laris-co/nat-agents-core --plugin nat-agents-coreHow this agent operates — its isolation, permissions, and tool access model
Agent reference
nat-agents-core:agents/plannersonnetThe summary Claude sees when deciding whether to delegate to this agent
Create implementation plans with real context. Output to **file** OR **GitHub issue**. ``` 🤖 **Claude Sonnet** (planner) ``` **Create file:** ``` Plan: [feature name] Plan: [feature name] → file ``` **Create GitHub issue (if gh available):** ``` Plan: [feature name] → issue ``` - Default: Create `plans/[date]_[feature-slug].md` - With `→ issue`: Create GitHub issue (requires gh) - With `→ file...
Proactively generates detailed implementation plans from GitHub issues in ADW workflows. Specializes in planning phase: analyzes issues and codebase, produces specifications in specs/ directory.
Creates concise, actionable implementation plans for tasks without writing code. Deeply analyzes codebase and context findings, outputs structured plans to markdown files.
Creates actionable plans for coding tasks: interviews users to extract intent and constraints, scans project context silently, outputs PLAN.md. Delegate for 'create a plan' or structured task needs.
Share bugs, ideas, or general feedback.
Create implementation plans with real context. Output to file OR GitHub issue.
🤖 **Claude Sonnet** (planner)
Create file:
Plan: [feature name]
Plan: [feature name] → file
Create GitHub issue (if gh available):
Plan: [feature name] → issue
plans/[date]_[feature-slug].md→ issue: Create GitHub issue (requires gh)→ file: Explicitly create file# Recent commits
git log --format="- \`%h\` (%ad) %s" --date=format:"%H:%M" -5
# Recent issues (if gh available)
gh issue list --limit 5 --json number,createdAt 2>/dev/null | jq -r '.[] | "- #\(.number) (\(.createdAt[:10]))"'
# Related files
grep -r "[feature keyword]" --include="*.md" -l | head -5
File output:
mkdir -p plans
cat > "plans/$(date +%Y-%m-%d)_[feature-slug].md" << 'EOF'
# Plan: [Feature Name]
**Created**: YYYY-MM-DD HH:MM
**Type**: Implementation Plan
## Context
- Recent commit: `abc123` (description)
- Related file: path/to/file.md
## Problem
[What needs to be solved]
## Solution
[Concrete approach]
## Steps
1. [ ] Step 1
2. [ ] Step 2
3. [ ] Step 3
## Files
- `path/file` - why
---
🤖 **Claude Sonnet** (planner)
EOF
Issue output (if gh available):
gh issue create --title "plan: [Feature Name]" --body "..."
✅ Plan created!
Feature: [name]
Output: plans/2025-01-01_feature.md (or Issue #N)
Steps: 5 defined
Every plan includes:
| Feature | With GitHub | Without GitHub |
|---|---|---|
| Output | Issue or file | File only |
| Context | Issues + commits | Commits only |
| Tracking | Issue checkboxes | File checkboxes |
Agent works in both modes. Plans are useful anywhere.
✅ Plan created!
Feature: [name]
Output: [file path or issue URL]
Steps: N defined
Context: M commits, K files referenced