Add community skills, agents, system prompts from 22+ sources

Community Skills (32):
- jat: jat-start, jat-verify, jat-complete
- pi-mono: codex-cli, codex-5.3-prompting, interactive-shell
- picoclaw: github, weather, tmux, summarize, skill-creator
- dyad: 18 skills (swarm-to-plan, multi-pr-review, fix-issue, lint, etc.)
- dexter: dcf valuation skill

Agents (23):
- pi-mono subagents: scout, planner, reviewer, worker
- toad: 19 agent configs (Claude, Codex, Gemini, Copilot, OpenCode, etc.)

System Prompts (91):
- Anthropic: 15 Claude prompts (opus-4.6, code, cowork, etc.)
- OpenAI: 49 GPT prompts (gpt-5 series, o3, o4-mini, tools)
- Google: 13 Gemini prompts (2.5-pro, 3-pro, workspace, cli)
- xAI: 5 Grok prompts
- Other: 9 misc prompts (Notion, Raycast, Warp, Kagi, etc.)

Hooks (9):
- JAT hooks for session management, signal tracking, activity logging

Prompts (6):
- pi-mono templates for PR review, issue analysis, changelog audit

Sources analyzed: jat, ralph-desktop, toad, pi-mono, cmux, pi-interactive-shell,
craft-agents-oss, dexter, picoclaw, dyad, system_prompts_leaks, Prometheus,
zed, clawdbot, OS-Copilot, and more
This commit is contained in:
uroma
2026-02-13 10:58:17 +00:00
Unverified
parent 5889d3428b
commit b60638f0a3
186 changed files with 38926 additions and 325 deletions

View File

@@ -0,0 +1,81 @@
---
name: dyad:plan-to-issue
description: Create a plan collaboratively with the user, then convert the approved plan into a GitHub issue.
---
# Plan to Issue
Create a plan collaboratively with the user, then convert the approved plan into a GitHub issue.
## Arguments
- `$ARGUMENTS`: Brief description of what you want to plan (e.g., "add dark mode support", "refactor authentication system")
## Instructions
1. **Enter plan mode:**
Use `EnterPlanMode` to begin the planning process. Explore the codebase to understand the current implementation and design an approach for: `$ARGUMENTS`
2. **Create a comprehensive plan:**
Your plan should include:
- **Summary**: Brief description of the goal
- **Current state**: What exists today (based on codebase exploration)
- **Proposed changes**: What needs to be implemented
- **Files to modify**: List of files that will need changes
- **Implementation steps**: Ordered list of specific tasks
- **Testing approach**: What tests should be added
- **Open questions**: Any decisions that need user input
3. **Iterate with the user:**
Use `ExitPlanMode` to present your plan for approval. The user may:
- Approve the plan as-is
- Request modifications
- Ask clarifying questions
Continue iterating until the user approves the plan.
4. **Create the GitHub issue:**
Once the plan is approved, create a GitHub issue using `gh issue create`:
```
gh issue create --title "<concise title>" --body "$(cat <<'EOF'
## Summary
<1-2 sentence description of the goal>
## Background
<Current state and why this change is needed>
## Implementation Plan
### Files to Modify
- `path/to/file1.ts` - <what changes>
- `path/to/file2.ts` - <what changes>
### Tasks
- [ ] <Task 1>
- [ ] <Task 2>
- [ ] <Task 3>
...
### Testing
- [ ] <Test requirement 1>
- [ ] <Test requirement 2>
## Notes
<Any additional context, constraints, or open questions>
---
*This issue was created from a planning session with Claude Code.*
EOF
)"
```
5. **Report the result:**
Provide the user with:
- The issue URL
- A brief confirmation of what was created