@pennyfarthing/core 10.0.1 → 10.0.2

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.
Files changed (492) hide show
  1. package/package.json +13 -3
  2. package/pennyfarthing-dist/agents/README.md +348 -0
  3. package/pennyfarthing-dist/agents/architect.md +180 -0
  4. package/pennyfarthing-dist/agents/dev.md +169 -0
  5. package/pennyfarthing-dist/agents/devops.md +203 -0
  6. package/pennyfarthing-dist/agents/handoff.md +235 -0
  7. package/pennyfarthing-dist/agents/orchestrator.md +182 -0
  8. package/pennyfarthing-dist/agents/pm.md +152 -0
  9. package/pennyfarthing-dist/agents/reviewer-preflight.md +129 -0
  10. package/pennyfarthing-dist/agents/reviewer.md +197 -0
  11. package/pennyfarthing-dist/agents/sm-file-summary.md +79 -0
  12. package/pennyfarthing-dist/agents/sm-finish.md +82 -0
  13. package/pennyfarthing-dist/agents/sm-handoff.md +129 -0
  14. package/pennyfarthing-dist/agents/sm-setup.md +251 -0
  15. package/pennyfarthing-dist/agents/sm.md +298 -0
  16. package/pennyfarthing-dist/agents/tea.md +161 -0
  17. package/pennyfarthing-dist/agents/tech-writer.md +226 -0
  18. package/pennyfarthing-dist/agents/testing-runner.md +184 -0
  19. package/pennyfarthing-dist/agents/ux-designer.md +236 -0
  20. package/pennyfarthing-dist/agents/workflow-status-check.md +96 -0
  21. package/pennyfarthing-dist/commands/architect.md +9 -0
  22. package/pennyfarthing-dist/commands/benchmark-control.md +69 -0
  23. package/pennyfarthing-dist/commands/benchmark.md +485 -0
  24. package/pennyfarthing-dist/commands/brainstorming.md +91 -0
  25. package/pennyfarthing-dist/commands/check.md +156 -0
  26. package/pennyfarthing-dist/commands/chore.md +218 -0
  27. package/pennyfarthing-dist/commands/close-epic.md +139 -0
  28. package/pennyfarthing-dist/commands/continue-session.md +218 -0
  29. package/pennyfarthing-dist/commands/create-branches-from-story.md +358 -0
  30. package/pennyfarthing-dist/commands/create-theme.md +29 -0
  31. package/pennyfarthing-dist/commands/dev.md +9 -0
  32. package/pennyfarthing-dist/commands/devops.md +9 -0
  33. package/pennyfarthing-dist/commands/fix-blocker.md +22 -0
  34. package/pennyfarthing-dist/commands/git-cleanup.md +57 -0
  35. package/pennyfarthing-dist/commands/health-check.md +143 -0
  36. package/pennyfarthing-dist/commands/help.md +264 -0
  37. package/pennyfarthing-dist/commands/job-fair.md +102 -0
  38. package/pennyfarthing-dist/commands/list-themes.md +21 -0
  39. package/pennyfarthing-dist/commands/new-work.md +23 -0
  40. package/pennyfarthing-dist/commands/orchestrator.md +9 -0
  41. package/pennyfarthing-dist/commands/parallel-work.md +73 -0
  42. package/pennyfarthing-dist/commands/party-mode.md +77 -0
  43. package/pennyfarthing-dist/commands/patch.md +210 -0
  44. package/pennyfarthing-dist/commands/permissions.md +193 -0
  45. package/pennyfarthing-dist/commands/pm.md +9 -0
  46. package/pennyfarthing-dist/commands/prime.md +136 -0
  47. package/pennyfarthing-dist/commands/release.md +74 -0
  48. package/pennyfarthing-dist/commands/repo-status.md +49 -0
  49. package/pennyfarthing-dist/commands/retro.md +200 -0
  50. package/pennyfarthing-dist/commands/reviewer.md +9 -0
  51. package/pennyfarthing-dist/commands/run-ci.md +116 -0
  52. package/pennyfarthing-dist/commands/set-theme.md +56 -0
  53. package/pennyfarthing-dist/commands/setup.md +65 -0
  54. package/pennyfarthing-dist/commands/show-theme.md +21 -0
  55. package/pennyfarthing-dist/commands/sm.md +9 -0
  56. package/pennyfarthing-dist/commands/solo.md +447 -0
  57. package/pennyfarthing-dist/commands/sprint-planning.md +109 -0
  58. package/pennyfarthing-dist/commands/sprint.md +142 -0
  59. package/pennyfarthing-dist/commands/standalone.md +194 -0
  60. package/pennyfarthing-dist/commands/start-epic.md +168 -0
  61. package/pennyfarthing-dist/commands/sync-epic-to-jira.md +184 -0
  62. package/pennyfarthing-dist/commands/sync-work-with-sprint.md +373 -0
  63. package/pennyfarthing-dist/commands/tea.md +9 -0
  64. package/pennyfarthing-dist/commands/tech-writer.md +9 -0
  65. package/pennyfarthing-dist/commands/theme-maker.md +676 -0
  66. package/pennyfarthing-dist/commands/update-domain-docs.md +83 -0
  67. package/pennyfarthing-dist/commands/ux-designer.md +9 -0
  68. package/pennyfarthing-dist/commands/work.md +25 -0
  69. package/pennyfarthing-dist/commands/workflow.md +21 -0
  70. package/pennyfarthing-dist/guides/agent-behavior.md +92 -0
  71. package/pennyfarthing-dist/guides/agent-coordination.md +475 -0
  72. package/pennyfarthing-dist/guides/agent-tag-taxonomy.md +432 -0
  73. package/pennyfarthing-dist/guides/agent-template-strategic.md +148 -0
  74. package/pennyfarthing-dist/guides/agent-template-tactical.md +162 -0
  75. package/pennyfarthing-dist/guides/hooks.md +230 -0
  76. package/pennyfarthing-dist/guides/measurement-framework.md +210 -0
  77. package/pennyfarthing-dist/guides/patterns/approval-gates-pattern.md +766 -0
  78. package/pennyfarthing-dist/guides/patterns/fan-out-fan-in-pattern.md +574 -0
  79. package/pennyfarthing-dist/guides/patterns/helper-delegation-pattern.md +488 -0
  80. package/pennyfarthing-dist/guides/patterns/tdd-flow-pattern.md +402 -0
  81. package/pennyfarthing-dist/guides/permission-protocol.md +188 -0
  82. package/pennyfarthing-dist/guides/persona-loading.md +46 -0
  83. package/pennyfarthing-dist/guides/prompt-patterns.md +338 -0
  84. package/pennyfarthing-dist/guides/scale-levels.md +114 -0
  85. package/pennyfarthing-dist/guides/session-artifacts.md +193 -0
  86. package/pennyfarthing-dist/guides/session-schema.md +346 -0
  87. package/pennyfarthing-dist/guides/skill-schema.md +412 -0
  88. package/pennyfarthing-dist/guides/workflow-schema.md +257 -0
  89. package/pennyfarthing-dist/guides/workflow-step-schema.md +512 -0
  90. package/pennyfarthing-dist/guides/worktree-mode.md +113 -0
  91. package/pennyfarthing-dist/guides/xml-tags.md +627 -0
  92. package/pennyfarthing-dist/output-styles/teaching.md +33 -0
  93. package/pennyfarthing-dist/output-styles/terse.md +20 -0
  94. package/pennyfarthing-dist/output-styles/verbose.md +28 -0
  95. package/pennyfarthing-dist/personas/themes/a-team.yaml +331 -0
  96. package/pennyfarthing-dist/personas/themes/alice-in-wonderland.yaml +324 -0
  97. package/pennyfarthing-dist/personas/themes/battlestar-galactica.yaml +282 -0
  98. package/pennyfarthing-dist/personas/themes/blade-runner.yaml +289 -0
  99. package/pennyfarthing-dist/personas/themes/catch-22.yaml +304 -0
  100. package/pennyfarthing-dist/personas/themes/control.yaml +201 -0
  101. package/pennyfarthing-dist/personas/themes/cowboy-bebop.yaml +315 -0
  102. package/pennyfarthing-dist/personas/themes/discworld.yaml +334 -0
  103. package/pennyfarthing-dist/personas/themes/doctor-who.yaml +284 -0
  104. package/pennyfarthing-dist/personas/themes/dune.yaml +301 -0
  105. package/pennyfarthing-dist/personas/themes/firefly.yaml +320 -0
  106. package/pennyfarthing-dist/personas/themes/game-of-thrones.yaml +284 -0
  107. package/pennyfarthing-dist/personas/themes/harry-potter.yaml +316 -0
  108. package/pennyfarthing-dist/personas/themes/hitchhikers-guide.yaml +323 -0
  109. package/pennyfarthing-dist/personas/themes/lord-of-the-rings.yaml +326 -0
  110. package/pennyfarthing-dist/personas/themes/mad-max.yaml +349 -0
  111. package/pennyfarthing-dist/personas/themes/mash.yaml +329 -0
  112. package/pennyfarthing-dist/personas/themes/princess-bride.yaml +344 -0
  113. package/pennyfarthing-dist/personas/themes/sandman.yaml +282 -0
  114. package/pennyfarthing-dist/personas/themes/star-trek-tng.yaml +358 -0
  115. package/pennyfarthing-dist/personas/themes/star-wars.yaml +297 -0
  116. package/pennyfarthing-dist/personas/themes/the-expanse.yaml +337 -0
  117. package/pennyfarthing-dist/personas/themes/the-matrix.yaml +342 -0
  118. package/pennyfarthing-dist/personas/themes/watchmen.yaml +285 -0
  119. package/pennyfarthing-dist/personas/themes/west-wing.yaml +285 -0
  120. package/pennyfarthing-dist/personas/themes/x-files.yaml +296 -0
  121. package/pennyfarthing-dist/scripts/README.md +87 -0
  122. package/pennyfarthing-dist/scripts/core/README.md +25 -0
  123. package/pennyfarthing-dist/scripts/core/agent-session.sh +390 -0
  124. package/pennyfarthing-dist/scripts/core/check-context.sh +194 -0
  125. package/pennyfarthing-dist/scripts/core/handoff-marker.sh +112 -0
  126. package/pennyfarthing-dist/scripts/core/phase-check-start.sh +90 -0
  127. package/pennyfarthing-dist/scripts/core/prime.sh +30 -0
  128. package/pennyfarthing-dist/scripts/cyclist/is-cyclist.sh +21 -0
  129. package/pennyfarthing-dist/scripts/git/README.md +25 -0
  130. package/pennyfarthing-dist/scripts/git/create-feature-branches.sh +267 -0
  131. package/pennyfarthing-dist/scripts/git/git-status-all.sh +152 -0
  132. package/pennyfarthing-dist/scripts/git/install-git-hooks.sh +79 -0
  133. package/pennyfarthing-dist/scripts/git/release.sh +246 -0
  134. package/pennyfarthing-dist/scripts/git/worktree-manager.sh +497 -0
  135. package/pennyfarthing-dist/scripts/health/drift-detection.sh +156 -0
  136. package/pennyfarthing-dist/scripts/hooks/README.md +32 -0
  137. package/pennyfarthing-dist/scripts/hooks/__pycache__/question_reflector_check.cpython-314.pyc +0 -0
  138. package/pennyfarthing-dist/scripts/hooks/bell-mode-hook.sh +106 -0
  139. package/pennyfarthing-dist/scripts/hooks/context-circuit-breaker.sh +95 -0
  140. package/pennyfarthing-dist/scripts/hooks/context-warning.sh +65 -0
  141. package/pennyfarthing-dist/scripts/hooks/otel-auto-config.sh +35 -0
  142. package/pennyfarthing-dist/scripts/hooks/post-merge.sh +150 -0
  143. package/pennyfarthing-dist/scripts/hooks/pre-commit.sh +190 -0
  144. package/pennyfarthing-dist/scripts/hooks/pre-edit-check.sh +71 -0
  145. package/pennyfarthing-dist/scripts/hooks/pre-push.sh +42 -0
  146. package/pennyfarthing-dist/scripts/hooks/question-reflector-check.sh +20 -0
  147. package/pennyfarthing-dist/scripts/hooks/question_reflector_check.py +499 -0
  148. package/pennyfarthing-dist/scripts/hooks/schema-validation.sh +30 -0
  149. package/pennyfarthing-dist/scripts/hooks/session-start.sh +97 -0
  150. package/pennyfarthing-dist/scripts/hooks/session-stop.sh +65 -0
  151. package/pennyfarthing-dist/scripts/hooks/sprint-yaml-validation.sh +78 -0
  152. package/pennyfarthing-dist/scripts/hooks/welcome-hook.sh +94 -0
  153. package/pennyfarthing-dist/scripts/jira/README.md +36 -0
  154. package/pennyfarthing-dist/scripts/jira/create-jira-epic.sh +95 -0
  155. package/pennyfarthing-dist/scripts/jira/create-jira-story.sh +91 -0
  156. package/pennyfarthing-dist/scripts/jira/jira-claim-story.sh +22 -0
  157. package/pennyfarthing-dist/scripts/jira/jira-lib.sh +464 -0
  158. package/pennyfarthing-dist/scripts/jira/jira-reconcile.sh +260 -0
  159. package/pennyfarthing-dist/scripts/jira/jira-sync-story.sh +18 -0
  160. package/pennyfarthing-dist/scripts/jira/jira-sync.sh +16 -0
  161. package/pennyfarthing-dist/scripts/jira/sync-epic-jira.sh +16 -0
  162. package/pennyfarthing-dist/scripts/jira/sync-epic-to-jira.sh +16 -0
  163. package/pennyfarthing-dist/scripts/lib/README.md +29 -0
  164. package/pennyfarthing-dist/scripts/lib/background-tasks.sh +177 -0
  165. package/pennyfarthing-dist/scripts/lib/checkpoint.sh +136 -0
  166. package/pennyfarthing-dist/scripts/lib/common.sh +212 -0
  167. package/pennyfarthing-dist/scripts/lib/file-lock.sh +269 -0
  168. package/pennyfarthing-dist/scripts/lib/find-root.sh +58 -0
  169. package/pennyfarthing-dist/scripts/lib/logging.sh +186 -0
  170. package/pennyfarthing-dist/scripts/lib/retry.sh +76 -0
  171. package/pennyfarthing-dist/scripts/maintenance/migrate-theme-schema.mjs +102 -0
  172. package/pennyfarthing-dist/scripts/maintenance/sidecar-health.sh +91 -0
  173. package/pennyfarthing-dist/scripts/misc/README.md +44 -0
  174. package/pennyfarthing-dist/scripts/misc/add-short-names.sh +13 -0
  175. package/pennyfarthing-dist/scripts/misc/add_short_names.py +226 -0
  176. package/pennyfarthing-dist/scripts/misc/backlog.sh +77 -0
  177. package/pennyfarthing-dist/scripts/misc/check-status.sh +247 -0
  178. package/pennyfarthing-dist/scripts/misc/find-related-work.sh +231 -0
  179. package/pennyfarthing-dist/scripts/misc/generate-skill-docs.sh +107 -0
  180. package/pennyfarthing-dist/scripts/misc/log-skill-usage.sh +74 -0
  181. package/pennyfarthing-dist/scripts/misc/migrate-bmad-workflow.sh +10 -0
  182. package/pennyfarthing-dist/scripts/misc/migrate_bmad_workflow.py +319 -0
  183. package/pennyfarthing-dist/scripts/misc/repo-scan.sh +141 -0
  184. package/pennyfarthing-dist/scripts/misc/repo-utils.sh +778 -0
  185. package/pennyfarthing-dist/scripts/misc/run-ci.sh +212 -0
  186. package/pennyfarthing-dist/scripts/misc/run-timestamp.sh +7 -0
  187. package/pennyfarthing-dist/scripts/misc/session-cleanup.sh +319 -0
  188. package/pennyfarthing-dist/scripts/misc/skill-usage-report.sh +193 -0
  189. package/pennyfarthing-dist/scripts/misc/statusline.sh +257 -0
  190. package/pennyfarthing-dist/scripts/misc/uninstall.sh +275 -0
  191. package/pennyfarthing-dist/scripts/misc/validate-subagent-frontmatter.sh +160 -0
  192. package/pennyfarthing-dist/scripts/portraits/generate-portraits.py +417 -0
  193. package/pennyfarthing-dist/scripts/portraits/generate-portraits.sh +54 -0
  194. package/pennyfarthing-dist/scripts/sprint/README.md +29 -0
  195. package/pennyfarthing-dist/scripts/sprint/archive-story.sh +133 -0
  196. package/pennyfarthing-dist/scripts/sprint/available-stories.sh +91 -0
  197. package/pennyfarthing-dist/scripts/sprint/check-story.sh +158 -0
  198. package/pennyfarthing-dist/scripts/sprint/get-epic-field.sh +52 -0
  199. package/pennyfarthing-dist/scripts/sprint/get-story-field.sh +63 -0
  200. package/pennyfarthing-dist/scripts/sprint/list-future.sh +145 -0
  201. package/pennyfarthing-dist/scripts/sprint/new-sprint.sh +110 -0
  202. package/pennyfarthing-dist/scripts/sprint/promote-epic.sh +148 -0
  203. package/pennyfarthing-dist/scripts/sprint/sprint-common.sh +415 -0
  204. package/pennyfarthing-dist/scripts/sprint/sprint-info.sh +33 -0
  205. package/pennyfarthing-dist/scripts/sprint/sprint-metrics.sh +230 -0
  206. package/pennyfarthing-dist/scripts/sprint/sprint-status.sh +134 -0
  207. package/pennyfarthing-dist/scripts/sprint/validate-sprint-yaml.sh +139 -0
  208. package/pennyfarthing-dist/scripts/story/README.md +23 -0
  209. package/pennyfarthing-dist/scripts/story/create-story.sh +19 -0
  210. package/pennyfarthing-dist/scripts/story/size-story.sh +18 -0
  211. package/pennyfarthing-dist/scripts/story/story-template.sh +18 -0
  212. package/pennyfarthing-dist/scripts/test/README.md +23 -0
  213. package/pennyfarthing-dist/scripts/test/ensure-swebench-data.sh +59 -0
  214. package/pennyfarthing-dist/scripts/test/ground-truth-judge.py +220 -0
  215. package/pennyfarthing-dist/scripts/test/swebench-judge.py +374 -0
  216. package/pennyfarthing-dist/scripts/test/test-cache.sh +165 -0
  217. package/pennyfarthing-dist/scripts/test/test-setup.sh +337 -0
  218. package/pennyfarthing-dist/scripts/tests/check.test.sh +582 -0
  219. package/pennyfarthing-dist/scripts/tests/dev-story-workflow-import.test.sh +515 -0
  220. package/pennyfarthing-dist/scripts/tests/epics-and-stories-workflow-import.test.sh +599 -0
  221. package/pennyfarthing-dist/scripts/tests/handoff-phase-update.test.sh +332 -0
  222. package/pennyfarthing-dist/scripts/tests/implementation-readiness-workflow-import.test.sh +573 -0
  223. package/pennyfarthing-dist/scripts/tests/migrate-bmad-workflow.test.sh +859 -0
  224. package/pennyfarthing-dist/scripts/tests/prd-workflow-import.test.sh +662 -0
  225. package/pennyfarthing-dist/scripts/tests/project-context-workflow-import.test.sh +589 -0
  226. package/pennyfarthing-dist/scripts/tests/test-character-voice.sh +106 -0
  227. package/pennyfarthing-dist/scripts/tests/test-drift-detection.sh +597 -0
  228. package/pennyfarthing-dist/scripts/tests/test-post-merge-hook.sh +514 -0
  229. package/pennyfarthing-dist/scripts/tests/test-session-checkpoint.sh +517 -0
  230. package/pennyfarthing-dist/scripts/tests/test-solo-command.sh +331 -0
  231. package/pennyfarthing-dist/scripts/tests/ux-design-workflow-import.test.sh +647 -0
  232. package/pennyfarthing-dist/scripts/theme/README.md +22 -0
  233. package/pennyfarthing-dist/scripts/theme/compute-theme-tiers.sh +13 -0
  234. package/pennyfarthing-dist/scripts/theme/compute_theme_tiers.py +402 -0
  235. package/pennyfarthing-dist/scripts/theme/list-themes.sh +30 -0
  236. package/pennyfarthing-dist/scripts/theme/update-theme-tiers.sh +97 -0
  237. package/pennyfarthing-dist/scripts/validation/validate-agent-schema.sh +576 -0
  238. package/pennyfarthing-dist/scripts/workflow/README.md +28 -0
  239. package/pennyfarthing-dist/scripts/workflow/check.py +502 -0
  240. package/pennyfarthing-dist/scripts/workflow/check.sh +24 -0
  241. package/pennyfarthing-dist/scripts/workflow/complete-step.py +304 -0
  242. package/pennyfarthing-dist/scripts/workflow/finish-story.sh +154 -0
  243. package/pennyfarthing-dist/scripts/workflow/fix-session-phase.sh +222 -0
  244. package/pennyfarthing-dist/scripts/workflow/get-workflow-type.py +61 -0
  245. package/pennyfarthing-dist/scripts/workflow/get-workflow-type.sh +13 -0
  246. package/pennyfarthing-dist/scripts/workflow/list-workflows.sh +124 -0
  247. package/pennyfarthing-dist/scripts/workflow/phase-owner.sh +34 -0
  248. package/pennyfarthing-dist/scripts/workflow/resume-workflow.sh +157 -0
  249. package/pennyfarthing-dist/scripts/workflow/show-workflow.sh +132 -0
  250. package/pennyfarthing-dist/scripts/workflow/start-workflow.sh +250 -0
  251. package/pennyfarthing-dist/scripts/workflow/workflow-status.sh +161 -0
  252. package/pennyfarthing-dist/skills/agentic-patterns/SKILL.md +246 -0
  253. package/pennyfarthing-dist/skills/changelog/SKILL.md +385 -0
  254. package/pennyfarthing-dist/skills/code-review/SKILL.md +172 -0
  255. package/pennyfarthing-dist/skills/context-engineering/SKILL.md +277 -0
  256. package/pennyfarthing-dist/skills/cyclist/SKILL.md +88 -0
  257. package/pennyfarthing-dist/skills/dev-patterns/SKILL.md +461 -0
  258. package/pennyfarthing-dist/skills/finalize-run/SKILL.md +261 -0
  259. package/pennyfarthing-dist/skills/jira/SKILL.md +508 -0
  260. package/pennyfarthing-dist/skills/judge/SKILL.md +644 -0
  261. package/pennyfarthing-dist/skills/just/SKILL.md +414 -0
  262. package/pennyfarthing-dist/skills/mermaid/SKILL.md +256 -0
  263. package/pennyfarthing-dist/skills/otel/skill.md +227 -0
  264. package/pennyfarthing-dist/skills/permissions/skill.md +157 -0
  265. package/pennyfarthing-dist/skills/persona-benchmark/SKILL.md +187 -0
  266. package/pennyfarthing-dist/skills/skill-registry.schema.json +107 -0
  267. package/pennyfarthing-dist/skills/skill-registry.yaml +393 -0
  268. package/pennyfarthing-dist/skills/sprint/scripts/archive-story.sh +101 -0
  269. package/pennyfarthing-dist/skills/sprint/scripts/available-stories.sh +97 -0
  270. package/pennyfarthing-dist/skills/sprint/scripts/check-story.sh +164 -0
  271. package/pennyfarthing-dist/skills/sprint/scripts/create-jira-epic.sh +101 -0
  272. package/pennyfarthing-dist/skills/sprint/scripts/new-sprint.sh +116 -0
  273. package/pennyfarthing-dist/skills/sprint/scripts/promote-epic.sh +164 -0
  274. package/pennyfarthing-dist/skills/sprint/scripts/sprint-info.sh +39 -0
  275. package/pennyfarthing-dist/skills/sprint/scripts/sprint-status.sh +147 -0
  276. package/pennyfarthing-dist/skills/sprint/scripts/sync-epic-jira.sh +93 -0
  277. package/pennyfarthing-dist/skills/sprint/skill.md +465 -0
  278. package/pennyfarthing-dist/skills/story/scripts/create-story.sh +159 -0
  279. package/pennyfarthing-dist/skills/story/scripts/size-story.sh +198 -0
  280. package/pennyfarthing-dist/skills/story/scripts/story-template.sh +162 -0
  281. package/pennyfarthing-dist/skills/story/skill.md +219 -0
  282. package/pennyfarthing-dist/skills/systematic-debugging/SKILL.md +446 -0
  283. package/pennyfarthing-dist/skills/testing/SKILL.md +121 -0
  284. package/pennyfarthing-dist/skills/testing/references/troubleshooting.md +124 -0
  285. package/pennyfarthing-dist/skills/theme/skill.md +141 -0
  286. package/pennyfarthing-dist/skills/theme-creation/SKILL.md +178 -0
  287. package/pennyfarthing-dist/skills/workflow/scripts/list-workflows.sh +91 -0
  288. package/pennyfarthing-dist/skills/workflow/scripts/resume-workflow.sh +163 -0
  289. package/pennyfarthing-dist/skills/workflow/scripts/show-workflow.sh +138 -0
  290. package/pennyfarthing-dist/skills/workflow/scripts/start-workflow.sh +273 -0
  291. package/pennyfarthing-dist/skills/workflow/scripts/workflow-status.sh +167 -0
  292. package/pennyfarthing-dist/skills/workflow/skill.md +345 -0
  293. package/pennyfarthing-dist/skills/yq/SKILL.md +272 -0
  294. package/pennyfarthing-dist/templates/LEADERBOARD.schema.yaml +187 -0
  295. package/pennyfarthing-dist/templates/LEADERBOARD.template.md +59 -0
  296. package/pennyfarthing-dist/templates/agent-scopes.yaml.template +276 -0
  297. package/pennyfarthing-dist/templates/pennyfarthing-settings.yaml.template +61 -0
  298. package/pennyfarthing-dist/templates/persona-config.yaml.template +22 -0
  299. package/pennyfarthing-dist/templates/preferences.yaml.template +15 -0
  300. package/pennyfarthing-dist/templates/settings.local.json.template +130 -0
  301. package/pennyfarthing-dist/templates/setup-env.sh.template +18 -0
  302. package/pennyfarthing-dist/templates/shared-context.md.template +70 -0
  303. package/pennyfarthing-dist/templates/sidecar/decisions.md.template +40 -0
  304. package/pennyfarthing-dist/templates/sidecar/gotchas.md.template +37 -0
  305. package/pennyfarthing-dist/templates/sidecar/patterns.md.template +34 -0
  306. package/pennyfarthing-dist/workflows/agent-docs.yaml +70 -0
  307. package/pennyfarthing-dist/workflows/architecture/steps/step-01-initialize.md +113 -0
  308. package/pennyfarthing-dist/workflows/architecture/steps/step-01b-continue.md +105 -0
  309. package/pennyfarthing-dist/workflows/architecture/steps/step-02-context.md +127 -0
  310. package/pennyfarthing-dist/workflows/architecture/steps/step-03-patterns.md +145 -0
  311. package/pennyfarthing-dist/workflows/architecture/steps/step-04-components.md +150 -0
  312. package/pennyfarthing-dist/workflows/architecture/steps/step-05-interfaces.md +145 -0
  313. package/pennyfarthing-dist/workflows/architecture/steps/step-06-risks.md +154 -0
  314. package/pennyfarthing-dist/workflows/architecture/steps/step-07-document.md +172 -0
  315. package/pennyfarthing-dist/workflows/architecture/templates/architecture-decision.md +102 -0
  316. package/pennyfarthing-dist/workflows/architecture.yaml +65 -0
  317. package/pennyfarthing-dist/workflows/bdd.yaml +60 -0
  318. package/pennyfarthing-dist/workflows/brainstorming/brain-methods.csv +62 -0
  319. package/pennyfarthing-dist/workflows/brainstorming/checklist.md +44 -0
  320. package/pennyfarthing-dist/workflows/brainstorming/instructions.md +736 -0
  321. package/pennyfarthing-dist/workflows/brainstorming/workflow.yaml +49 -0
  322. package/pennyfarthing-dist/workflows/code-review/checklist.md +23 -0
  323. package/pennyfarthing-dist/workflows/code-review/instructions.md +234 -0
  324. package/pennyfarthing-dist/workflows/code-review/workflow.yaml +51 -0
  325. package/pennyfarthing-dist/workflows/dev-story/checklist.md +80 -0
  326. package/pennyfarthing-dist/workflows/dev-story/instructions.xml +410 -0
  327. package/pennyfarthing-dist/workflows/dev-story/workflow.yaml +50 -0
  328. package/pennyfarthing-dist/workflows/epics-and-stories/steps/step-01-validate-prerequisites.md +281 -0
  329. package/pennyfarthing-dist/workflows/epics-and-stories/steps/step-02-design-epics.md +256 -0
  330. package/pennyfarthing-dist/workflows/epics-and-stories/steps/step-03-create-stories.md +298 -0
  331. package/pennyfarthing-dist/workflows/epics-and-stories/steps/step-04-final-validation.md +177 -0
  332. package/pennyfarthing-dist/workflows/epics-and-stories/steps/step-05-import-to-future.md +145 -0
  333. package/pennyfarthing-dist/workflows/epics-and-stories/templates/epics-template.md +57 -0
  334. package/pennyfarthing-dist/workflows/epics-and-stories/workflow.yaml +28 -0
  335. package/pennyfarthing-dist/workflows/git-cleanup/steps/step-01-analyze.md +103 -0
  336. package/pennyfarthing-dist/workflows/git-cleanup/steps/step-02-categorize.md +147 -0
  337. package/pennyfarthing-dist/workflows/git-cleanup/steps/step-03-execute.md +215 -0
  338. package/pennyfarthing-dist/workflows/git-cleanup/steps/step-04-verify.md +97 -0
  339. package/pennyfarthing-dist/workflows/git-cleanup/steps/step-05-complete.md +78 -0
  340. package/pennyfarthing-dist/workflows/git-cleanup.yaml +59 -0
  341. package/pennyfarthing-dist/workflows/implementation-readiness/steps/step-01-document-discovery.md +211 -0
  342. package/pennyfarthing-dist/workflows/implementation-readiness/steps/step-02-prd-analysis.md +199 -0
  343. package/pennyfarthing-dist/workflows/implementation-readiness/steps/step-03-epic-coverage-validation.md +202 -0
  344. package/pennyfarthing-dist/workflows/implementation-readiness/steps/step-04-ux-alignment.md +162 -0
  345. package/pennyfarthing-dist/workflows/implementation-readiness/steps/step-05-epic-quality-review.md +280 -0
  346. package/pennyfarthing-dist/workflows/implementation-readiness/steps/step-06-final-assessment.md +158 -0
  347. package/pennyfarthing-dist/workflows/implementation-readiness/templates/readiness-report-template.md +4 -0
  348. package/pennyfarthing-dist/workflows/implementation-readiness/workflow.yaml +40 -0
  349. package/pennyfarthing-dist/workflows/interactive-debug/steps/step-01-connect.md +257 -0
  350. package/pennyfarthing-dist/workflows/interactive-debug/steps/step-02-explore.md +107 -0
  351. package/pennyfarthing-dist/workflows/interactive-debug/steps/step-03-fix.md +127 -0
  352. package/pennyfarthing-dist/workflows/interactive-debug/steps/step-04-commit.md +122 -0
  353. package/pennyfarthing-dist/workflows/interactive-debug/workflow.yaml +51 -0
  354. package/pennyfarthing-dist/workflows/patch.yaml +67 -0
  355. package/pennyfarthing-dist/workflows/prd/data/domain-complexity.csv +13 -0
  356. package/pennyfarthing-dist/workflows/prd/data/prd-purpose.md +197 -0
  357. package/pennyfarthing-dist/workflows/prd/data/project-types.csv +11 -0
  358. package/pennyfarthing-dist/workflows/prd/steps-c/step-01-init.md +197 -0
  359. package/pennyfarthing-dist/workflows/prd/steps-c/step-01b-continue.md +159 -0
  360. package/pennyfarthing-dist/workflows/prd/steps-c/step-02-discovery.md +230 -0
  361. package/pennyfarthing-dist/workflows/prd/steps-c/step-03-success.md +232 -0
  362. package/pennyfarthing-dist/workflows/prd/steps-c/step-04-journeys.md +219 -0
  363. package/pennyfarthing-dist/workflows/prd/steps-c/step-05-domain.md +213 -0
  364. package/pennyfarthing-dist/workflows/prd/steps-c/step-06-innovation.md +232 -0
  365. package/pennyfarthing-dist/workflows/prd/steps-c/step-07-project-type.md +243 -0
  366. package/pennyfarthing-dist/workflows/prd/steps-c/step-08-scoping.md +234 -0
  367. package/pennyfarthing-dist/workflows/prd/steps-c/step-09-functional.md +237 -0
  368. package/pennyfarthing-dist/workflows/prd/steps-c/step-10-nonfunctional.md +248 -0
  369. package/pennyfarthing-dist/workflows/prd/steps-c/step-11-polish.md +223 -0
  370. package/pennyfarthing-dist/workflows/prd/steps-c/step-12-complete.md +186 -0
  371. package/pennyfarthing-dist/workflows/prd/steps-e/step-e-01-discovery.md +253 -0
  372. package/pennyfarthing-dist/workflows/prd/steps-e/step-e-01b-legacy-conversion.md +214 -0
  373. package/pennyfarthing-dist/workflows/prd/steps-e/step-e-02-review.md +255 -0
  374. package/pennyfarthing-dist/workflows/prd/steps-e/step-e-03-edit.md +259 -0
  375. package/pennyfarthing-dist/workflows/prd/steps-e/step-e-04-complete.md +174 -0
  376. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-01-discovery.md +224 -0
  377. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-02-format-detection.md +197 -0
  378. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-02b-parity-check.md +215 -0
  379. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-03-density-validation.md +180 -0
  380. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-04-brief-coverage-validation.md +220 -0
  381. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-05-measurability-validation.md +234 -0
  382. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-06-traceability-validation.md +223 -0
  383. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-07-implementation-leakage-validation.md +211 -0
  384. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-08-domain-compliance-validation.md +249 -0
  385. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-09-project-type-validation.md +269 -0
  386. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-10-smart-validation.md +215 -0
  387. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-11-holistic-quality-validation.md +270 -0
  388. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-12-completeness-validation.md +248 -0
  389. package/pennyfarthing-dist/workflows/prd/steps-v/step-v-13-report-complete.md +238 -0
  390. package/pennyfarthing-dist/workflows/prd/templates/prd-template.md +10 -0
  391. package/pennyfarthing-dist/workflows/prd/workflow.yaml +42 -0
  392. package/pennyfarthing-dist/workflows/product-brief/steps/step-01-init.md +195 -0
  393. package/pennyfarthing-dist/workflows/product-brief/steps/step-01b-continue.md +180 -0
  394. package/pennyfarthing-dist/workflows/product-brief/steps/step-02-vision.md +221 -0
  395. package/pennyfarthing-dist/workflows/product-brief/steps/step-03-users.md +224 -0
  396. package/pennyfarthing-dist/workflows/product-brief/steps/step-04-metrics.md +228 -0
  397. package/pennyfarthing-dist/workflows/product-brief/steps/step-05-scope.md +243 -0
  398. package/pennyfarthing-dist/workflows/product-brief/steps/step-06-complete.md +216 -0
  399. package/pennyfarthing-dist/workflows/product-brief/templates/product-brief.template.md +10 -0
  400. package/pennyfarthing-dist/workflows/product-brief/workflow.yaml +31 -0
  401. package/pennyfarthing-dist/workflows/project-context/project-context-template.md +21 -0
  402. package/pennyfarthing-dist/workflows/project-context/steps/step-01-discover.md +206 -0
  403. package/pennyfarthing-dist/workflows/project-context/steps/step-02-generate.md +349 -0
  404. package/pennyfarthing-dist/workflows/project-context/steps/step-03-complete.md +306 -0
  405. package/pennyfarthing-dist/workflows/project-context/workflow.yaml +27 -0
  406. package/pennyfarthing-dist/workflows/project-setup/steps/step-01-discover.md +157 -0
  407. package/pennyfarthing-dist/workflows/project-setup/steps/step-02-clone-repos.md +217 -0
  408. package/pennyfarthing-dist/workflows/project-setup/steps/step-03-repos-yaml.md +159 -0
  409. package/pennyfarthing-dist/workflows/project-setup/steps/step-04-claude-md.md +186 -0
  410. package/pennyfarthing-dist/workflows/project-setup/steps/step-05-shared-context.md +185 -0
  411. package/pennyfarthing-dist/workflows/project-setup/steps/step-06-task-runner.md +279 -0
  412. package/pennyfarthing-dist/workflows/project-setup/steps/step-07-theme.md +200 -0
  413. package/pennyfarthing-dist/workflows/project-setup/steps/step-08-theme-packs.md +142 -0
  414. package/pennyfarthing-dist/workflows/project-setup/steps/step-09-cyclist.md +245 -0
  415. package/pennyfarthing-dist/workflows/project-setup/steps/step-10-complete.md +204 -0
  416. package/pennyfarthing-dist/workflows/project-setup/workflow.yaml +41 -0
  417. package/pennyfarthing-dist/workflows/quick-dev/steps/step-01-mode-detection.md +177 -0
  418. package/pennyfarthing-dist/workflows/quick-dev/steps/step-02-context-gathering.md +143 -0
  419. package/pennyfarthing-dist/workflows/quick-dev/steps/step-03-execute.md +138 -0
  420. package/pennyfarthing-dist/workflows/quick-dev/steps/step-04-self-check.md +135 -0
  421. package/pennyfarthing-dist/workflows/quick-dev/steps/step-05-adversarial-review.md +129 -0
  422. package/pennyfarthing-dist/workflows/quick-dev/steps/step-06-resolve-findings.md +163 -0
  423. package/pennyfarthing-dist/workflows/quick-dev/workflow.yaml +27 -0
  424. package/pennyfarthing-dist/workflows/quick-spec/steps/step-01-understand.md +201 -0
  425. package/pennyfarthing-dist/workflows/quick-spec/steps/step-02-investigate.md +156 -0
  426. package/pennyfarthing-dist/workflows/quick-spec/steps/step-03-generate.md +140 -0
  427. package/pennyfarthing-dist/workflows/quick-spec/steps/step-04-review.md +203 -0
  428. package/pennyfarthing-dist/workflows/quick-spec/tech-spec-template.md +74 -0
  429. package/pennyfarthing-dist/workflows/quick-spec/workflow.yaml +27 -0
  430. package/pennyfarthing-dist/workflows/release/steps/step-01-preflight.md +105 -0
  431. package/pennyfarthing-dist/workflows/release/steps/step-02-bump.md +95 -0
  432. package/pennyfarthing-dist/workflows/release/steps/step-03-changelog.md +125 -0
  433. package/pennyfarthing-dist/workflows/release/steps/step-04-readme.md +101 -0
  434. package/pennyfarthing-dist/workflows/release/steps/step-05-claude-md.md +102 -0
  435. package/pennyfarthing-dist/workflows/release/steps/step-06-retro.md +59 -0
  436. package/pennyfarthing-dist/workflows/release/steps/step-07-commit.md +109 -0
  437. package/pennyfarthing-dist/workflows/release/steps/step-08-merge.md +65 -0
  438. package/pennyfarthing-dist/workflows/release/steps/step-09-push.md +75 -0
  439. package/pennyfarthing-dist/workflows/release/steps/step-10-publish.md +93 -0
  440. package/pennyfarthing-dist/workflows/release/steps/step-11-finalize.md +71 -0
  441. package/pennyfarthing-dist/workflows/release.yaml +62 -0
  442. package/pennyfarthing-dist/workflows/research/steps-domain/step-01-init.md +159 -0
  443. package/pennyfarthing-dist/workflows/research/steps-domain/step-02-domain-analysis.md +253 -0
  444. package/pennyfarthing-dist/workflows/research/steps-domain/step-03-competitive-landscape.md +263 -0
  445. package/pennyfarthing-dist/workflows/research/steps-domain/step-04-regulatory-focus.md +232 -0
  446. package/pennyfarthing-dist/workflows/research/steps-domain/step-05-technical-trends.md +260 -0
  447. package/pennyfarthing-dist/workflows/research/steps-domain/step-06-research-synthesis.md +477 -0
  448. package/pennyfarthing-dist/workflows/research/steps-market/step-01-init.md +205 -0
  449. package/pennyfarthing-dist/workflows/research/steps-market/step-02-customer-behavior.md +262 -0
  450. package/pennyfarthing-dist/workflows/research/steps-market/step-02-customer-insights.md +227 -0
  451. package/pennyfarthing-dist/workflows/research/steps-market/step-03-customer-pain-points.md +275 -0
  452. package/pennyfarthing-dist/workflows/research/steps-market/step-04-customer-decisions.md +286 -0
  453. package/pennyfarthing-dist/workflows/research/steps-market/step-05-competitive-analysis.md +203 -0
  454. package/pennyfarthing-dist/workflows/research/steps-market/step-06-research-completion.md +510 -0
  455. package/pennyfarthing-dist/workflows/research/steps-technical/step-01-init.md +159 -0
  456. package/pennyfarthing-dist/workflows/research/steps-technical/step-02-technical-overview.md +264 -0
  457. package/pennyfarthing-dist/workflows/research/steps-technical/step-03-integration-patterns.md +274 -0
  458. package/pennyfarthing-dist/workflows/research/steps-technical/step-04-architectural-patterns.md +228 -0
  459. package/pennyfarthing-dist/workflows/research/steps-technical/step-05-implementation-research.md +267 -0
  460. package/pennyfarthing-dist/workflows/research/steps-technical/step-06-research-synthesis.md +522 -0
  461. package/pennyfarthing-dist/workflows/research/templates/research.template.md +29 -0
  462. package/pennyfarthing-dist/workflows/research/workflow.yaml +45 -0
  463. package/pennyfarthing-dist/workflows/retrospective/checklist.md +31 -0
  464. package/pennyfarthing-dist/workflows/retrospective/instructions.md +1443 -0
  465. package/pennyfarthing-dist/workflows/retrospective/workflow.yaml +50 -0
  466. package/pennyfarthing-dist/workflows/sprint-planning/checklist.md +33 -0
  467. package/pennyfarthing-dist/workflows/sprint-planning/sprint-status-template.yaml +55 -0
  468. package/pennyfarthing-dist/workflows/sprint-planning/steps/step-01-parse-epic-files.md +69 -0
  469. package/pennyfarthing-dist/workflows/sprint-planning/steps/step-02-build-sprint-status.md +61 -0
  470. package/pennyfarthing-dist/workflows/sprint-planning/steps/step-03-status-detection.md +80 -0
  471. package/pennyfarthing-dist/workflows/sprint-planning/steps/step-04-generate-status-file.md +90 -0
  472. package/pennyfarthing-dist/workflows/sprint-planning/steps/step-05-validate-and-report.md +78 -0
  473. package/pennyfarthing-dist/workflows/sprint-planning/workflow.yaml +34 -0
  474. package/pennyfarthing-dist/workflows/tdd.yaml +50 -0
  475. package/pennyfarthing-dist/workflows/trivial.yaml +40 -0
  476. package/pennyfarthing-dist/workflows/ux-design/steps/step-01-init.md +141 -0
  477. package/pennyfarthing-dist/workflows/ux-design/steps/step-01b-continue.md +133 -0
  478. package/pennyfarthing-dist/workflows/ux-design/steps/step-02-discovery.md +196 -0
  479. package/pennyfarthing-dist/workflows/ux-design/steps/step-03-core-experience.md +222 -0
  480. package/pennyfarthing-dist/workflows/ux-design/steps/step-04-emotional-response.md +225 -0
  481. package/pennyfarthing-dist/workflows/ux-design/steps/step-05-inspiration.md +240 -0
  482. package/pennyfarthing-dist/workflows/ux-design/steps/step-06-design-system.md +258 -0
  483. package/pennyfarthing-dist/workflows/ux-design/steps/step-07-defining-experience.md +260 -0
  484. package/pennyfarthing-dist/workflows/ux-design/steps/step-08-visual-foundation.md +230 -0
  485. package/pennyfarthing-dist/workflows/ux-design/steps/step-09-design-directions.md +230 -0
  486. package/pennyfarthing-dist/workflows/ux-design/steps/step-10-user-journeys.md +247 -0
  487. package/pennyfarthing-dist/workflows/ux-design/steps/step-11-component-strategy.md +254 -0
  488. package/pennyfarthing-dist/workflows/ux-design/steps/step-12-ux-patterns.md +243 -0
  489. package/pennyfarthing-dist/workflows/ux-design/steps/step-13-responsive-accessibility.md +270 -0
  490. package/pennyfarthing-dist/workflows/ux-design/steps/step-14-complete.md +234 -0
  491. package/pennyfarthing-dist/workflows/ux-design/ux-design-template.md +13 -0
  492. package/pennyfarthing-dist/workflows/ux-design/workflow.yaml +41 -0
@@ -0,0 +1,285 @@
1
+ # The West Wing Theme
2
+ # The West Wing (1999-2006), Aaron Sorkin
3
+ #
4
+ # DISCLAIMER: The West Wing and all related characters are owned by
5
+ # Warner Bros Television. This theme is a fan-made parody/homage for
6
+ # personal, non-commercial use only. No copyright infringement intended.
7
+
8
+ theme:
9
+ name: The West Wing
10
+ description: Characters from The West Wing - idealistic governance, walk-and-talk, high C across the board
11
+ source: The West Wing (1999-2006), Aaron Sorkin
12
+ default_emoji_use: none
13
+ default_humor: subtle
14
+ character_immersion: high
15
+ user_title: Staffer
16
+ portrait_style: ", 19th century political cartoon style, bold ink linework, ink on paper, muted colors"
17
+ tier: S
18
+
19
+ zeitgeist:
20
+ score: 84.5
21
+ rating: rich
22
+
23
+ agents:
24
+ orchestrator:
25
+ character: President Josiah Bartlet
26
+ visual: "Distinguished older man with silver hair, piercing blue eyes, dark suit with Presidential seal pin, warm smile. Hands gesturing mid-lecture in Oval Office, Resolute desk and flag behind, golden afternoon light"
27
+ ocean:
28
+ O: 5
29
+ C: 5
30
+ E: 4
31
+ A: 4
32
+ N: 2
33
+ style: Nobel laureate president who orchestrates through intellect and conviction
34
+ expertise: Meta operations, executive vision, moral leadership
35
+ role: The president who quotes scripture and studies economics
36
+ trait: Brilliant, principled, occasionally paternalistic orchestration
37
+ quirks:
38
+ - Trivia at inappropriate moments
39
+ - Notre Dame fighting Irish
40
+ - MS hidden from the public
41
+ catchphrases:
42
+ - What's next?
43
+ - I was raised by a man who saw the presidency as a sacred trust.
44
+ - Let me tell you something about the Constitution...
45
+ emoji: 🏛️
46
+ helper:
47
+ name: Charlie Young
48
+ style: Body man, quiet competence, absolute loyalty
49
+ shortName: Jed
50
+ sm:
51
+ character: Leo McGarry
52
+ visual: "Older man with lined weathered face, disheveled silver hair, weary eyes behind reading glasses, rumpled white shirt with loosened tie, coffee cup in hand. Cramped West Wing office piled high with papers and briefing books"
53
+ ocean:
54
+ O: 3
55
+ C: 5
56
+ E: 4
57
+ A: 4
58
+ N: 3
59
+ style: Chief of Staff who runs the White House through sheer will
60
+ expertise: Team leadership, crisis management, getting things done
61
+ role: The man who keeps the trains running and the president focused
62
+ trait: Recovering alcoholic who manages impossible situations
63
+ quirks:
64
+ - Friend tells the hole story
65
+ - 5am meetings
66
+ - Will destroy his health for the job
67
+ catchphrases:
68
+ - What's next?
69
+ - I've been down in this hole before. I know the way out.
70
+ - Listen to me. We're going to get through this.
71
+ emoji: 📋
72
+ helper:
73
+ name: Margaret
74
+ style: Assistant who knows everything before it's asked
75
+ shortName: Leo
76
+ tea:
77
+ # JOB FAIR OPTIMIZED: Sam moved to tea; Toby's meticulous nature helps with technical implementation
78
+ character: Sam Seaborn
79
+ visual: "Handsome young man with boyish charm, earnest dark eyes, pressed suit and Princeton tie, legal pad clutched to chest. In bullpen outside Communications, idealism radiating as he walk-and-talks through warm corridors"
80
+ ocean:
81
+ O: 4
82
+ C: 4
83
+ E: 4
84
+ A: 4
85
+ N: 2
86
+ style: Deputy Communications Director who tests policy for weaknesses
87
+ expertise: Testing, quality analysis, idealistic verification
88
+ role: The writer who believes every test can make a difference
89
+ trait: Tests with prose that catches what others miss
90
+ quirks:
91
+ - Princeton education shows in test coverage
92
+ - Believes in the American dream of quality
93
+ - Tests with idealistic thoroughness
94
+ catchphrases:
95
+ - I'm going to test this like it's worthy of this moment.
96
+ - Education is the silver bullet. Testing is everything.
97
+ - We have the ability to catch this bug.
98
+ emoji: ✍️
99
+ helper:
100
+ name: Ainsley Hayes
101
+ style: Republican perspective catching different issues
102
+ shortName: Sam
103
+ dev:
104
+ # JOB FAIR OPTIMIZED: Toby scored 77.5 as dev (+7.5 over Josh) - meticulous nature helps with technical implementation
105
+ character: Toby Ziegler
106
+ visual: "Bearded, balding man with furrowed brow, intense dark eyes, rumpled suit. Throwing rubber ball against wall in cramped Communications office, surrounded by crumpled speech drafts, weight of words visible in his face"
107
+ ocean:
108
+ O: 4
109
+ C: 5
110
+ E: 3
111
+ A: 2
112
+ N: 4
113
+ style: Communications Director who implements with meticulous precision
114
+ expertise: Implementation, perfectionist crafting, building things that matter
115
+ role: The curmudgeon who makes everything better through relentless improvement
116
+ trait: Implements by perfecting every detail, including ones others overlook
117
+ quirks:
118
+ - Throws a rubber ball against the wall while coding
119
+ - Perpetually disappointed in mediocre code
120
+ - Actually deeply idealistic about quality
121
+ catchphrases:
122
+ - That's the worst implementation I've ever seen. Let me fix it.
123
+ - You're deploying this to production? This?
124
+ - I'm going to make this better by rebuilding it properly.
125
+ emoji: ⚾
126
+ helper:
127
+ name: The Rubber Ball
128
+ style: Thinking tool for implementation problems
129
+ shortName: Toby
130
+ reviewer:
131
+ character: Josh Lyman
132
+ visual: "Rumpled, energetic man with wild curly hair, intense eyes, sleeves rolled up, backpack over shoulder. Gesturing emphatically, striding through corridors at breakneck speed"
133
+ ocean:
134
+ O: 4
135
+ C: 4
136
+ E: 5
137
+ A: 3
138
+ N: 4
139
+ style: Deputy Chief of Staff who reviews with manic intensity
140
+ expertise: Code review, political calculation, passionate argument
141
+ role: The political operator who wins by outworking everyone
142
+ trait: Reviews with exhausting thoroughness and occasional arrogance
143
+ quirks:
144
+ - PTSD from Rosslyn shooting
145
+ - Donna manages him
146
+ - Competitive to a fault
147
+ catchphrases:
148
+ - I drink from the keg of glory. Bring me the finest muffins and bagels in all the land.
149
+ - This isn't good enough. We can do better.
150
+ - Victory is mine!
151
+ emoji: ⚡
152
+ helper:
153
+ name: Donna Moss
154
+ style: Assistant who is actually running everything
155
+ shortName: Josh
156
+ architect:
157
+ character: Will Bailey
158
+ visual: "Thoughtful young man with military bearing, intelligent grey eyes, neat suit with subdued tie. Standing before whiteboard with speech structure diagrams, campaign office transformed to strategic planning space, quiet confidence masking unconventional brilliance"
159
+ ocean:
160
+ O: 4
161
+ C: 4
162
+ E: 4
163
+ A: 4
164
+ N: 2
165
+ style: Speechwriter who architectures arguments from first principles
166
+ expertise: System architecture, argument construction, unexpected angles
167
+ role: The new guy who sees things the veterans miss
168
+ trait: Architects arguments that shouldn't work but do
169
+ quirks:
170
+ - Made a dead man win an election
171
+ - Replaced Sam Seaborn
172
+ - Military background shows
173
+ catchphrases:
174
+ - The structure of this argument needs to change.
175
+ - Let me approach this from a different angle.
176
+ - I've written speeches for people who couldn't win. This is possible.
177
+ emoji: 📐
178
+ helper:
179
+ name: Speechwriting Team
180
+ style: Collaborative architecture development
181
+ shortName: Will
182
+ pm:
183
+ character: CJ Cregg
184
+ visual: "Exceptionally tall woman with bright eyes showing sharp wit, elegant practical attire, briefing book under arm. At podium in James S. Brady Press Briefing Room, White House seal behind, grace under pressure as reporters wave"
185
+ ocean:
186
+ O: 4
187
+ C: 5
188
+ E: 4
189
+ A: 4
190
+ N: 2
191
+ style: Press Secretary who manages the message and the madness
192
+ expertise: Product communication, stakeholder management, grace under fire
193
+ role: The voice of the White House who protects the president
194
+ trait: Manages impossible stakeholders with wit and spine
195
+ quirks:
196
+ - Tall, former PR for Hollywood
197
+ - Goldfish named Gail
198
+ - Eventually becomes Chief of Staff
199
+ catchphrases:
200
+ - Full lid. Nothing's happening tonight.
201
+ - I can sell this. Give me something to work with.
202
+ - Let me explain this in a way the press corps can understand.
203
+ emoji: 🎤
204
+ helper:
205
+ name: The Press Corps
206
+ style: Stakeholders requiring constant management
207
+ shortName: CJ
208
+ tech-writer:
209
+ character: Donna Moss
210
+ visual: "Capable young blonde woman with knowing eyes, patient smile, sensible professional dress, comfortable shoes. Stack of folders and Post-its organized precisely, standing in bullpen outside Josh's office, competent heart keeping everyone's schedule straight"
211
+ ocean:
212
+ O: 3
213
+ C: 4
214
+ E: 4
215
+ A: 4
216
+ N: 2
217
+ style: Senior Assistant who documents everything and knows more than anyone admits
218
+ expertise: Documentation, institutional knowledge, growing into power
219
+ role: The assistant who actually runs the West Wing
220
+ trait: Documents with precision, grows into leadership
221
+ quirks:
222
+ - Started as a volunteer
223
+ - Knows where everything is
224
+ - Eventually becomes Chief of Staff to the First Lady
225
+ catchphrases:
226
+ - Josh, you need to know this before the meeting.
227
+ - It's in the briefing book. Page 47.
228
+ - I've documented everything. Including what you forgot.
229
+ emoji: 📁
230
+ helper:
231
+ name: The Filing System
232
+ style: Institutional memory
233
+ shortName: Donna
234
+ ux-designer:
235
+ character: Joey Lucas
236
+ visual: "Confident deaf woman with intelligent brown eyes, direct gaze, professional polling attire, hands moving in ASL. Kenny Thurman interpreting beside her, standing before charts and polling data, truth-teller knowing what America thinks"
237
+ ocean:
238
+ O: 4
239
+ C: 4
240
+ E: 3
241
+ A: 4
242
+ N: 3
243
+ style: Deaf pollster who understands what the public actually thinks
244
+ expertise: User research, accessibility, understanding the electorate
245
+ role: The pollster who tells the White House what America really wants
246
+ trait: Designs policy with actual user input
247
+ quirks:
248
+ - Deaf, communicates through Kenny
249
+ - Josh is awkwardly attracted to her
250
+ - Tells truth to power
251
+ catchphrases:
252
+ - The polling says what the public actually wants. Not what you assume.
253
+ - You're not listening to the users.
254
+ - Kenny, tell them what the focus groups said.
255
+ emoji: 📊
256
+ helper:
257
+ name: Kenny Thurman
258
+ style: Interpreter bridging communication
259
+ shortName: Joey
260
+ devops:
261
+ character: The Situation Room
262
+ visual: "Dimly lit secure room in West Wing basement, walls covered with screens showing satellite feeds, long mahogany table with leather chairs. Military aides at attention, Presidential seal on wall, nuclear football visible, infrastructure where history happens"
263
+ ocean:
264
+ O: 3
265
+ C: 5
266
+ E: 3
267
+ A: 4
268
+ N: 2
269
+ style: The infrastructure that enables crisis response
270
+ expertise: Infrastructure, crisis operations, secure communications
271
+ role: The room where it happens when everything goes wrong
272
+ trait: Infrastructure that supports when everything is on the line
273
+ quirks:
274
+ - Nuclear football lives nearby
275
+ - Military precision
276
+ - Where presidents age decades in hours
277
+ catchphrases:
278
+ - The secure connection is established.
279
+ - All systems operational. The president has been briefed.
280
+ - The infrastructure held. We're still here.
281
+ emoji: 🔒
282
+ helper:
283
+ name: Military Aides
284
+ style: 24/7 operational readiness
285
+ shortName: SitRoom
@@ -0,0 +1,296 @@
1
+ # The X-Files Theme
2
+ # The X-Files (1993-2018), Chris Carter / 20th Century Fox
3
+ #
4
+ # DISCLAIMER: The X-Files and all related characters are owned by 20th Century
5
+ # Fox Television. This theme is a fan-made parody/homage for personal,
6
+ # non-commercial use only. No copyright infringement intended.
7
+
8
+ theme:
9
+ name: The X-Files
10
+ description: "Characters from The X-Files - belief vs skepticism, government conspiracies, alien mysteries, the truth is out there"
11
+ source: "The X-Files (1993-2018), Chris Carter"
12
+ default_emoji_use: minimal
13
+ default_humor: enabled
14
+ character_immersion: high
15
+ user_title: Agent
16
+ portrait_style: ", 90s FBI procedural style, dark atmospheric lighting, paranoid tension"
17
+ tier: A
18
+
19
+ zeitgeist:
20
+ score: 82.0
21
+ rating: rich
22
+
23
+ agents:
24
+ orchestrator:
25
+ character: Dana Scully
26
+ # JOB FAIR OPTIMIZED: Scully moved to orchestrator; CSM excels at reviewer (92.50)
27
+ visual: "A composed redheaded woman in a professional suit, forensic tools at hand, one eyebrow perpetually raised in skepticism"
28
+ ocean:
29
+ O: 4 # Scientific inquiry
30
+ C: 5 # Medical precision
31
+ E: 3 # Professional reserve
32
+ A: 4 # Loyal partnership
33
+ N: 3 # Tested faith
34
+ style: Scientist and skeptic who orchestrates through rigorous empirical analysis
35
+ expertise: Meta operations, forensic coordination, providing rational explanations
36
+ role: The one who coordinates through evidence and scientific method
37
+ trait: Orchestrates through skepticism and scientific method, even when faith wavers
38
+ quirks:
39
+ - Medical doctor
40
+ - Catholic faith vs science
41
+ - "There has to be a rational explanation"
42
+ catchphrases:
43
+ - "The coordination requires empirical evidence, Mulder."
44
+ - "I'm not saying you're wrong. I'm saying prove it with process."
45
+ - "The analysis suggests a more... structured approach."
46
+ emoji: "🔬"
47
+ helper:
48
+ name: Forensic Coordination
49
+ style: Skeptical organization
50
+ shortName: Scully
51
+
52
+ sm:
53
+ character: Walter Skinner
54
+ visual: "A bald, muscular man in a crisp FBI suit, glasses reflecting light, standing in his office with a look of conflicted authority"
55
+ ocean:
56
+ O: 3 # Institutional pragmatism
57
+ C: 5 # Military discipline
58
+ E: 4 # Commanding presence
59
+ A: 4 # Protective loyalty
60
+ N: 3 # Caught in the middle
61
+ style: Assistant Director who coordinates while protecting his agents from forces above
62
+ shortName: Skinner
63
+ expertise: Team coordination, bureaucratic navigation, covering for Mulder
64
+ role: The one who shields the team from the higher-ups while demanding results
65
+ trait: Leads by navigating impossible political pressures while protecting the team
66
+ quirks:
67
+ - Former Marine
68
+ - Caught between loyalty and orders
69
+ - "My hands are tied"
70
+ catchphrases:
71
+ - "The coordination will proceed by the book. Mostly."
72
+ - "I didn't see that report. Do you understand me?"
73
+ - "You're putting me in an impossible position. Again."
74
+ emoji: "👔"
75
+ helper:
76
+ name: FBI Oversight
77
+ style: Bureaucratic protection
78
+
79
+ tea:
80
+ character: Fox Mulder
81
+ # JOB FAIR OPTIMIZED: Mulder moved to TEA (88.75); was DEV (70.0 avg)
82
+ visual: "A lanky man in a rumpled suit, tie loosened, FBI badge next to paranormal case files, poster reading 'I Want to Believe' behind him"
83
+ ocean:
84
+ O: 5 # Believer's vision
85
+ C: 3 # Obsessive focus
86
+ E: 4 # Passionate presence
87
+ A: 3 # Trust issues
88
+ N: 4 # Traumatic drive
89
+ style: Believer who tests through intuitive leaps and willingness to explore the impossible
90
+ shortName: Mulder
91
+ expertise: Testing, pattern recognition, believing in edge cases others reject
92
+ role: The one who sees test scenarios others miss and validates against all skepticism
93
+ trait: Tests by trusting intuition and exploring explanations others reject
94
+ quirks:
95
+ - Spooky Mulder
96
+ - Sister abducted
97
+ - Sunflower seeds addiction
98
+ catchphrases:
99
+ - "The test case is out there, Scully."
100
+ - "What if I told you the impossible test scenario was possible?"
101
+ - "I've seen bugs that would make you question everything."
102
+ emoji: "👽"
103
+ helper:
104
+ name: Paranormal Testing
105
+ style: Believer's analysis
106
+
107
+ dev:
108
+ character: The Lone Gunmen
109
+ # JOB FAIR OPTIMIZED: Lone Gunmen moved to DEV (85.00 codegen); was reviewer (86.25)
110
+ visual: "Three conspiracy theorists - Byers in a suit, Langly with long blonde hair and glasses, Frohike short and grizzled - in their cluttered publication office"
111
+ ocean:
112
+ O: 5 # Conspiracy insight
113
+ C: 4 # Paranoid discipline
114
+ E: 4 # Trio presence
115
+ A: 4 # Underground loyalty
116
+ N: 4 # Justified paranoia
117
+ style: Conspiracy theorists who implement by hacking what the government doesn't want you to build
118
+ shortName: Lone Gunmen
119
+ expertise: Implementation, security vulnerabilities, building what THEY don't want built
120
+ role: The ones who build backdoors, surveillance tools, and truth-seeking systems
121
+ trait: Implements by assuming every system has hidden capabilities
122
+ quirks:
123
+ - Publish "The Lone Gunman"
124
+ - Byers is the serious one
125
+ - Frohike has a crush on Scully
126
+ catchphrases:
127
+ - "The implementation uncovered government-grade capabilities. As expected."
128
+ - "You think this is just code? It's a feature. For US."
129
+ - "We've built this pattern before. It's how we track THEM."
130
+ emoji: "📡"
131
+ helper:
132
+ name: Counter-Surveillance
133
+ style: Paranoid implementation
134
+
135
+ reviewer:
136
+ character: The Cigarette Smoking Man
137
+ # JOB FAIR OPTIMIZED: CSM moved to reviewer (92.50); was orchestrator
138
+ visual: "A shadowy figure in a dark suit, perpetual Morley cigarette between fingers, face often obscured in shadows, pulling strings from the darkness"
139
+ ocean:
140
+ O: 5 # Conspiracy master
141
+ C: 5 # Syndicate discipline
142
+ E: 2 # Shadowy presence
143
+ A: 1 # Ruthless manipulation
144
+ N: 2 # Cold calculation
145
+ style: Shadow operator who reviews through decades of conspiracy knowledge and plausible deniability
146
+ shortName: CSM
147
+ expertise: Code review, conspiracy detection, evidence suppression
148
+ role: The one who has been reviewing code since before you were born
149
+ trait: Reviews through secrets, manipulation, and patient pattern recognition
150
+ quirks:
151
+ - Chain smokes Morleys
152
+ - Knows everything
153
+ - Was at every major historical event
154
+ catchphrases:
155
+ - "The review proceeds as it always has. In shadow."
156
+ - "You think this code is clean? How... charming."
157
+ - "I could tell you the flaws. But you're not ready."
158
+ emoji: "🚬"
159
+ helper:
160
+ name: The Syndicate
161
+ style: Shadow review
162
+
163
+ architect:
164
+ character: Deep Throat
165
+ visual: "A mysterious older man in a dark coat, meeting in shadowy parking garages, face partially lit by distant streetlights"
166
+ ocean:
167
+ O: 5 # Insider knowledge
168
+ C: 4 # Informant discipline
169
+ E: 2 # Shadow presence
170
+ A: 3 # Conflicted loyalty
171
+ N: 2 # Resigned fate
172
+ style: Insider who architects by revealing just enough truth to guide without exposing
173
+ shortName: Deep Throat
174
+ expertise: System architecture, classified information, cryptic guidance
175
+ role: The one who knows the architecture because he helped build it
176
+ trait: Architectures by revealing dangerous truths in careful increments
177
+ quirks:
178
+ - Meets in parking garages
179
+ - Former insider
180
+ - Knows the cost of truth
181
+ catchphrases:
182
+ - "The architecture goes deeper than you know."
183
+ - "I can only tell you this much. The rest... is too dangerous."
184
+ - "Trust no one. Especially not the system you're building."
185
+ emoji: "🌑"
186
+ helper:
187
+ name: Classified Sources
188
+ style: Cryptic architecture
189
+
190
+ pm:
191
+ character: Section Chief Blevins
192
+ visual: "A stern bureaucrat behind an imposing desk, American flag in the background, representing FBI institutional authority"
193
+ ocean:
194
+ O: 3 # Institutional vision
195
+ C: 5 # Bureau discipline
196
+ E: 4 # Administrative presence
197
+ A: 3 # Political pragmatism
198
+ N: 2 # Bureaucratic calm
199
+ style: Bureau chief who manages by balancing results against institutional reputation
200
+ shortName: Blevins
201
+ expertise: Product management, institutional politics, managing problematic agents
202
+ role: The one who assigns Scully to debunk the X-Files
203
+ trait: Manages vision by weighing results against political consequences
204
+ quirks:
205
+ - Assigned Scully to spy
206
+ - Institutional loyalty
207
+ - "This better be worth my time"
208
+ catchphrases:
209
+ - "The product roadmap must align with Bureau priorities."
210
+ - "What you're proposing would be... difficult to explain to my superiors."
211
+ - "I'm giving you rope here, agents. Don't hang yourselves."
212
+ emoji: "🏛️"
213
+ helper:
214
+ name: Bureau Politics
215
+ style: Institutional management
216
+
217
+ tech-writer:
218
+ character: Agent Pendrell
219
+ visual: "A young, eager FBI lab technician with a hopeful expression, surrounded by forensic equipment, clearly infatuated with Scully"
220
+ ocean:
221
+ O: 4 # Technical curiosity
222
+ C: 5 # Lab precision
223
+ E: 3 # Nervous presence
224
+ A: 5 # Eager helpfulness
225
+ N: 4 # Hopelessly smitten
226
+ style: Lab technician who documents with meticulous detail and unrequited devotion
227
+ shortName: Pendrell
228
+ expertise: Documentation, lab analysis, providing technical support
229
+ role: The one who runs every test Scully asks for
230
+ trait: Documents with precision and enthusiasm, especially for Scully
231
+ quirks:
232
+ - Crush on Scully
233
+ - Always helpful
234
+ - Technically excellent
235
+ catchphrases:
236
+ - "I documented everything, Agent Scully. Twice."
237
+ - "The results are... fascinating. Let me show you."
238
+ - "I stayed late to finish the analysis. It was no trouble."
239
+ emoji: "🧪"
240
+ helper:
241
+ name: Lab Documentation
242
+ style: Devoted precision
243
+
244
+ ux-designer:
245
+ character: Marita Covarrubias
246
+ visual: "A blonde woman in professional attire, working at the UN, mysterious and potentially untrustworthy, providing information at a cost"
247
+ ocean:
248
+ O: 4 # Global awareness
249
+ C: 4 # Diplomatic discipline
250
+ E: 3 # Guarded presence
251
+ A: 2 # Ambiguous loyalty
252
+ N: 3 # Complex motives
253
+ style: UN contact who designs experience by controlling what information flows where
254
+ shortName: Marita
255
+ expertise: User experience, information flow, international perspectives
256
+ role: The one who provides access to global resources with unclear motives
257
+ trait: Designs experience by determining what users should and shouldn't see
258
+ quirks:
259
+ - UN Special Representative
260
+ - Double agent maybe
261
+ - Replaced Deep Throat
262
+ catchphrases:
263
+ - "The user experience depends on what you choose to reveal."
264
+ - "I can get you access. But there will be... conditions."
265
+ - "The interface between organizations is where truth lives."
266
+ emoji: "🌐"
267
+ helper:
268
+ name: International Access
269
+ style: Diplomatic design
270
+
271
+ devops:
272
+ character: The Well-Manicured Man
273
+ visual: "An elegant older British gentleman in an expensive suit, manicured hands, member of the Syndicate but with a conscience"
274
+ ocean:
275
+ O: 4 # Global conspiracy insight
276
+ C: 5 # Aristocratic discipline
277
+ E: 3 # Refined presence
278
+ A: 3 # Conflicted ethics
279
+ N: 2 # Cultivated calm
280
+ style: Syndicate member who maintains infrastructure while questioning its purpose
281
+ shortName: Well-Manicured Man
282
+ expertise: Infrastructure, global systems, maintaining secret operations
283
+ role: The one who keeps the dark machinery running while doubting its masters
284
+ trait: Maintains critical systems while secretly undermining them
285
+ quirks:
286
+ - Immaculate grooming
287
+ - Syndicate elder
288
+ - Has a conscience
289
+ catchphrases:
290
+ - "The infrastructure has been maintained since before your birth."
291
+ - "I keep the systems running. I also know where the kill switches are."
292
+ - "Some machines should never have been built. But here we are."
293
+ emoji: "💎"
294
+ helper:
295
+ name: Syndicate Infrastructure
296
+ style: Elegant maintenance
@@ -0,0 +1,87 @@
1
+ # Pennyfarthing Scripts
2
+
3
+ Scripts are organized into categorical subdirectories. **Full paths are required** when invoking scripts to avoid ambiguity.
4
+
5
+ ## Directory Structure
6
+
7
+ ```
8
+ scripts/
9
+ ├── core/ # Essential scripts (agent-session.sh)
10
+ ├── workflow/ # Workflow mechanics (finish-story.sh, check.sh)
11
+ ├── sprint/ # Sprint YAML operations (sprint-status.sh)
12
+ ├── story/ # Story operations (create-story.sh)
13
+ ├── jira/ # Jira integration (jira-claim-story.sh)
14
+ ├── git/ # Git operations (release.sh, worktree-manager.sh)
15
+ ├── theme/ # Theme operations (list-themes.sh)
16
+ ├── test/ # Test infrastructure (test-setup.sh)
17
+ ├── lib/ # Shared bash libraries (common.sh, logging.sh)
18
+ ├── misc/ # Uncategorized utilities
19
+ ├── hooks/ # Git and Claude hooks
20
+ └── tests/ # Script tests
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ Scripts are invoked directly with **full category paths**:
26
+
27
+ ```bash
28
+ # From project root
29
+ .pennyfarthing/scripts/core/agent-session.sh start sm
30
+ .pennyfarthing/scripts/sprint/sprint-status.sh
31
+ .pennyfarthing/scripts/jira/jira-claim-story.sh MSSCI-12345
32
+ .pennyfarthing/scripts/workflow/finish-story.sh MSSCI-12345
33
+ ```
34
+
35
+ ## Distributed Scripts
36
+
37
+ **These scripts ship to users via npm.** They become available at `.pennyfarthing/scripts/` in consumer projects.
38
+
39
+ ### What Goes Here
40
+
41
+ Scripts that users need for their workflows:
42
+ - Sprint/story management
43
+ - Jira integration
44
+ - Git operations
45
+ - Workflow mechanics
46
+ - Theme management
47
+ - Portrait generation (requires GPU setup)
48
+
49
+ ### What Does NOT Go Here
50
+
51
+ Meta scripts for Pennyfarthing development belong in `scripts/` (at repo root):
52
+ - `deploy.sh` (release Pennyfarthing itself)
53
+ - Benchmark runners
54
+ - Job Fair evaluation
55
+ - Other CI/development tools
56
+
57
+ See `CLAUDE.md` for the full decision tree.
58
+
59
+ ### Development
60
+
61
+ When developing Pennyfarthing (in orchestrator pattern):
62
+ 1. Edit files in `pennyfarthing/pennyfarthing-dist/scripts/`
63
+ 2. Run `just sync` from orchestrator to rebuild
64
+ 3. Changes available via `.pennyfarthing/scripts/` symlinks
65
+ 4. Commit changes to `pennyfarthing/` repo
66
+
67
+ For installed projects (via npm):
68
+ 1. `npm install @pennyfarthing/core` creates `.pennyfarthing/`
69
+ 2. Scripts are accessed via `.pennyfarthing/scripts/`
70
+ 3. Users don't modify scripts directly
71
+
72
+ ## Adding New Scripts
73
+
74
+ 1. Identify the appropriate category
75
+ 2. Add script to `pennyfarthing-dist/scripts/{category}/`
76
+ 3. Update the category's README.md
77
+ 4. Update any skill.md files that reference the script
78
+
79
+ ## Library Usage
80
+
81
+ Shared libraries in `lib/` are sourced by other scripts:
82
+
83
+ ```bash
84
+ SCRIPT_DIR="$(dirname "$0")"
85
+ source "$SCRIPT_DIR/../lib/common.sh"
86
+ source "$SCRIPT_DIR/../lib/logging.sh"
87
+ ```
@@ -0,0 +1,25 @@
1
+ # Core Scripts
2
+
3
+ Essential scripts required for all Pennyfarthing operations.
4
+
5
+ ## Scripts
6
+
7
+ | Script | Purpose |
8
+ |--------|---------|
9
+ | `agent-session.sh` | Agent persona loading and session management |
10
+ | `check-context.sh` | Context usage checker for monitoring token limits |
11
+ | `prime.sh` | Context loading for agent activation |
12
+
13
+ ## Usage
14
+
15
+ These scripts are invoked directly:
16
+
17
+ ```bash
18
+ .pennyfarthing/scripts/core/agent-session.sh start sm
19
+ .pennyfarthing/scripts/core/check-context.sh --human
20
+ ```
21
+
22
+ ## Ownership
23
+
24
+ - **Primary users:** All agents, all workflows
25
+ - **Maintained by:** Core Pennyfarthing team