pan-wizard 2.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +772 -0
- package/agents/pan-debugger.md +1246 -0
- package/agents/pan-document_code.md +965 -0
- package/agents/pan-executor.md +469 -0
- package/agents/pan-integration-checker.md +443 -0
- package/agents/pan-phase-researcher.md +572 -0
- package/agents/pan-plan-checker.md +763 -0
- package/agents/pan-planner.md +1297 -0
- package/agents/pan-project-researcher.md +647 -0
- package/agents/pan-research-synthesizer.md +239 -0
- package/agents/pan-reviewer.md +112 -0
- package/agents/pan-roadmapper.md +642 -0
- package/agents/pan-verifier.md +672 -0
- package/assets/pan-logo-2000-transparent.svg +30 -0
- package/assets/pan-logo-2000.svg +43 -0
- package/assets/terminal.svg +119 -0
- package/bin/install-lib.cjs +616 -0
- package/bin/install.js +1936 -0
- package/commands/pan/add-phase.md +44 -0
- package/commands/pan/assumptions.md +47 -0
- package/commands/pan/audit-deployment.md +378 -0
- package/commands/pan/debug.md +168 -0
- package/commands/pan/discord.md +19 -0
- package/commands/pan/discuss-phase.md +84 -0
- package/commands/pan/exec-phase.md +45 -0
- package/commands/pan/focus-auto.md +323 -0
- package/commands/pan/focus-design.md +816 -0
- package/commands/pan/focus-exec.md +316 -0
- package/commands/pan/focus-plan.md +101 -0
- package/commands/pan/focus-scan.md +272 -0
- package/commands/pan/focus-sync.md +104 -0
- package/commands/pan/health.md +23 -0
- package/commands/pan/help.md +23 -0
- package/commands/pan/insert-phase.md +33 -0
- package/commands/pan/map-codebase.md +72 -0
- package/commands/pan/milestone-audit.md +37 -0
- package/commands/pan/milestone-cleanup.md +19 -0
- package/commands/pan/milestone-done.md +137 -0
- package/commands/pan/milestone-gaps.md +35 -0
- package/commands/pan/milestone-new.md +45 -0
- package/commands/pan/new-project.md +43 -0
- package/commands/pan/patches.md +110 -0
- package/commands/pan/pause.md +39 -0
- package/commands/pan/phase-budget.md +23 -0
- package/commands/pan/phase-tests.md +42 -0
- package/commands/pan/plan-phase.md +46 -0
- package/commands/pan/profile.md +36 -0
- package/commands/pan/progress.md +25 -0
- package/commands/pan/quick.md +42 -0
- package/commands/pan/remove-phase.md +32 -0
- package/commands/pan/research-phase.md +190 -0
- package/commands/pan/resume.md +41 -0
- package/commands/pan/retro.md +33 -0
- package/commands/pan/settings.md +37 -0
- package/commands/pan/todo-add.md +48 -0
- package/commands/pan/todo-check.md +46 -0
- package/commands/pan/update.md +38 -0
- package/commands/pan/verify-phase.md +39 -0
- package/hooks/dist/pan-check-update.js +62 -0
- package/hooks/dist/pan-context-monitor.js +122 -0
- package/hooks/dist/pan-statusline.js +108 -0
- package/package.json +66 -0
- package/pan-wizard-core/bin/lib/codebase.cjs +746 -0
- package/pan-wizard-core/bin/lib/commands.cjs +1435 -0
- package/pan-wizard-core/bin/lib/config.cjs +611 -0
- package/pan-wizard-core/bin/lib/constants.cjs +696 -0
- package/pan-wizard-core/bin/lib/context-budget.cjs +150 -0
- package/pan-wizard-core/bin/lib/core.cjs +650 -0
- package/pan-wizard-core/bin/lib/focus.cjs +900 -0
- package/pan-wizard-core/bin/lib/frontmatter.cjs +442 -0
- package/pan-wizard-core/bin/lib/init.cjs +881 -0
- package/pan-wizard-core/bin/lib/milestone.cjs +276 -0
- package/pan-wizard-core/bin/lib/phase.cjs +1212 -0
- package/pan-wizard-core/bin/lib/roadmap.cjs +470 -0
- package/pan-wizard-core/bin/lib/state.cjs +1029 -0
- package/pan-wizard-core/bin/lib/template.cjs +314 -0
- package/pan-wizard-core/bin/lib/utils.cjs +171 -0
- package/pan-wizard-core/bin/lib/verify.cjs +1808 -0
- package/pan-wizard-core/bin/pan-tools.cjs +773 -0
- package/pan-wizard-core/references/checkpoints.md +776 -0
- package/pan-wizard-core/references/continuation-format.md +249 -0
- package/pan-wizard-core/references/decimal-phase-calculation.md +65 -0
- package/pan-wizard-core/references/git-integration.md +248 -0
- package/pan-wizard-core/references/git-planning-commit.md +38 -0
- package/pan-wizard-core/references/model-profile-resolution.md +34 -0
- package/pan-wizard-core/references/model-profiles.md +111 -0
- package/pan-wizard-core/references/phase-argument-parsing.md +61 -0
- package/pan-wizard-core/references/planning-config.md +196 -0
- package/pan-wizard-core/references/questioning.md +145 -0
- package/pan-wizard-core/references/tdd.md +263 -0
- package/pan-wizard-core/references/ui-brand.md +160 -0
- package/pan-wizard-core/references/verification-patterns.md +612 -0
- package/pan-wizard-core/templates/codebase/architecture.md +283 -0
- package/pan-wizard-core/templates/codebase/best-practices.md +133 -0
- package/pan-wizard-core/templates/codebase/concerns.md +325 -0
- package/pan-wizard-core/templates/codebase/conventions.md +307 -0
- package/pan-wizard-core/templates/codebase/integrations.md +305 -0
- package/pan-wizard-core/templates/codebase/relationships.md +124 -0
- package/pan-wizard-core/templates/codebase/stack.md +199 -0
- package/pan-wizard-core/templates/codebase/structure.md +298 -0
- package/pan-wizard-core/templates/codebase/testing.md +480 -0
- package/pan-wizard-core/templates/config.json +37 -0
- package/pan-wizard-core/templates/context.md +283 -0
- package/pan-wizard-core/templates/continue-here.md +78 -0
- package/pan-wizard-core/templates/debug-subagent-prompt.md +91 -0
- package/pan-wizard-core/templates/debug.md +164 -0
- package/pan-wizard-core/templates/discovery.md +146 -0
- package/pan-wizard-core/templates/milestone-archive.md +123 -0
- package/pan-wizard-core/templates/milestone.md +115 -0
- package/pan-wizard-core/templates/phase-prompt.md +593 -0
- package/pan-wizard-core/templates/planner-subagent-prompt.md +117 -0
- package/pan-wizard-core/templates/project.md +184 -0
- package/pan-wizard-core/templates/requirements.md +231 -0
- package/pan-wizard-core/templates/research-project/architecture.md +204 -0
- package/pan-wizard-core/templates/research-project/features.md +147 -0
- package/pan-wizard-core/templates/research-project/pitfalls.md +200 -0
- package/pan-wizard-core/templates/research-project/stack.md +120 -0
- package/pan-wizard-core/templates/research-project/summary.md +170 -0
- package/pan-wizard-core/templates/research.md +552 -0
- package/pan-wizard-core/templates/retrospective.md +54 -0
- package/pan-wizard-core/templates/roadmap.md +202 -0
- package/pan-wizard-core/templates/standards.md +24 -0
- package/pan-wizard-core/templates/state.md +176 -0
- package/pan-wizard-core/templates/summary-complex.md +59 -0
- package/pan-wizard-core/templates/summary-minimal.md +41 -0
- package/pan-wizard-core/templates/summary-standard.md +49 -0
- package/pan-wizard-core/templates/summary.md +249 -0
- package/pan-wizard-core/templates/uat.md +247 -0
- package/pan-wizard-core/templates/user-setup.md +311 -0
- package/pan-wizard-core/templates/validation.md +76 -0
- package/pan-wizard-core/templates/verification-report.md +322 -0
- package/pan-wizard-core/workflows/add-phase.md +111 -0
- package/pan-wizard-core/workflows/assumptions.md +178 -0
- package/pan-wizard-core/workflows/diagnose-issues.md +219 -0
- package/pan-wizard-core/workflows/discuss-phase.md +542 -0
- package/pan-wizard-core/workflows/exec-phase.md +572 -0
- package/pan-wizard-core/workflows/execute-plan.md +448 -0
- package/pan-wizard-core/workflows/health.md +156 -0
- package/pan-wizard-core/workflows/help.md +431 -0
- package/pan-wizard-core/workflows/insert-phase.md +129 -0
- package/pan-wizard-core/workflows/map-codebase.md +401 -0
- package/pan-wizard-core/workflows/milestone-audit.md +297 -0
- package/pan-wizard-core/workflows/milestone-cleanup.md +152 -0
- package/pan-wizard-core/workflows/milestone-gaps.md +274 -0
- package/pan-wizard-core/workflows/milestone-new.md +382 -0
- package/pan-wizard-core/workflows/new-project.md +1178 -0
- package/pan-wizard-core/workflows/pause.md +122 -0
- package/pan-wizard-core/workflows/phase-tests.md +388 -0
- package/pan-wizard-core/workflows/plan-phase.md +569 -0
- package/pan-wizard-core/workflows/profile.md +115 -0
- package/pan-wizard-core/workflows/progress.md +381 -0
- package/pan-wizard-core/workflows/quick.md +453 -0
- package/pan-wizard-core/workflows/remove-phase.md +154 -0
- package/pan-wizard-core/workflows/research-phase.md +73 -0
- package/pan-wizard-core/workflows/resume-project.md +306 -0
- package/pan-wizard-core/workflows/retro.md +121 -0
- package/pan-wizard-core/workflows/settings.md +213 -0
- package/pan-wizard-core/workflows/todo-add.md +157 -0
- package/pan-wizard-core/workflows/todo-check.md +176 -0
- package/pan-wizard-core/workflows/transition.md +544 -0
- package/pan-wizard-core/workflows/update.md +219 -0
- package/pan-wizard-core/workflows/verify-phase.md +301 -0
- package/scripts/build-hooks.js +43 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 2000" width="2000" height="2000">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bgGrad" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
4
|
+
<stop offset="0%" stop-color="#1a1a2e"/>
|
|
5
|
+
<stop offset="100%" stop-color="#16213e"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
<linearGradient id="panGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
8
|
+
<stop offset="0%" stop-color="#EE1515"/>
|
|
9
|
+
<stop offset="45%" stop-color="#FF4444"/>
|
|
10
|
+
<stop offset="100%" stop-color="#FF6666"/>
|
|
11
|
+
</linearGradient>
|
|
12
|
+
<linearGradient id="accentGrad" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
13
|
+
<stop offset="0%" stop-color="#FFCC00"/>
|
|
14
|
+
<stop offset="100%" stop-color="#FFE066"/>
|
|
15
|
+
</linearGradient>
|
|
16
|
+
<filter id="glow">
|
|
17
|
+
<feDropShadow dx="0" dy="0" stdDeviation="20" flood-color="#EE1515" flood-opacity="0.4"/>
|
|
18
|
+
</filter>
|
|
19
|
+
<filter id="subtleGlow">
|
|
20
|
+
<feDropShadow dx="0" dy="0" stdDeviation="8" flood-color="#FFCC00" flood-opacity="0.3"/>
|
|
21
|
+
</filter>
|
|
22
|
+
</defs>
|
|
23
|
+
|
|
24
|
+
<!-- Background -->
|
|
25
|
+
<rect width="2000" height="2000" fill="url(#bgGrad)"/>
|
|
26
|
+
|
|
27
|
+
<!-- Pokeball divider line -->
|
|
28
|
+
<rect x="0" y="960" width="2000" height="4" fill="url(#accentGrad)" opacity="0.4"/>
|
|
29
|
+
|
|
30
|
+
<!-- Small pokeball circle accent (center of divider) -->
|
|
31
|
+
<circle cx="1000" cy="962" r="36" fill="none" stroke="url(#accentGrad)" stroke-width="4" opacity="0.3"/>
|
|
32
|
+
<circle cx="1000" cy="962" r="14" fill="url(#accentGrad)" opacity="0.25"/>
|
|
33
|
+
|
|
34
|
+
<!-- Main wordmark -->
|
|
35
|
+
<g transform="translate(1000, 920)" filter="url(#glow)">
|
|
36
|
+
<text fill="url(#panGrad)" font-family="'Helvetica Neue', 'Arial Black', Helvetica, Arial, sans-serif" font-size="420" font-weight="900" text-anchor="middle" letter-spacing="-10">PAN</text>
|
|
37
|
+
</g>
|
|
38
|
+
|
|
39
|
+
<!-- Subtitle -->
|
|
40
|
+
<g transform="translate(1000, 1100)" filter="url(#subtleGlow)">
|
|
41
|
+
<text fill="url(#accentGrad)" font-family="'Helvetica Neue', Helvetica, Arial, sans-serif" font-size="72" font-weight="300" text-anchor="middle" letter-spacing="24">W I Z A R D</text>
|
|
42
|
+
</g>
|
|
43
|
+
</svg>
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 960 540">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="bgGrad" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
4
|
+
<stop offset="0%" stop-color="#1a1a2e"/>
|
|
5
|
+
<stop offset="100%" stop-color="#16213e"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
<linearGradient id="panGrad" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
8
|
+
<stop offset="0%" stop-color="#EE1515"/>
|
|
9
|
+
<stop offset="100%" stop-color="#FF6666"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
<linearGradient id="gold" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
12
|
+
<stop offset="0%" stop-color="#FFCC00"/>
|
|
13
|
+
<stop offset="100%" stop-color="#FFE066"/>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
<linearGradient id="barGrad" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
16
|
+
<stop offset="0%" stop-color="#222236"/>
|
|
17
|
+
<stop offset="100%" stop-color="#2a2a40"/>
|
|
18
|
+
</linearGradient>
|
|
19
|
+
<filter id="glow">
|
|
20
|
+
<feDropShadow dx="0" dy="0" stdDeviation="4" flood-color="#EE1515" flood-opacity="0.35"/>
|
|
21
|
+
</filter>
|
|
22
|
+
<style>
|
|
23
|
+
.mono { font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', Consolas, monospace; }
|
|
24
|
+
.sans { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
|
|
25
|
+
</style>
|
|
26
|
+
</defs>
|
|
27
|
+
|
|
28
|
+
<!-- Window frame -->
|
|
29
|
+
<rect width="960" height="540" rx="12" fill="#2a2a40"/>
|
|
30
|
+
<rect x="1" y="1" width="958" height="538" rx="11" fill="url(#bgGrad)"/>
|
|
31
|
+
|
|
32
|
+
<!-- Title bar -->
|
|
33
|
+
<rect x="1" y="1" width="958" height="38" rx="11" fill="url(#barGrad)"/>
|
|
34
|
+
<rect x="1" y="28" width="958" height="12" fill="url(#bgGrad)"/>
|
|
35
|
+
|
|
36
|
+
<!-- Window buttons -->
|
|
37
|
+
<circle cx="24" cy="20" r="7" fill="#f7768e"/>
|
|
38
|
+
<circle cx="48" cy="20" r="7" fill="#FFCC00"/>
|
|
39
|
+
<circle cx="72" cy="20" r="7" fill="#9ece6a"/>
|
|
40
|
+
|
|
41
|
+
<!-- Title bar text -->
|
|
42
|
+
<text x="480" y="25" text-anchor="middle" class="mono" font-size="12" fill="#555570">pan-wizard</text>
|
|
43
|
+
|
|
44
|
+
<!-- Content -->
|
|
45
|
+
<g transform="translate(36, 62)">
|
|
46
|
+
|
|
47
|
+
<!-- Prompt + command -->
|
|
48
|
+
<text class="mono" font-size="14" y="0">
|
|
49
|
+
<tspan fill="#9ece6a">~/my-project</tspan>
|
|
50
|
+
<tspan fill="#555570"> $ </tspan>
|
|
51
|
+
<tspan fill="#c0caf5">npx pan-wizard</tspan>
|
|
52
|
+
</text>
|
|
53
|
+
|
|
54
|
+
<!-- Clean PAN wordmark -->
|
|
55
|
+
<g transform="translate(36, 40)" filter="url(#glow)">
|
|
56
|
+
<text fill="url(#panGrad)" class="sans" font-size="72" font-weight="900" letter-spacing="-2">PAN</text>
|
|
57
|
+
<text fill="url(#gold)" class="sans" font-size="20" font-weight="300" x="188" y="0" letter-spacing="6">WIZARD</text>
|
|
58
|
+
</g>
|
|
59
|
+
|
|
60
|
+
<!-- Pokeball divider -->
|
|
61
|
+
<line x1="0" y1="124" x2="888" y2="124" stroke="#FFCC00" stroke-opacity="0.2" stroke-width="1"/>
|
|
62
|
+
<circle cx="444" cy="124" r="6" fill="none" stroke="#FFCC00" stroke-opacity="0.2" stroke-width="1"/>
|
|
63
|
+
<circle cx="444" cy="124" r="2" fill="#FFCC00" opacity="0.25"/>
|
|
64
|
+
|
|
65
|
+
<!-- Version + description -->
|
|
66
|
+
<text class="mono" font-size="13" y="152">
|
|
67
|
+
<tspan fill="#555570">v0.1.0</tspan>
|
|
68
|
+
<tspan fill="#3a3a52"> · </tspan>
|
|
69
|
+
<tspan fill="#8888aa">Workflow automation for Claude Code</tspan>
|
|
70
|
+
</text>
|
|
71
|
+
|
|
72
|
+
<!-- Install steps -->
|
|
73
|
+
<text class="mono" font-size="13" y="192">
|
|
74
|
+
<tspan fill="#9ece6a"> ✔</tspan>
|
|
75
|
+
<tspan fill="#c0caf5"> Detected project</tspan>
|
|
76
|
+
<tspan fill="#555570"> package.json</tspan>
|
|
77
|
+
</text>
|
|
78
|
+
<text class="mono" font-size="13" y="216">
|
|
79
|
+
<tspan fill="#9ece6a"> ✔</tspan>
|
|
80
|
+
<tspan fill="#c0caf5"> Installed</tspan>
|
|
81
|
+
<tspan fill="#EE1515"> 32</tspan>
|
|
82
|
+
<tspan fill="#c0caf5"> slash commands</tspan>
|
|
83
|
+
</text>
|
|
84
|
+
<text class="mono" font-size="13" y="240">
|
|
85
|
+
<tspan fill="#9ece6a"> ✔</tspan>
|
|
86
|
+
<tspan fill="#c0caf5"> Configured agents, workflows, hooks</tspan>
|
|
87
|
+
</text>
|
|
88
|
+
|
|
89
|
+
<!-- Divider -->
|
|
90
|
+
<line x1="0" y1="264" x2="888" y2="264" stroke="#3a3a52" stroke-width="1"/>
|
|
91
|
+
|
|
92
|
+
<!-- Quick start hints -->
|
|
93
|
+
<text class="mono" font-size="13" y="292">
|
|
94
|
+
<tspan fill="#FFCC00"> ▸</tspan>
|
|
95
|
+
<tspan fill="#c0caf5"> New project</tspan>
|
|
96
|
+
<tspan fill="#555570"> ········ </tspan>
|
|
97
|
+
<tspan fill="#EE1515">/pan:new-project</tspan>
|
|
98
|
+
</text>
|
|
99
|
+
<text class="mono" font-size="13" y="316">
|
|
100
|
+
<tspan fill="#FFCC00"> ▸</tspan>
|
|
101
|
+
<tspan fill="#c0caf5"> Check progress</tspan>
|
|
102
|
+
<tspan fill="#555570"> ····· </tspan>
|
|
103
|
+
<tspan fill="#EE1515">/pan:progress</tspan>
|
|
104
|
+
</text>
|
|
105
|
+
<text class="mono" font-size="13" y="340">
|
|
106
|
+
<tspan fill="#FFCC00"> ▸</tspan>
|
|
107
|
+
<tspan fill="#c0caf5"> All commands</tspan>
|
|
108
|
+
<tspan fill="#555570"> ······· </tspan>
|
|
109
|
+
<tspan fill="#EE1515">/pan:help</tspan>
|
|
110
|
+
</text>
|
|
111
|
+
|
|
112
|
+
<!-- Final prompt -->
|
|
113
|
+
<text class="mono" font-size="14" y="390">
|
|
114
|
+
<tspan fill="#9ece6a">~/my-project</tspan>
|
|
115
|
+
<tspan fill="#555570"> $ </tspan>
|
|
116
|
+
<tspan fill="#c0caf5">▌</tspan>
|
|
117
|
+
</text>
|
|
118
|
+
</g>
|
|
119
|
+
</svg>
|