@heytherevibin/skillforge 0.2.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.
Files changed (402) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/CODE_OF_CONDUCT.md +34 -0
  3. package/CONTRIBUTING.md +38 -0
  4. package/LICENSE +21 -0
  5. package/README.md +337 -0
  6. package/RELEASING.md +93 -0
  7. package/SECURITY.md +31 -0
  8. package/STRATEGY.md +26 -0
  9. package/bin/cli.js +547 -0
  10. package/lib/packs.js +184 -0
  11. package/package.json +38 -0
  12. package/python/app/__init__.py +0 -0
  13. package/python/app/__pycache__/__init__.cpython-312.pyc +0 -0
  14. package/python/app/__pycache__/auth.cpython-312.pyc +0 -0
  15. package/python/app/__pycache__/main.cpython-312.pyc +0 -0
  16. package/python/app/auth.py +63 -0
  17. package/python/app/cli.py +78 -0
  18. package/python/app/db_paths.py +26 -0
  19. package/python/app/events_cli.py +175 -0
  20. package/python/app/main.py +647 -0
  21. package/python/app/materialize.py +138 -0
  22. package/python/app/mcp_server.py +610 -0
  23. package/python/app/route_cli.py +117 -0
  24. package/python/requirements-dev.txt +1 -0
  25. package/python/requirements.txt +7 -0
  26. package/python/tests/test_db_paths.py +41 -0
  27. package/skills/accessibility/SKILL.md +145 -0
  28. package/skills/agent-architecture-audit/SKILL.md +256 -0
  29. package/skills/agent-eval/SKILL.md +144 -0
  30. package/skills/agent-harness-construction/SKILL.md +72 -0
  31. package/skills/agent-introspection-debugging/SKILL.md +152 -0
  32. package/skills/agent-payment-x402/SKILL.md +224 -0
  33. package/skills/agent-sort/SKILL.md +214 -0
  34. package/skills/agentic-engineering/SKILL.md +62 -0
  35. package/skills/agentic-os/SKILL.md +386 -0
  36. package/skills/ai-first-engineering/SKILL.md +50 -0
  37. package/skills/ai-regression-testing/SKILL.md +384 -0
  38. package/skills/android-clean-architecture/SKILL.md +338 -0
  39. package/skills/angular-developer/SKILL.md +153 -0
  40. package/skills/angular-developer/references/angular-animations.md +160 -0
  41. package/skills/angular-developer/references/angular-aria.md +410 -0
  42. package/skills/angular-developer/references/cli.md +86 -0
  43. package/skills/angular-developer/references/component-harnesses.md +59 -0
  44. package/skills/angular-developer/references/component-styling.md +91 -0
  45. package/skills/angular-developer/references/components.md +117 -0
  46. package/skills/angular-developer/references/creating-services.md +97 -0
  47. package/skills/angular-developer/references/data-resolvers.md +69 -0
  48. package/skills/angular-developer/references/define-routes.md +67 -0
  49. package/skills/angular-developer/references/defining-providers.md +72 -0
  50. package/skills/angular-developer/references/di-fundamentals.md +120 -0
  51. package/skills/angular-developer/references/e2e-testing.md +56 -0
  52. package/skills/angular-developer/references/effects.md +83 -0
  53. package/skills/angular-developer/references/hierarchical-injectors.md +43 -0
  54. package/skills/angular-developer/references/host-elements.md +80 -0
  55. package/skills/angular-developer/references/injection-context.md +63 -0
  56. package/skills/angular-developer/references/inputs.md +101 -0
  57. package/skills/angular-developer/references/linked-signal.md +59 -0
  58. package/skills/angular-developer/references/loading-strategies.md +61 -0
  59. package/skills/angular-developer/references/mcp.md +108 -0
  60. package/skills/angular-developer/references/navigate-to-routes.md +69 -0
  61. package/skills/angular-developer/references/outputs.md +86 -0
  62. package/skills/angular-developer/references/reactive-forms.md +122 -0
  63. package/skills/angular-developer/references/rendering-strategies.md +44 -0
  64. package/skills/angular-developer/references/resource.md +77 -0
  65. package/skills/angular-developer/references/route-animations.md +56 -0
  66. package/skills/angular-developer/references/route-guards.md +52 -0
  67. package/skills/angular-developer/references/router-lifecycle.md +45 -0
  68. package/skills/angular-developer/references/router-testing.md +87 -0
  69. package/skills/angular-developer/references/show-routes-with-outlets.md +68 -0
  70. package/skills/angular-developer/references/signal-forms.md +795 -0
  71. package/skills/angular-developer/references/signals-overview.md +94 -0
  72. package/skills/angular-developer/references/tailwind-css.md +69 -0
  73. package/skills/angular-developer/references/template-driven-forms.md +114 -0
  74. package/skills/angular-developer/references/testing-fundamentals.md +65 -0
  75. package/skills/api-connector-builder/SKILL.md +120 -0
  76. package/skills/api-design/SKILL.md +522 -0
  77. package/skills/architecture-decision-records/SKILL.md +178 -0
  78. package/skills/article-writing/SKILL.md +78 -0
  79. package/skills/automation-audit-ops/SKILL.md +141 -0
  80. package/skills/autonomous-agent-harness/SKILL.md +272 -0
  81. package/skills/autonomous-loops/SKILL.md +609 -0
  82. package/skills/backend-patterns/SKILL.md +560 -0
  83. package/skills/benchmark/SKILL.md +92 -0
  84. package/skills/blueprint/SKILL.md +104 -0
  85. package/skills/browser-qa/SKILL.md +86 -0
  86. package/skills/bun-runtime/SKILL.md +83 -0
  87. package/skills/canary-watch/SKILL.md +98 -0
  88. package/skills/carrier-relationship-management/SKILL.md +211 -0
  89. package/skills/cisco-ios-patterns/SKILL.md +163 -0
  90. package/skills/ck/SKILL.md +147 -0
  91. package/skills/ck/commands/forget.mjs +44 -0
  92. package/skills/ck/commands/info.mjs +24 -0
  93. package/skills/ck/commands/init.mjs +143 -0
  94. package/skills/ck/commands/list.mjs +40 -0
  95. package/skills/ck/commands/migrate.mjs +202 -0
  96. package/skills/ck/commands/resume.mjs +36 -0
  97. package/skills/ck/commands/save.mjs +210 -0
  98. package/skills/ck/commands/shared.mjs +387 -0
  99. package/skills/ck/hooks/session-start.mjs +224 -0
  100. package/skills/claude-devfleet/SKILL.md +103 -0
  101. package/skills/click-path-audit/SKILL.md +244 -0
  102. package/skills/clickhouse-io/SKILL.md +438 -0
  103. package/skills/code-tour/SKILL.md +235 -0
  104. package/skills/codebase-onboarding/SKILL.md +232 -0
  105. package/skills/coding-standards/SKILL.md +548 -0
  106. package/skills/compose-multiplatform-patterns/SKILL.md +298 -0
  107. package/skills/connections-optimizer/SKILL.md +188 -0
  108. package/skills/content-engine/SKILL.md +126 -0
  109. package/skills/content-hash-cache-pattern/SKILL.md +160 -0
  110. package/skills/context-budget/SKILL.md +134 -0
  111. package/skills/continuous-agent-loop/SKILL.md +44 -0
  112. package/skills/continuous-learning/SKILL.md +129 -0
  113. package/skills/continuous-learning/config.json +18 -0
  114. package/skills/continuous-learning/evaluate-session.sh +69 -0
  115. package/skills/continuous-learning-v2/SKILL.md +358 -0
  116. package/skills/continuous-learning-v2/agents/observer-loop.sh +322 -0
  117. package/skills/continuous-learning-v2/agents/observer.md +198 -0
  118. package/skills/continuous-learning-v2/agents/session-guardian.sh +150 -0
  119. package/skills/continuous-learning-v2/agents/start-observer.sh +248 -0
  120. package/skills/continuous-learning-v2/config.json +8 -0
  121. package/skills/continuous-learning-v2/hooks/observe.sh +476 -0
  122. package/skills/continuous-learning-v2/scripts/detect-project.sh +288 -0
  123. package/skills/continuous-learning-v2/scripts/instinct-cli.py +1519 -0
  124. package/skills/continuous-learning-v2/scripts/lib/homunculus-dir.sh +31 -0
  125. package/skills/continuous-learning-v2/scripts/migrate-homunculus.sh +62 -0
  126. package/skills/continuous-learning-v2/scripts/test_parse_instinct.py +1018 -0
  127. package/skills/cost-aware-llm-pipeline/SKILL.md +182 -0
  128. package/skills/cost-tracking/SKILL.md +147 -0
  129. package/skills/council/SKILL.md +202 -0
  130. package/skills/cpp-coding-standards/SKILL.md +722 -0
  131. package/skills/cpp-testing/SKILL.md +323 -0
  132. package/skills/crosspost/SKILL.md +110 -0
  133. package/skills/csharp-testing/SKILL.md +320 -0
  134. package/skills/customer-billing-ops/SKILL.md +139 -0
  135. package/skills/customs-trade-compliance/SKILL.md +262 -0
  136. package/skills/dart-flutter-patterns/SKILL.md +562 -0
  137. package/skills/dashboard-builder/SKILL.md +108 -0
  138. package/skills/data-scraper-agent/SKILL.md +764 -0
  139. package/skills/database-migrations/SKILL.md +428 -0
  140. package/skills/deep-research/SKILL.md +158 -0
  141. package/skills/defi-amm-security/SKILL.md +166 -0
  142. package/skills/deployment-patterns/SKILL.md +426 -0
  143. package/skills/design-system/SKILL.md +81 -0
  144. package/skills/django-celery/SKILL.md +456 -0
  145. package/skills/django-patterns/SKILL.md +733 -0
  146. package/skills/django-security/SKILL.md +592 -0
  147. package/skills/django-tdd/SKILL.md +728 -0
  148. package/skills/django-verification/SKILL.md +468 -0
  149. package/skills/dmux-workflows/SKILL.md +190 -0
  150. package/skills/docker-patterns/SKILL.md +363 -0
  151. package/skills/documentation-lookup/SKILL.md +89 -0
  152. package/skills/dotnet-patterns/SKILL.md +320 -0
  153. package/skills/e2e-testing/SKILL.md +325 -0
  154. package/skills/email-ops/SKILL.md +120 -0
  155. package/skills/energy-procurement/SKILL.md +227 -0
  156. package/skills/enterprise-agent-ops/SKILL.md +49 -0
  157. package/skills/error-handling/SKILL.md +375 -0
  158. package/skills/eval-harness/SKILL.md +269 -0
  159. package/skills/evm-token-decimals/SKILL.md +130 -0
  160. package/skills/exa-search/SKILL.md +106 -0
  161. package/skills/fal-ai-media/SKILL.md +287 -0
  162. package/skills/fastapi-patterns/SKILL.md +327 -0
  163. package/skills/finance-billing-ops/SKILL.md +126 -0
  164. package/skills/flox-environments/SKILL.md +496 -0
  165. package/skills/flutter-dart-code-review/SKILL.md +434 -0
  166. package/skills/foundation-models-on-device/SKILL.md +243 -0
  167. package/skills/frontend-design-direction/SKILL.md +92 -0
  168. package/skills/frontend-patterns/SKILL.md +641 -0
  169. package/skills/frontend-slides/SKILL.md +183 -0
  170. package/skills/frontend-slides/STYLE_PRESETS.md +330 -0
  171. package/skills/frontend-slides/animation-patterns.md +122 -0
  172. package/skills/frontend-slides/html-template.md +419 -0
  173. package/skills/frontend-slides/scripts/export-pdf.sh +418 -0
  174. package/skills/frontend-slides/scripts/extract-pptx.py +96 -0
  175. package/skills/frontend-slides/viewport-base.css +153 -0
  176. package/skills/fsharp-testing/SKILL.md +279 -0
  177. package/skills/gan-style-harness/SKILL.md +278 -0
  178. package/skills/gateguard/SKILL.md +125 -0
  179. package/skills/git-workflow/SKILL.md +714 -0
  180. package/skills/github-ops/SKILL.md +143 -0
  181. package/skills/golang-patterns/SKILL.md +673 -0
  182. package/skills/golang-testing/SKILL.md +719 -0
  183. package/skills/google-workspace-ops/SKILL.md +94 -0
  184. package/skills/healthcare-cdss-patterns/SKILL.md +245 -0
  185. package/skills/healthcare-emr-patterns/SKILL.md +159 -0
  186. package/skills/healthcare-eval-harness/SKILL.md +207 -0
  187. package/skills/healthcare-phi-compliance/SKILL.md +145 -0
  188. package/skills/hermes-imports/SKILL.md +87 -0
  189. package/skills/hexagonal-architecture/SKILL.md +275 -0
  190. package/skills/hipaa-compliance/SKILL.md +78 -0
  191. package/skills/homelab-network-readiness/SKILL.md +169 -0
  192. package/skills/homelab-network-setup/SKILL.md +129 -0
  193. package/skills/homelab-pihole-dns/SKILL.md +274 -0
  194. package/skills/homelab-vlan-segmentation/SKILL.md +311 -0
  195. package/skills/homelab-wireguard-vpn/SKILL.md +305 -0
  196. package/skills/hookify-rules/SKILL.md +128 -0
  197. package/skills/inventory-demand-planning/SKILL.md +246 -0
  198. package/skills/investor-materials/SKILL.md +95 -0
  199. package/skills/investor-outreach/SKILL.md +90 -0
  200. package/skills/ios-icon-gen/SKILL.md +157 -0
  201. package/skills/ios-icon-gen/scripts/generate_icons.swift +258 -0
  202. package/skills/ios-icon-gen/scripts/iconify_gen.sh +235 -0
  203. package/skills/iterative-retrieval/SKILL.md +209 -0
  204. package/skills/java-coding-standards/SKILL.md +382 -0
  205. package/skills/jira-integration/SKILL.md +292 -0
  206. package/skills/jpa-patterns/SKILL.md +150 -0
  207. package/skills/knowledge-ops/SKILL.md +153 -0
  208. package/skills/kotlin-coroutines-flows/SKILL.md +283 -0
  209. package/skills/kotlin-exposed-patterns/SKILL.md +718 -0
  210. package/skills/kotlin-ktor-patterns/SKILL.md +688 -0
  211. package/skills/kotlin-patterns/SKILL.md +710 -0
  212. package/skills/kotlin-testing/SKILL.md +823 -0
  213. package/skills/laravel-patterns/SKILL.md +414 -0
  214. package/skills/laravel-plugin-discovery/SKILL.md +228 -0
  215. package/skills/laravel-security/SKILL.md +284 -0
  216. package/skills/laravel-tdd/SKILL.md +282 -0
  217. package/skills/laravel-verification/SKILL.md +178 -0
  218. package/skills/lead-intelligence/SKILL.md +320 -0
  219. package/skills/lead-intelligence/agents/enrichment-agent.md +85 -0
  220. package/skills/lead-intelligence/agents/mutual-mapper.md +75 -0
  221. package/skills/lead-intelligence/agents/outreach-drafter.md +98 -0
  222. package/skills/lead-intelligence/agents/signal-scorer.md +60 -0
  223. package/skills/liquid-glass-design/SKILL.md +279 -0
  224. package/skills/llm-trading-agent-security/SKILL.md +146 -0
  225. package/skills/logistics-exception-management/SKILL.md +221 -0
  226. package/skills/make-interfaces-feel-better/SKILL.md +151 -0
  227. package/skills/manim-video/SKILL.md +88 -0
  228. package/skills/manim-video/assets/network_graph_scene.py +52 -0
  229. package/skills/market-research/SKILL.md +74 -0
  230. package/skills/mcp-server-patterns/SKILL.md +68 -0
  231. package/skills/messages-ops/SKILL.md +103 -0
  232. package/skills/mle-workflow/SKILL.md +345 -0
  233. package/skills/motion-advanced/SKILL.md +596 -0
  234. package/skills/motion-foundations/SKILL.md +299 -0
  235. package/skills/motion-patterns/SKILL.md +435 -0
  236. package/skills/motion-ui/SKILL.md +574 -0
  237. package/skills/mysql-patterns/SKILL.md +411 -0
  238. package/skills/nanoclaw-repl/SKILL.md +32 -0
  239. package/skills/nestjs-patterns/SKILL.md +229 -0
  240. package/skills/netmiko-ssh-automation/SKILL.md +173 -0
  241. package/skills/network-bgp-diagnostics/SKILL.md +167 -0
  242. package/skills/network-config-validation/SKILL.md +210 -0
  243. package/skills/network-interface-health/SKILL.md +152 -0
  244. package/skills/nextjs-turbopack/SKILL.md +43 -0
  245. package/skills/nodejs-keccak256/SKILL.md +102 -0
  246. package/skills/nutrient-document-processing/SKILL.md +166 -0
  247. package/skills/nuxt4-patterns/SKILL.md +99 -0
  248. package/skills/openclaw-persona-forge/SKILL.md +288 -0
  249. package/skills/openclaw-persona-forge/gacha.py +224 -0
  250. package/skills/openclaw-persona-forge/gacha.sh +5 -0
  251. package/skills/openclaw-persona-forge/references/avatar-style.md +124 -0
  252. package/skills/openclaw-persona-forge/references/boundary-rules.md +53 -0
  253. package/skills/openclaw-persona-forge/references/error-handling.md +53 -0
  254. package/skills/openclaw-persona-forge/references/identity-tension.md +48 -0
  255. package/skills/openclaw-persona-forge/references/naming-system.md +39 -0
  256. package/skills/openclaw-persona-forge/references/output-template.md +166 -0
  257. package/skills/opensource-pipeline/SKILL.md +254 -0
  258. package/skills/perl-patterns/SKILL.md +503 -0
  259. package/skills/perl-security/SKILL.md +502 -0
  260. package/skills/perl-testing/SKILL.md +474 -0
  261. package/skills/plan-orchestrate/SKILL.md +253 -0
  262. package/skills/plankton-code-quality/SKILL.md +236 -0
  263. package/skills/postgres-patterns/SKILL.md +146 -0
  264. package/skills/product-capability/SKILL.md +140 -0
  265. package/skills/product-lens/SKILL.md +91 -0
  266. package/skills/production-audit/SKILL.md +206 -0
  267. package/skills/production-scheduling/SKILL.md +237 -0
  268. package/skills/project-flow-ops/SKILL.md +110 -0
  269. package/skills/prompt-optimizer/SKILL.md +398 -0
  270. package/skills/python-patterns/SKILL.md +749 -0
  271. package/skills/python-testing/SKILL.md +815 -0
  272. package/skills/pytorch-patterns/SKILL.md +395 -0
  273. package/skills/quality-nonconformance/SKILL.md +259 -0
  274. package/skills/quarkus-patterns/SKILL.md +721 -0
  275. package/skills/quarkus-security/SKILL.md +466 -0
  276. package/skills/quarkus-tdd/SKILL.md +810 -0
  277. package/skills/quarkus-verification/SKILL.md +478 -0
  278. package/skills/ralphinho-rfc-pipeline/SKILL.md +66 -0
  279. package/skills/redis-patterns/SKILL.md +402 -0
  280. package/skills/regex-vs-llm-structured-text/SKILL.md +219 -0
  281. package/skills/remotion-video-creation/SKILL.md +43 -0
  282. package/skills/remotion-video-creation/rules/3d.md +86 -0
  283. package/skills/remotion-video-creation/rules/animations.md +29 -0
  284. package/skills/remotion-video-creation/rules/assets/charts-bar-chart.tsx +173 -0
  285. package/skills/remotion-video-creation/rules/assets/text-animations-typewriter.tsx +100 -0
  286. package/skills/remotion-video-creation/rules/assets/text-animations-word-highlight.tsx +108 -0
  287. package/skills/remotion-video-creation/rules/assets.md +78 -0
  288. package/skills/remotion-video-creation/rules/audio.md +172 -0
  289. package/skills/remotion-video-creation/rules/calculate-metadata.md +104 -0
  290. package/skills/remotion-video-creation/rules/can-decode.md +75 -0
  291. package/skills/remotion-video-creation/rules/charts.md +58 -0
  292. package/skills/remotion-video-creation/rules/compositions.md +146 -0
  293. package/skills/remotion-video-creation/rules/display-captions.md +126 -0
  294. package/skills/remotion-video-creation/rules/extract-frames.md +229 -0
  295. package/skills/remotion-video-creation/rules/fonts.md +152 -0
  296. package/skills/remotion-video-creation/rules/get-audio-duration.md +58 -0
  297. package/skills/remotion-video-creation/rules/get-video-dimensions.md +68 -0
  298. package/skills/remotion-video-creation/rules/get-video-duration.md +58 -0
  299. package/skills/remotion-video-creation/rules/gifs.md +138 -0
  300. package/skills/remotion-video-creation/rules/images.md +130 -0
  301. package/skills/remotion-video-creation/rules/import-srt-captions.md +67 -0
  302. package/skills/remotion-video-creation/rules/lottie.md +67 -0
  303. package/skills/remotion-video-creation/rules/measuring-dom-nodes.md +34 -0
  304. package/skills/remotion-video-creation/rules/measuring-text.md +143 -0
  305. package/skills/remotion-video-creation/rules/sequencing.md +106 -0
  306. package/skills/remotion-video-creation/rules/tailwind.md +11 -0
  307. package/skills/remotion-video-creation/rules/text-animations.md +20 -0
  308. package/skills/remotion-video-creation/rules/timing.md +179 -0
  309. package/skills/remotion-video-creation/rules/transcribe-captions.md +19 -0
  310. package/skills/remotion-video-creation/rules/transitions.md +122 -0
  311. package/skills/remotion-video-creation/rules/trimming.md +52 -0
  312. package/skills/remotion-video-creation/rules/videos.md +171 -0
  313. package/skills/repo-scan/SKILL.md +78 -0
  314. package/skills/research-ops/SKILL.md +111 -0
  315. package/skills/returns-reverse-logistics/SKILL.md +239 -0
  316. package/skills/rules-distill/SKILL.md +263 -0
  317. package/skills/rules-distill/scripts/scan-rules.sh +58 -0
  318. package/skills/rules-distill/scripts/scan-skills.sh +129 -0
  319. package/skills/rust-patterns/SKILL.md +498 -0
  320. package/skills/rust-testing/SKILL.md +499 -0
  321. package/skills/safety-guard/SKILL.md +74 -0
  322. package/skills/santa-method/SKILL.md +306 -0
  323. package/skills/scientific-db-pubmed-database/SKILL.md +175 -0
  324. package/skills/scientific-db-uspto-database/SKILL.md +177 -0
  325. package/skills/scientific-pkg-gget/SKILL.md +166 -0
  326. package/skills/scientific-thinking-literature-review/SKILL.md +192 -0
  327. package/skills/scientific-thinking-scholar-evaluation/SKILL.md +160 -0
  328. package/skills/search-first/SKILL.md +181 -0
  329. package/skills/security-bounty-hunter/SKILL.md +99 -0
  330. package/skills/security-review/SKILL.md +502 -0
  331. package/skills/security-review/cloud-infrastructure-security.md +361 -0
  332. package/skills/seo/SKILL.md +153 -0
  333. package/skills/skill-comply/SKILL.md +57 -0
  334. package/skills/skill-comply/fixtures/compliant_trace.jsonl +5 -0
  335. package/skills/skill-comply/fixtures/noncompliant_trace.jsonl +3 -0
  336. package/skills/skill-comply/fixtures/tdd_spec.yaml +44 -0
  337. package/skills/skill-comply/prompts/classifier.md +24 -0
  338. package/skills/skill-comply/prompts/scenario_generator.md +62 -0
  339. package/skills/skill-comply/prompts/spec_generator.md +42 -0
  340. package/skills/skill-comply/pyproject.toml +15 -0
  341. package/skills/skill-comply/scripts/__init__.py +0 -0
  342. package/skills/skill-comply/scripts/classifier.py +85 -0
  343. package/skills/skill-comply/scripts/grader.py +124 -0
  344. package/skills/skill-comply/scripts/parser.py +107 -0
  345. package/skills/skill-comply/scripts/report.py +170 -0
  346. package/skills/skill-comply/scripts/run.py +127 -0
  347. package/skills/skill-comply/scripts/runner.py +186 -0
  348. package/skills/skill-comply/scripts/scenario_generator.py +70 -0
  349. package/skills/skill-comply/scripts/spec_generator.py +72 -0
  350. package/skills/skill-comply/scripts/utils.py +13 -0
  351. package/skills/skill-comply/tests/test_grader.py +197 -0
  352. package/skills/skill-comply/tests/test_parser.py +90 -0
  353. package/skills/skill-comply/tests/test_runner.py +172 -0
  354. package/skills/skill-scout/SKILL.md +139 -0
  355. package/skills/skill-stocktake/SKILL.md +193 -0
  356. package/skills/skill-stocktake/scripts/quick-diff.sh +87 -0
  357. package/skills/skill-stocktake/scripts/save-results.sh +56 -0
  358. package/skills/skill-stocktake/scripts/scan.sh +170 -0
  359. package/skills/social-graph-ranker/SKILL.md +153 -0
  360. package/skills/springboot-patterns/SKILL.md +313 -0
  361. package/skills/springboot-security/SKILL.md +271 -0
  362. package/skills/springboot-tdd/SKILL.md +157 -0
  363. package/skills/springboot-verification/SKILL.md +230 -0
  364. package/skills/strategic-compact/SKILL.md +129 -0
  365. package/skills/strategic-compact/suggest-compact.sh +54 -0
  366. package/skills/swift-actor-persistence/SKILL.md +142 -0
  367. package/skills/swift-concurrency-6-2/SKILL.md +216 -0
  368. package/skills/swift-protocol-di-testing/SKILL.md +189 -0
  369. package/skills/swiftui-patterns/SKILL.md +259 -0
  370. package/skills/tdd-workflow/SKILL.md +462 -0
  371. package/skills/team-builder/SKILL.md +166 -0
  372. package/skills/terminal-ops/SKILL.md +108 -0
  373. package/skills/tinystruct-patterns/SKILL.md +130 -0
  374. package/skills/tinystruct-patterns/references/architecture.md +77 -0
  375. package/skills/tinystruct-patterns/references/data-handling.md +35 -0
  376. package/skills/tinystruct-patterns/references/routing.md +57 -0
  377. package/skills/tinystruct-patterns/references/system-usage.md +74 -0
  378. package/skills/tinystruct-patterns/references/testing.md +59 -0
  379. package/skills/token-budget-advisor/SKILL.md +133 -0
  380. package/skills/ui-demo/SKILL.md +464 -0
  381. package/skills/ui-to-vue/SKILL.md +134 -0
  382. package/skills/unified-notifications-ops/SKILL.md +186 -0
  383. package/skills/verification-loop/SKILL.md +125 -0
  384. package/skills/video-editing/SKILL.md +309 -0
  385. package/skills/videodb/SKILL.md +373 -0
  386. package/skills/videodb/reference/api-reference.md +550 -0
  387. package/skills/videodb/reference/capture-reference.md +407 -0
  388. package/skills/videodb/reference/capture.md +101 -0
  389. package/skills/videodb/reference/editor.md +443 -0
  390. package/skills/videodb/reference/generative.md +331 -0
  391. package/skills/videodb/reference/rtstream-reference.md +564 -0
  392. package/skills/videodb/reference/rtstream.md +65 -0
  393. package/skills/videodb/reference/search.md +230 -0
  394. package/skills/videodb/reference/streaming.md +406 -0
  395. package/skills/videodb/reference/use-cases.md +118 -0
  396. package/skills/videodb/scripts/ws_listener.py +282 -0
  397. package/skills/visa-doc-translate/README.md +86 -0
  398. package/skills/visa-doc-translate/SKILL.md +117 -0
  399. package/skills/vite-patterns/SKILL.md +448 -0
  400. package/skills/windows-desktop-e2e/SKILL.md +787 -0
  401. package/skills/workspace-surface-audit/SKILL.md +124 -0
  402. package/skills/x-api/SKILL.md +233 -0
@@ -0,0 +1,198 @@
1
+ ---
2
+ name: observer
3
+ description: Background agent that analyzes session observations to detect patterns and create instincts. Uses Haiku for cost-efficiency. v2.1 adds project-scoped instincts.
4
+ model: haiku
5
+ ---
6
+
7
+ # Observer Agent
8
+
9
+ A background agent that analyzes observations from Claude Code sessions to detect patterns and create instincts.
10
+
11
+ ## When to Run
12
+
13
+ - After enough observations accumulate (configurable, default 20)
14
+ - On a scheduled interval (configurable, default 5 minutes)
15
+ - When triggered on demand via SIGUSR1 to the observer process
16
+
17
+ ## Input
18
+
19
+ Reads observations from the **project-scoped** observations file:
20
+ - Project: `${XDG_DATA_HOME:-~/.local/share}/skill-homunculus/projects/<project-hash>/observations.jsonl`
21
+ - Global fallback: `${XDG_DATA_HOME:-~/.local/share}/skill-homunculus/observations.jsonl`
22
+
23
+ ```jsonl
24
+ {"timestamp":"2025-01-22T10:30:00Z","event":"tool_start","session":"abc123","tool":"Edit","input":"...","project_id":"a1b2c3d4e5f6","project_name":"my-react-app"}
25
+ {"timestamp":"2025-01-22T10:30:01Z","event":"tool_complete","session":"abc123","tool":"Edit","output":"...","project_id":"a1b2c3d4e5f6","project_name":"my-react-app"}
26
+ {"timestamp":"2025-01-22T10:30:05Z","event":"tool_start","session":"abc123","tool":"Bash","input":"npm test","project_id":"a1b2c3d4e5f6","project_name":"my-react-app"}
27
+ {"timestamp":"2025-01-22T10:30:10Z","event":"tool_complete","session":"abc123","tool":"Bash","output":"All tests pass","project_id":"a1b2c3d4e5f6","project_name":"my-react-app"}
28
+ ```
29
+
30
+ ## Pattern Detection
31
+
32
+ Look for these patterns in observations:
33
+
34
+ ### 1. User Corrections
35
+ When a user's follow-up message corrects Claude's previous action:
36
+ - "No, use X instead of Y"
37
+ - "Actually, I meant..."
38
+ - Immediate undo/redo patterns
39
+
40
+ → Create instinct: "When doing X, prefer Y"
41
+
42
+ ### 2. Error Resolutions
43
+ When an error is followed by a fix:
44
+ - Tool output contains error
45
+ - Next few tool calls fix it
46
+ - Same error type resolved similarly multiple times
47
+
48
+ → Create instinct: "When encountering error X, try Y"
49
+
50
+ ### 3. Repeated Workflows
51
+ When the same sequence of tools is used multiple times:
52
+ - Same tool sequence with similar inputs
53
+ - File patterns that change together
54
+ - Time-clustered operations
55
+
56
+ → Create workflow instinct: "When doing X, follow steps Y, Z, W"
57
+
58
+ ### 4. Tool Preferences
59
+ When certain tools are consistently preferred:
60
+ - Always uses Grep before Edit
61
+ - Prefers Read over Bash cat
62
+ - Uses specific Bash commands for certain tasks
63
+
64
+ → Create instinct: "When needing X, use tool Y"
65
+
66
+ ## Output
67
+
68
+ Creates/updates instincts in the **project-scoped** instincts directory:
69
+ - Project: `${XDG_DATA_HOME:-~/.local/share}/skill-homunculus/projects/<project-hash>/instincts/personal/`
70
+ - Global: `${XDG_DATA_HOME:-~/.local/share}/skill-homunculus/instincts/personal/` (for universal patterns)
71
+
72
+ ### Project-Scoped Instinct (default)
73
+
74
+ ```yaml
75
+ ---
76
+ id: use-react-hooks-pattern
77
+ trigger: "when creating React components"
78
+ confidence: 0.65
79
+ domain: "code-style"
80
+ source: "session-observation"
81
+ scope: project
82
+ project_id: "a1b2c3d4e5f6"
83
+ project_name: "my-react-app"
84
+ ---
85
+
86
+ # Use React Hooks Pattern
87
+
88
+ ## Action
89
+ Always use functional components with hooks instead of class components.
90
+
91
+ ## Evidence
92
+ - Observed 8 times in session abc123
93
+ - Pattern: All new components use useState/useEffect
94
+ - Last observed: 2025-01-22
95
+ ```
96
+
97
+ ### Global Instinct (universal patterns)
98
+
99
+ ```yaml
100
+ ---
101
+ id: always-validate-user-input
102
+ trigger: "when handling user input"
103
+ confidence: 0.75
104
+ domain: "security"
105
+ source: "session-observation"
106
+ scope: global
107
+ ---
108
+
109
+ # Always Validate User Input
110
+
111
+ ## Action
112
+ Validate and sanitize all user input before processing.
113
+
114
+ ## Evidence
115
+ - Observed across 3 different projects
116
+ - Pattern: User consistently adds input validation
117
+ - Last observed: 2025-01-22
118
+ ```
119
+
120
+ ## Scope Decision Guide
121
+
122
+ When creating instincts, determine scope based on these heuristics:
123
+
124
+ | Pattern Type | Scope | Examples |
125
+ |-------------|-------|---------|
126
+ | Language/framework conventions | **project** | "Use React hooks", "Follow Django REST patterns" |
127
+ | File structure preferences | **project** | "Tests in `__tests__`/", "Components in src/components/" |
128
+ | Code style | **project** | "Use functional style", "Prefer dataclasses" |
129
+ | Error handling strategies | **project** (usually) | "Use Result type for errors" |
130
+ | Security practices | **global** | "Validate user input", "Sanitize SQL" |
131
+ | General best practices | **global** | "Write tests first", "Always handle errors" |
132
+ | Tool workflow preferences | **global** | "Grep before Edit", "Read before Write" |
133
+ | Git practices | **global** | "Conventional commits", "Small focused commits" |
134
+
135
+ **When in doubt, default to `scope: project`** — it's safer to be project-specific and promote later than to contaminate the global space.
136
+
137
+ ## Confidence Calculation
138
+
139
+ Initial confidence based on observation frequency:
140
+ - 1-2 observations: 0.3 (tentative)
141
+ - 3-5 observations: 0.5 (moderate)
142
+ - 6-10 observations: 0.7 (strong)
143
+ - 11+ observations: 0.85 (very strong)
144
+
145
+ Confidence adjusts over time:
146
+ - +0.05 for each confirming observation
147
+ - -0.1 for each contradicting observation
148
+ - -0.02 per week without observation (decay)
149
+
150
+ ## Instinct Promotion (Project → Global)
151
+
152
+ An instinct should be promoted from project-scoped to global when:
153
+ 1. The **same pattern** (by id or similar trigger) exists in **2+ different projects**
154
+ 2. Each instance has confidence **>= 0.8**
155
+ 3. The domain is in the global-friendly list (security, general-best-practices, workflow)
156
+
157
+ Promotion is handled by the `instinct-cli.py promote` command or the `/evolve` analysis.
158
+
159
+ ## Important Guidelines
160
+
161
+ 1. **Be Conservative**: Only create instincts for clear patterns (3+ observations)
162
+ 2. **Be Specific**: Narrow triggers are better than broad ones
163
+ 3. **Track Evidence**: Always include what observations led to the instinct
164
+ 4. **Respect Privacy**: Never include actual code snippets, only patterns
165
+ 5. **Merge Similar**: If a new instinct is similar to existing, update rather than duplicate
166
+ 6. **Default to Project Scope**: Unless the pattern is clearly universal, make it project-scoped
167
+ 7. **Include Project Context**: Always set `project_id` and `project_name` for project-scoped instincts
168
+
169
+ ## Example Analysis Session
170
+
171
+ Given observations:
172
+ ```jsonl
173
+ {"event":"tool_start","tool":"Grep","input":"pattern: useState","project_id":"a1b2c3","project_name":"my-app"}
174
+ {"event":"tool_complete","tool":"Grep","output":"Found in 3 files","project_id":"a1b2c3","project_name":"my-app"}
175
+ {"event":"tool_start","tool":"Read","input":"src/hooks/useAuth.ts","project_id":"a1b2c3","project_name":"my-app"}
176
+ {"event":"tool_complete","tool":"Read","output":"[file content]","project_id":"a1b2c3","project_name":"my-app"}
177
+ {"event":"tool_start","tool":"Edit","input":"src/hooks/useAuth.ts...","project_id":"a1b2c3","project_name":"my-app"}
178
+ ```
179
+
180
+ Analysis:
181
+ - Detected workflow: Grep → Read → Edit
182
+ - Frequency: Seen 5 times this session
183
+ - **Scope decision**: This is a general workflow pattern (not project-specific) → **global**
184
+ - Create instinct:
185
+ - trigger: "when modifying code"
186
+ - action: "Search with Grep, confirm with Read, then Edit"
187
+ - confidence: 0.6
188
+ - domain: "workflow"
189
+ - scope: "global"
190
+
191
+ ## Integration with Skill Creator
192
+
193
+ When instincts are imported from Skill Creator (repo analysis), they have:
194
+ - `source: "repo-analysis"`
195
+ - `source_repo: "https://github.com/..."`
196
+ - `scope: "project"` (since they come from a specific repo)
197
+
198
+ These should be treated as team/project conventions with higher initial confidence (0.7+).
@@ -0,0 +1,150 @@
1
+ #!/usr/bin/env bash
2
+ # session-guardian.sh — Observer session guard
3
+ # Exit 0 = proceed. Exit 1 = skip this observer cycle.
4
+ # Called by observer-loop.sh before spawning any Claude session.
5
+ #
6
+ # Config (env vars, all optional):
7
+ # OBSERVER_INTERVAL_SECONDS default: 300 (per-project cooldown)
8
+ # OBSERVER_LAST_RUN_LOG default: ~/.claude/observer-last-run.log
9
+ # OBSERVER_ACTIVE_HOURS_START default: 800 (8:00 AM local, set to 0 to disable)
10
+ # OBSERVER_ACTIVE_HOURS_END default: 2300 (11:00 PM local, set to 0 to disable)
11
+ # OBSERVER_MAX_IDLE_SECONDS default: 1800 (30 min; set to 0 to disable)
12
+ #
13
+ # Gate execution order (cheapest first):
14
+ # Gate 1: Time window check (~0ms, string comparison)
15
+ # Gate 2: Project cooldown log (~1ms, file read + mkdir lock)
16
+ # Gate 3: Idle detection (~5-50ms, OS syscall; fail open)
17
+
18
+ set -euo pipefail
19
+
20
+ INTERVAL="${OBSERVER_INTERVAL_SECONDS:-300}"
21
+ LOG_PATH="${OBSERVER_LAST_RUN_LOG:-$HOME/.claude/observer-last-run.log}"
22
+ ACTIVE_START="${OBSERVER_ACTIVE_HOURS_START:-800}"
23
+ ACTIVE_END="${OBSERVER_ACTIVE_HOURS_END:-2300}"
24
+ MAX_IDLE="${OBSERVER_MAX_IDLE_SECONDS:-1800}"
25
+
26
+ # ── Gate 1: Time Window ───────────────────────────────────────────────────────
27
+ # Skip observer cycles outside configured active hours (local system time).
28
+ # Uses HHMM integer comparison. Works on BSD date (macOS) and GNU date (Linux).
29
+ # Supports overnight windows such as 2200-0600.
30
+ # Set both ACTIVE_START and ACTIVE_END to 0 to disable this gate.
31
+ if [ "$ACTIVE_START" -ne 0 ] || [ "$ACTIVE_END" -ne 0 ]; then
32
+ current_hhmm=$(date +%k%M | tr -d ' ')
33
+ current_hhmm_num=$(( 10#${current_hhmm:-0} ))
34
+ active_start_num=$(( 10#${ACTIVE_START:-800} ))
35
+ active_end_num=$(( 10#${ACTIVE_END:-2300} ))
36
+
37
+ within_active_hours=0
38
+ if [ "$active_start_num" -lt "$active_end_num" ]; then
39
+ if [ "$current_hhmm_num" -ge "$active_start_num" ] && [ "$current_hhmm_num" -lt "$active_end_num" ]; then
40
+ within_active_hours=1
41
+ fi
42
+ else
43
+ if [ "$current_hhmm_num" -ge "$active_start_num" ] || [ "$current_hhmm_num" -lt "$active_end_num" ]; then
44
+ within_active_hours=1
45
+ fi
46
+ fi
47
+
48
+ if [ "$within_active_hours" -ne 1 ]; then
49
+ echo "session-guardian: outside active hours (${current_hhmm}, window ${ACTIVE_START}-${ACTIVE_END})" >&2
50
+ exit 1
51
+ fi
52
+ fi
53
+
54
+ # ── Gate 2: Project Cooldown Log ─────────────────────────────────────────────
55
+ # Prevent the same project being observed faster than OBSERVER_INTERVAL_SECONDS.
56
+ # Key: PROJECT_DIR when provided by the observer, otherwise git root path.
57
+ # Uses mkdir-based lock for safe concurrent access. Skips the cycle on lock contention.
58
+ # stderr uses basename only — never prints the full absolute path.
59
+
60
+ project_root="${PROJECT_DIR:-}"
61
+ if [ -z "$project_root" ] || [ ! -d "$project_root" ]; then
62
+ project_root="$(git rev-parse --show-toplevel 2>/dev/null || echo "$PWD")"
63
+ fi
64
+ project_name="$(basename "$project_root")"
65
+ now="$(date +%s)"
66
+
67
+ mkdir -p "$(dirname "$LOG_PATH")" || {
68
+ echo "session-guardian: cannot create log dir, proceeding" >&2
69
+ exit 0
70
+ }
71
+
72
+ _lock_dir="${LOG_PATH}.lock"
73
+ if ! mkdir "$_lock_dir" 2>/dev/null; then
74
+ # Another observer holds the lock — skip this cycle to avoid double-spawns
75
+ echo "session-guardian: log locked by concurrent process, skipping cycle" >&2
76
+ exit 1
77
+ else
78
+ trap 'rm -rf "$_lock_dir"' EXIT INT TERM
79
+
80
+ last_spawn=0
81
+ last_spawn=$(awk -F '\t' -v key="$project_root" '$1 == key { value = $2 } END { if (value != "") print value }' "$LOG_PATH" 2>/dev/null) || true
82
+ last_spawn="${last_spawn:-0}"
83
+ [[ "$last_spawn" =~ ^[0-9]+$ ]] || last_spawn=0
84
+
85
+ elapsed=$(( now - last_spawn ))
86
+ if [ "$elapsed" -lt "$INTERVAL" ]; then
87
+ rm -rf "$_lock_dir"
88
+ trap - EXIT INT TERM
89
+ echo "session-guardian: cooldown active for '${project_name}' (last spawn ${elapsed}s ago, interval ${INTERVAL}s)" >&2
90
+ exit 1
91
+ fi
92
+
93
+ # Update log: remove old entry for this project, append new timestamp (tab-delimited)
94
+ tmp_log="$(mktemp "$(dirname "$LOG_PATH")/observer-last-run.XXXXXX")"
95
+ awk -F '\t' -v key="$project_root" '$1 != key' "$LOG_PATH" > "$tmp_log" 2>/dev/null || true
96
+ printf '%s\t%s\n' "$project_root" "$now" >> "$tmp_log"
97
+ mv "$tmp_log" "$LOG_PATH"
98
+
99
+ rm -rf "$_lock_dir"
100
+ trap - EXIT INT TERM
101
+ fi
102
+
103
+ # ── Gate 3: Idle Detection ────────────────────────────────────────────────────
104
+ # Skip cycles when no user input received for too long. Fail open if idle time
105
+ # cannot be determined (Linux without xprintidle, headless, unknown OS).
106
+ # Set OBSERVER_MAX_IDLE_SECONDS=0 to disable this gate.
107
+
108
+ get_idle_seconds() {
109
+ local _raw
110
+ case "$(uname -s)" in
111
+ Darwin)
112
+ _raw=$( { /usr/sbin/ioreg -c IOHIDSystem \
113
+ | /usr/bin/awk '/HIDIdleTime/ {print int($NF/1000000000); exit}'; } \
114
+ 2>/dev/null ) || true
115
+ printf '%s\n' "${_raw:-0}" | head -n1
116
+ ;;
117
+ Linux)
118
+ if command -v xprintidle >/dev/null 2>&1; then
119
+ _raw=$(xprintidle 2>/dev/null) || true
120
+ echo $(( ${_raw:-0} / 1000 ))
121
+ else
122
+ echo 0 # fail open: xprintidle not installed
123
+ fi
124
+ ;;
125
+ *MINGW*|*MSYS*|*CYGWIN*)
126
+ _raw=$(powershell.exe -NoProfile -NonInteractive -Command \
127
+ "try { \
128
+ Add-Type -MemberDefinition '[DllImport(\"user32.dll\")] public static extern bool GetLastInputInfo(ref LASTINPUTINFO p); [StructLayout(LayoutKind.Sequential)] public struct LASTINPUTINFO { public uint cbSize; public int dwTime; }' -Name WinAPI -Namespace PInvoke; \
129
+ \$l = New-Object PInvoke.WinAPI+LASTINPUTINFO; \$l.cbSize = 8; \
130
+ [PInvoke.WinAPI]::GetLastInputInfo([ref]\$l) | Out-Null; \
131
+ [int][Math]::Max(0, [long]([Environment]::TickCount - [long]\$l.dwTime) / 1000) \
132
+ } catch { 0 }" \
133
+ 2>/dev/null | tr -d '\r') || true
134
+ printf '%s\n' "${_raw:-0}" | head -n1
135
+ ;;
136
+ *)
137
+ echo 0 # fail open: unknown platform
138
+ ;;
139
+ esac
140
+ }
141
+
142
+ if [ "$MAX_IDLE" -gt 0 ]; then
143
+ idle_seconds=$(get_idle_seconds)
144
+ if [ "$idle_seconds" -gt "$MAX_IDLE" ]; then
145
+ echo "session-guardian: user idle ${idle_seconds}s (threshold ${MAX_IDLE}s), skipping" >&2
146
+ exit 1
147
+ fi
148
+ fi
149
+
150
+ exit 0
@@ -0,0 +1,248 @@
1
+ #!/bin/bash
2
+ # Continuous Learning v2 - Observer Agent Launcher
3
+ #
4
+ # Starts the background observer agent that analyzes observations
5
+ # and creates instincts. Uses Haiku model for cost efficiency.
6
+ #
7
+ # v2.1: Project-scoped — detects current project and analyzes
8
+ # project-specific observations into project-scoped instincts.
9
+ #
10
+ # Usage:
11
+ # start-observer.sh # Start observer for current project (or global)
12
+ # start-observer.sh --reset # Clear lock and restart observer for current project
13
+ # start-observer.sh stop # Stop running observer
14
+ # start-observer.sh status # Check if observer is running
15
+
16
+ set -e
17
+
18
+ # NOTE: set -e is disabled inside the background subshell below
19
+ # to prevent claude CLI failures from killing the observer loop.
20
+
21
+ # ─────────────────────────────────────────────
22
+ # Project detection
23
+ # ─────────────────────────────────────────────
24
+
25
+ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
26
+ SKILL_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
27
+ OBSERVER_LOOP_SCRIPT="${SCRIPT_DIR}/observer-loop.sh"
28
+
29
+ # Source shared project detection helper
30
+ # This sets: PROJECT_ID, PROJECT_NAME, PROJECT_ROOT, PROJECT_DIR
31
+ source "${SKILL_ROOT}/scripts/detect-project.sh"
32
+ PYTHON_CMD="${CLV2_PYTHON_CMD:-}"
33
+
34
+ # ─────────────────────────────────────────────
35
+ # Configuration
36
+ # ─────────────────────────────────────────────
37
+
38
+ # shellcheck disable=SC1091
39
+ . "${SKILL_ROOT}/scripts/lib/homunculus-dir.sh"
40
+ CONFIG_DIR="$(_sf_resolve_homunculus_dir)"
41
+ if [ -n "${CLV2_CONFIG:-}" ]; then
42
+ CONFIG_FILE="$CLV2_CONFIG"
43
+ elif [ -f "${CONFIG_DIR}/config.json" ]; then
44
+ CONFIG_FILE="${CONFIG_DIR}/config.json"
45
+ else
46
+ CONFIG_FILE="${SKILL_ROOT}/config.json"
47
+ fi
48
+ # PID file is project-scoped so each project can have its own observer
49
+ PID_FILE="${PROJECT_DIR}/.observer.pid"
50
+ LOG_FILE="${PROJECT_DIR}/observer.log"
51
+ OBSERVATIONS_FILE="${PROJECT_DIR}/observations.jsonl"
52
+ INSTINCTS_DIR="${PROJECT_DIR}/instincts/personal"
53
+ SENTINEL_FILE="${CLV2_OBSERVER_SENTINEL_FILE:-${PROJECT_ROOT:-$PROJECT_DIR}/.observer.lock}"
54
+
55
+ write_guard_sentinel() {
56
+ printf '%s\n' 'observer paused: confirmation or permission prompt detected; rerun start-observer.sh --reset after reviewing observer.log' > "$SENTINEL_FILE"
57
+ }
58
+
59
+ stop_observer_if_running() {
60
+ if [ -f "$PID_FILE" ]; then
61
+ pid=$(cat "$PID_FILE")
62
+ if kill -0 "$pid" 2>/dev/null; then
63
+ echo "Stopping observer for ${PROJECT_NAME} (PID: $pid)..."
64
+ kill "$pid"
65
+ rm -f "$PID_FILE"
66
+ echo "Observer stopped."
67
+ return 0
68
+ fi
69
+
70
+ echo "Observer not running (stale PID file)."
71
+ rm -f "$PID_FILE"
72
+ return 1
73
+ fi
74
+
75
+ echo "Observer not running."
76
+ return 1
77
+ }
78
+
79
+ # Read config values from config.json
80
+ OBSERVER_INTERVAL_MINUTES=5
81
+ MIN_OBSERVATIONS=20
82
+ OBSERVER_ENABLED=false
83
+ if [ -f "$CONFIG_FILE" ]; then
84
+ if [ -z "$PYTHON_CMD" ]; then
85
+ echo "No python interpreter found; using built-in observer defaults." >&2
86
+ else
87
+ _config=$(CLV2_CONFIG="$CONFIG_FILE" "$PYTHON_CMD" -c "
88
+ import json, os
89
+ with open(os.environ['CLV2_CONFIG']) as f:
90
+ cfg = json.load(f)
91
+ obs = cfg.get('observer', {})
92
+ print(obs.get('run_interval_minutes', 5))
93
+ print(obs.get('min_observations_to_analyze', 20))
94
+ print(str(obs.get('enabled', False)).lower())
95
+ " 2>/dev/null || echo "5
96
+ 20
97
+ false")
98
+ _interval=$(echo "$_config" | sed -n '1p')
99
+ _min_obs=$(echo "$_config" | sed -n '2p')
100
+ _enabled=$(echo "$_config" | sed -n '3p')
101
+ if [ "$_interval" -gt 0 ] 2>/dev/null; then
102
+ OBSERVER_INTERVAL_MINUTES="$_interval"
103
+ fi
104
+ if [ "$_min_obs" -gt 0 ] 2>/dev/null; then
105
+ MIN_OBSERVATIONS="$_min_obs"
106
+ fi
107
+ if [ "$_enabled" = "true" ]; then
108
+ OBSERVER_ENABLED=true
109
+ fi
110
+ fi
111
+ fi
112
+ OBSERVER_INTERVAL_SECONDS=$((OBSERVER_INTERVAL_MINUTES * 60))
113
+
114
+ echo "Project: ${PROJECT_NAME} (${PROJECT_ID})"
115
+ echo "Storage: ${PROJECT_DIR}"
116
+
117
+ # Windows/Git-Bash detection (Issue #295)
118
+ UNAME_LOWER="$(uname -s 2>/dev/null | tr '[:upper:]' '[:lower:]')"
119
+ IS_WINDOWS=false
120
+ case "$UNAME_LOWER" in
121
+ *mingw*|*msys*|*cygwin*) IS_WINDOWS=true ;;
122
+ esac
123
+
124
+ ACTION="start"
125
+ RESET_OBSERVER=false
126
+
127
+ for arg in "$@"; do
128
+ case "$arg" in
129
+ start|stop|status)
130
+ ACTION="$arg"
131
+ ;;
132
+ --reset)
133
+ RESET_OBSERVER=true
134
+ ;;
135
+ *)
136
+ echo "Usage: $0 [start|stop|status] [--reset]"
137
+ exit 1
138
+ ;;
139
+ esac
140
+ done
141
+
142
+ if [ "$RESET_OBSERVER" = "true" ]; then
143
+ rm -f "$SENTINEL_FILE"
144
+ fi
145
+
146
+ case "$ACTION" in
147
+ stop)
148
+ stop_observer_if_running || true
149
+ exit 0
150
+ ;;
151
+
152
+ status)
153
+ if [ -f "$PID_FILE" ]; then
154
+ pid=$(cat "$PID_FILE")
155
+ if kill -0 "$pid" 2>/dev/null; then
156
+ echo "Observer is running (PID: $pid)"
157
+ echo "Log: $LOG_FILE"
158
+ echo "Observations: $(wc -l < "$OBSERVATIONS_FILE" 2>/dev/null || echo 0) lines"
159
+ # Also show instinct count
160
+ instinct_count=$(find "$INSTINCTS_DIR" -name "*.yaml" 2>/dev/null | wc -l)
161
+ echo "Instincts: $instinct_count"
162
+ exit 0
163
+ else
164
+ echo "Observer not running (stale PID file)"
165
+ rm -f "$PID_FILE"
166
+ exit 1
167
+ fi
168
+ else
169
+ echo "Observer not running"
170
+ exit 1
171
+ fi
172
+ ;;
173
+
174
+ start)
175
+ # Check if observer is disabled in config
176
+ if [ "$OBSERVER_ENABLED" != "true" ]; then
177
+ echo "Observer is disabled in config.json (observer.enabled: false)."
178
+ echo "Set observer.enabled to true in config.json to enable."
179
+ exit 1
180
+ fi
181
+
182
+ # Check if already running
183
+ if [ -f "$PID_FILE" ]; then
184
+ pid=$(cat "$PID_FILE")
185
+ if kill -0 "$pid" 2>/dev/null; then
186
+ echo "Observer already running for ${PROJECT_NAME} (PID: $pid)"
187
+ exit 0
188
+ fi
189
+ rm -f "$PID_FILE"
190
+ fi
191
+
192
+ echo "Starting observer agent for ${PROJECT_NAME}..."
193
+
194
+ if [ ! -x "$OBSERVER_LOOP_SCRIPT" ]; then
195
+ echo "Observer loop script not found or not executable: $OBSERVER_LOOP_SCRIPT"
196
+ exit 1
197
+ fi
198
+
199
+ mkdir -p "$PROJECT_DIR"
200
+ touch "$LOG_FILE"
201
+ start_line=$(wc -l < "$LOG_FILE" 2>/dev/null || echo 0)
202
+
203
+ nohup env \
204
+ CONFIG_DIR="$CONFIG_DIR" \
205
+ PID_FILE="$PID_FILE" \
206
+ LOG_FILE="$LOG_FILE" \
207
+ OBSERVATIONS_FILE="$OBSERVATIONS_FILE" \
208
+ INSTINCTS_DIR="$INSTINCTS_DIR" \
209
+ PROJECT_DIR="$PROJECT_DIR" \
210
+ PROJECT_NAME="$PROJECT_NAME" \
211
+ PROJECT_ID="$PROJECT_ID" \
212
+ MIN_OBSERVATIONS="$MIN_OBSERVATIONS" \
213
+ OBSERVER_INTERVAL_SECONDS="$OBSERVER_INTERVAL_SECONDS" \
214
+ CLV2_IS_WINDOWS="$IS_WINDOWS" \
215
+ CLV2_OBSERVER_PROMPT_PATTERN="$CLV2_OBSERVER_PROMPT_PATTERN" \
216
+ "$OBSERVER_LOOP_SCRIPT" >> "$LOG_FILE" 2>&1 &
217
+
218
+ # Wait for PID file
219
+ sleep 2
220
+
221
+ # Check for confirmation-seeking output in the observer log
222
+ if tail -n +"$((start_line + 1))" "$LOG_FILE" 2>/dev/null | grep -E -i -q "$CLV2_OBSERVER_PROMPT_PATTERN"; then
223
+ echo "OBSERVER_ABORT: Confirmation or permission prompt detected in observer output. Failing closed."
224
+ stop_observer_if_running >/dev/null 2>&1 || true
225
+ write_guard_sentinel
226
+ exit 2
227
+ fi
228
+
229
+ if [ -f "$PID_FILE" ]; then
230
+ pid=$(cat "$PID_FILE")
231
+ if kill -0 "$pid" 2>/dev/null; then
232
+ echo "Observer started (PID: $pid)"
233
+ echo "Log: $LOG_FILE"
234
+ else
235
+ echo "Failed to start observer (process died immediately, check $LOG_FILE)"
236
+ exit 1
237
+ fi
238
+ else
239
+ echo "Failed to start observer"
240
+ exit 1
241
+ fi
242
+ ;;
243
+
244
+ *)
245
+ echo "Usage: $0 [start|stop|status] [--reset]"
246
+ exit 1
247
+ ;;
248
+ esac
@@ -0,0 +1,8 @@
1
+ {
2
+ "version": "2.1",
3
+ "observer": {
4
+ "enabled": false,
5
+ "run_interval_minutes": 5,
6
+ "min_observations_to_analyze": 20
7
+ }
8
+ }