codymaster 4.8.0 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +331 -7
- package/README.md +226 -296
- package/dist/advisory-handoff.js +89 -0
- package/dist/advisory-report.js +105 -0
- package/dist/agent/antigravity.js +152 -0
- package/dist/agent/backend.js +2 -0
- package/dist/agent/claude.js +196 -0
- package/dist/agent/codex.js +204 -0
- package/dist/agent/copilot.js +284 -0
- package/dist/agent/cursor.js +211 -0
- package/dist/agent/factory.js +30 -0
- package/dist/agent/gemini.js +142 -0
- package/dist/agent/opencode.js +205 -0
- package/dist/agent/spawn-helper.js +237 -0
- package/dist/agent/version.js +25 -0
- package/dist/browse/adapter-factory.js +69 -0
- package/dist/browse/adapters/agent-browser-adapter.js +305 -0
- package/dist/browse/adapters/playwright-adapter.js +309 -0
- package/dist/browse/adapters/types.js +6 -0
- package/dist/browse/error-collector.js +132 -0
- package/dist/browse/event-log.js +109 -0
- package/dist/browse/index.js +17 -0
- package/dist/browse-server.js +204 -120
- package/dist/cli/command-registry.js +20 -0
- package/dist/cli/commands/bench.js +69 -0
- package/dist/cli/commands/brain.js +108 -0
- package/dist/cli/commands/dashboard.js +76 -2
- package/dist/cli/commands/engineering.js +326 -4
- package/dist/cli/commands/evolve.js +123 -0
- package/dist/cli/commands/install.js +160 -0
- package/dist/cli/commands/learn.js +181 -0
- package/dist/cli/commands/mcp-serve.js +104 -0
- package/dist/cli/commands/parallel.js +138 -0
- package/dist/cli/commands/quality.js +105 -0
- package/dist/cli/commands/stack.js +49 -0
- package/dist/cli/commands/update.js +159 -0
- package/dist/cli/update-check.js +94 -10
- package/dist/cm-config.js +0 -18
- package/dist/codybench/judges/automated.js +31 -0
- package/dist/codybench/runners/claude-code.js +32 -0
- package/dist/codybench/suites/memory-retention.js +85 -0
- package/dist/codybench/suites/tdd-regression.js +35 -0
- package/dist/codybench/suites/token-efficiency.js +55 -0
- package/dist/codybench/types.js +2 -0
- package/dist/context-db.js +157 -0
- package/dist/continuity.js +5 -7
- package/dist/dashboard.js +47 -6
- package/dist/data.js +35 -0
- package/dist/execution/tdd-gate.js +113 -0
- package/dist/execution-analyzer.js +138 -0
- package/dist/executor/cancel.js +34 -0
- package/dist/executor/gc.js +74 -0
- package/dist/executor/index.js +14 -0
- package/dist/executor/runner.js +70 -0
- package/dist/executor/workdir.js +31 -0
- package/dist/handoff/contracts.js +22 -0
- package/dist/handoff/index.js +18 -0
- package/dist/handoff/io.js +121 -0
- package/dist/index.js +7 -3
- package/dist/indexer/skills-lib.js +533 -0
- package/dist/indexer/skills-map.js +1374 -0
- package/dist/indexer/skills.js +16 -0
- package/dist/indexer/stack-detect.js +219 -0
- package/dist/install/copy.js +98 -0
- package/dist/install/engine.js +42 -0
- package/dist/install/paths.js +70 -0
- package/dist/install/platforms/_simple.js +85 -0
- package/dist/install/platforms/antigravity.js +91 -0
- package/dist/install/platforms/claude-code.js +107 -0
- package/dist/install/platforms/cursor.js +77 -0
- package/dist/install/platforms/index.js +27 -0
- package/dist/install/platforms/simple.js +163 -0
- package/dist/install/profiles.js +75 -0
- package/dist/install/types.js +2 -0
- package/dist/learning-promoter.js +246 -0
- package/dist/learnings.js +208 -0
- package/dist/mcp-context-server.js +230 -1
- package/dist/middleware/metrics.js +30 -0
- package/dist/middleware/security-headers.js +14 -0
- package/dist/realtime/event-bus.js +29 -0
- package/dist/realtime/ws-hub.js +91 -0
- package/dist/schemas/task-schema.js +48 -0
- package/dist/schemas/validate.js +18 -0
- package/dist/skill-chain.js +63 -1
- package/dist/skill-evolver.js +456 -0
- package/dist/skill-execution-cache.js +254 -0
- package/dist/skills-lock.js +96 -0
- package/dist/smart-brain-router.js +184 -0
- package/dist/sprint-pipeline.js +26 -0
- package/dist/storage/index.js +21 -0
- package/dist/storage/repos/activity-repo.js +46 -0
- package/dist/storage/repos/message-repo.js +39 -0
- package/dist/storage/repos/project-repo.js +56 -0
- package/dist/storage/repos/task-repo.js +142 -0
- package/dist/storage/services/project-service.js +49 -0
- package/dist/storage/services/task-service.js +97 -0
- package/dist/storage/sqlite.js +113 -0
- package/dist/storage-backend.js +10 -8
- package/dist/tier-classify.js +131 -0
- package/dist/token-budget.js +88 -0
- package/dist/ui/onboarding.js +51 -15
- package/dist/utils/cli-utils.js +7 -2
- package/dist/utils/design-taste.js +108 -0
- package/dist/utils/output-compress.js +143 -0
- package/dist/vibecoding-index.js +126 -0
- package/package.json +20 -6
- package/public/dashboard/app.js +52 -1
- package/scripts/build-skills-lock.mjs +88 -0
- package/scripts/build-skills.mjs +187 -28
- package/scripts/compress-skill.mjs +73 -0
- package/scripts/deprecate-skill.mjs +72 -0
- package/scripts/install.sh +170 -0
- package/scripts/mcp-bridge.js +2 -2
- package/scripts/postinstall.js +53 -335
- package/scripts/update-changelog.sh +88 -0
- package/scripts/validate-skills.mjs +101 -4
- package/skills/CLAUDE.md +0 -5
- package/skills/_shared/SKILL_TEMPLATE.md +62 -0
- package/skills/_shared/helpers.md +2 -8
- package/skills/cm-autopilot/scripts/autopilot.py +19 -2
- package/skills/cm-brainstorm-idea/SKILL.md +9 -0
- package/skills/cm-browse/SKILL.md +6 -0
- package/skills/cm-clean-code/SKILL.md +20 -0
- package/skills/cm-code-review/SKILL.md +21 -0
- package/skills/cm-codeintell/SKILL.md +9 -0
- package/skills/cm-conductor-worktrees/SKILL.archive.md +28 -0
- package/skills/cm-conductor-worktrees/SKILL.md +20 -18
- package/skills/cm-continuity/SKILL.md +41 -33
- package/skills/cm-dashboard/SKILL.archive.md +15 -0
- package/skills/cm-dashboard/SKILL.md +20 -9
- package/skills/cm-dashboard/ui/app.js +9 -1
- package/skills/cm-debugging/SKILL.md +9 -0
- package/skills/cm-design-studio/SKILL.archive.md +34 -0
- package/skills/cm-design-studio/SKILL.md +20 -24
- package/skills/cm-design-system/SKILL.md +1 -0
- package/skills/cm-ecosystem-roadmap/SKILL.md +4 -0
- package/skills/cm-engineering-meta/SKILL.archive.md +73 -0
- package/skills/cm-engineering-meta/SKILL.md +19 -62
- package/skills/cm-execution/SKILL.md +98 -0
- package/skills/cm-git-worktrees/SKILL.archive.md +157 -0
- package/skills/cm-git-worktrees/SKILL.md +15 -146
- package/skills/cm-guardian-runtime/SKILL.md +5 -1
- package/skills/cm-identity-guard/SKILL.md +8 -0
- package/skills/cm-mcp-engineering/SKILL.md +4 -0
- package/skills/cm-planning/SKILL.md +63 -92
- package/skills/cm-post-deploy-canary/SKILL.archive.md +22 -0
- package/skills/cm-post-deploy-canary/SKILL.md +20 -12
- package/skills/cm-project-bootstrap/SKILL.md +11 -0
- package/skills/cm-qa-visual-cli/SKILL.archive.md +22 -0
- package/skills/cm-qa-visual-cli/SKILL.md +19 -11
- package/skills/cm-quality-gate/SKILL.md +38 -0
- package/skills/cm-retro-cli/SKILL.md +4 -0
- package/skills/cm-safe-deploy/SKILL.md +9 -0
- package/skills/cm-second-opinion-cli/SKILL.archive.md +23 -0
- package/skills/cm-second-opinion-cli/SKILL.md +20 -13
- package/skills/cm-secret-shield/SKILL.archive.md +580 -0
- package/skills/cm-secret-shield/SKILL.md +15 -569
- package/skills/cm-security-gate/SKILL.archive.md +239 -0
- package/skills/cm-security-gate/SKILL.md +16 -228
- package/skills/cm-skill-chain/SKILL.md +25 -4
- package/skills/cm-skill-evolution/SKILL.md +83 -0
- package/skills/cm-skill-health/SKILL.archive.md +83 -0
- package/skills/cm-skill-health/SKILL.md +26 -0
- package/skills/cm-skill-index/SKILL.md +19 -3
- package/skills/cm-skill-mastery/SKILL.archive.md +156 -0
- package/skills/cm-skill-mastery/SKILL.md +16 -146
- package/skills/cm-skill-search/SKILL.archive.md +49 -0
- package/skills/cm-skill-search/SKILL.md +26 -0
- package/skills/cm-skill-share/SKILL.archive.md +58 -0
- package/skills/cm-skill-share/SKILL.md +26 -0
- package/skills/cm-sprint-bus/SKILL.md +13 -0
- package/skills/cm-start/SKILL.md +17 -10
- package/skills/cm-tdd/SKILL.md +21 -2
- package/skills/cm-terminal/SKILL.md +15 -0
- package/skills/cm-test-gate/SKILL.archive.md +245 -0
- package/skills/cm-test-gate/SKILL.md +15 -234
- package/skills/cm-ui-preview/SKILL.archive.md +153 -0
- package/skills/cm-ui-preview/SKILL.md +16 -143
- package/skills/cm-ux-master/cli/uxmaster/commands/mcp.py +1 -1
- package/skills/cm-ux-master/mcp/mcp-config.json +1 -1
- package/skills/cm-ux-master/mcp/server.py +2 -2
- package/skills/profiles/design.txt +1 -1
- package/skills/profiles/full.txt +4 -10
- package/skills/profiles/growth.txt +8 -8
- package/skills/profiles/knowledge.txt +1 -1
- package/skills/profiles/top35.json +41 -0
- package/adapters/antigravity.js +0 -15
- package/adapters/claude-code.js +0 -17
- package/adapters/cursor.js +0 -16
- package/install.sh +0 -1125
- package/scripts/viking-demo.ts +0 -105
- package/skills/cm-ads-tracker/SKILL.md +0 -401
- package/skills/cm-ads-tracker/evals/evals.json +0 -55
- package/skills/cm-ads-tracker/references/gtm-architecture.md +0 -321
- package/skills/cm-ads-tracker/references/industry-events.md +0 -294
- package/skills/cm-ads-tracker/references/platforms-api.md +0 -238
- package/skills/cm-ads-tracker/templates/capi-payload.md +0 -79
- package/skills/cm-ads-tracker/templates/datalayer-push.js +0 -104
- package/skills/cm-ads-tracker/templates/gtm-variables.js +0 -56
- package/skills/cm-auto-publisher/SKILL.md +0 -81
- package/skills/cm-booking-calendar/SKILL.md +0 -521
- package/skills/cm-booking-calendar/references/industry-patterns.md +0 -527
- package/skills/cm-booking-calendar/templates/booking-form.css +0 -626
- package/skills/cm-booking-calendar/templates/booking-form.html +0 -477
- package/skills/cm-booking-calendar/templates/calendar-engine.js +0 -419
- package/skills/cm-booking-calendar/templates/calendar-export.js +0 -395
- package/skills/cm-booking-calendar/templates/reminder-config.js +0 -629
- package/skills/cm-content-factory/.content-factory-state.json +0 -132
- package/skills/cm-content-factory/.git 2/logs/refs/heads/main +0 -1
- package/skills/cm-content-factory/.git 2/logs/refs/remotes/origin/main +0 -1
- package/skills/cm-content-factory/.git 2/objects/02/fb0956734b5f8ba3f918b7defd04a89cfe0076 +0 -0
- package/skills/cm-content-factory/.git 2/objects/08/1e129d75dc6feac6c02037272e6bd1a04e3324 +0 -0
- package/skills/cm-content-factory/.git 2/objects/0c/5393416f3c5e01c9a655a802bff0dd52f76f0a +0 -0
- package/skills/cm-content-factory/.git 2/objects/10/0b9be46978a946a77188f68be725098a122001 +0 -0
- package/skills/cm-content-factory/.git 2/objects/10/cf041167fc9843610eb3d90259ef3396315fdc +0 -0
- package/skills/cm-content-factory/.git 2/objects/12/5e19538dd6e1338ffe74f6c4c165b00435bf48 +0 -0
- package/skills/cm-content-factory/.git 2/objects/16/a9b9d0088d5c1347628b45a2620b479d8ad57c +0 -0
- package/skills/cm-content-factory/.git 2/objects/17/8c2a9ef93c33ae4eec9d58e82321f9229843a1 +0 -0
- package/skills/cm-content-factory/.git 2/objects/25/397ae41d09104d763bdcac2695209d85cdea89 +0 -0
- package/skills/cm-content-factory/.git 2/objects/2f/a836b7947f2d458e1f639788bf4bb0983a3305 +0 -0
- package/skills/cm-content-factory/.git 2/objects/3a/baaaf0a1c0909c0828335791557125fba911e0 +0 -0
- package/skills/cm-content-factory/.git 2/objects/42/2924221b81f5ce3c4e4daac9a64a24f9b01f9a +0 -0
- package/skills/cm-content-factory/.git 2/objects/42/ec0ce707447dc11446a34c9995fb8533801731 +0 -0
- package/skills/cm-content-factory/.git 2/objects/46/e43ce92866d56ce74b1d750db307cfe6154a15 +0 -0
- package/skills/cm-content-factory/.git 2/objects/48/5e41b633c63f55b8277bcc59f44f67681f671a +0 -0
- package/skills/cm-content-factory/.git 2/objects/49/49c596a3a89fa240642acd95dd3258e261eb09 +0 -0
- package/skills/cm-content-factory/.git 2/objects/50/9d42d8412ef8eaf7f7e138476bac2e4d10ce60 +0 -0
- package/skills/cm-content-factory/.git 2/objects/55/0c8c389d981b463ef849aeb792d8be3ccb6ec8 +0 -0
- package/skills/cm-content-factory/.git 2/objects/5d/82d3b18410cdda3ace3677436f0cb599dbe2d2 +0 -0
- package/skills/cm-content-factory/.git 2/objects/60/0617c58e871a38b33bf29e282d132bb3c381ad +0 -0
- package/skills/cm-content-factory/.git 2/objects/6a/8369a99c687b7245c92ffaf0e0f0dab9014504 +0 -0
- package/skills/cm-content-factory/.git 2/objects/79/bea435d40ab531c1aaf6be0432c6a5b7aaed21 +0 -0
- package/skills/cm-content-factory/.git 2/objects/7e/5ebd79251c2f14e4aceb86c74b6b6daae6b500 +0 -0
- package/skills/cm-content-factory/.git 2/objects/81/98a822a60178d6d5023ddb3e222cddf048742e +0 -0
- package/skills/cm-content-factory/.git 2/objects/86/0a0e1943dfe53411d2e499a1f16f46a96ef758 +0 -0
- package/skills/cm-content-factory/.git 2/objects/86/971fb55fdc081fdbae52376f0f13e57a4e9b04 +0 -0
- package/skills/cm-content-factory/.git 2/objects/88/b89dd609a0a03f8d4fe8bfde20d5b8fc1d326d +0 -0
- package/skills/cm-content-factory/.git 2/objects/90/8737edb6b7809e32cc01590b4e08ba42a9d40d +0 -0
- package/skills/cm-content-factory/.git 2/objects/93/d5a8a9a7d4fb7f11491cb596a6880528725118 +0 -0
- package/skills/cm-content-factory/.git 2/objects/98/46a2ab81d0c3b3eb00ef88fc56989aa7e9f316 +0 -0
- package/skills/cm-content-factory/.git 2/objects/9b/d8dd1e49cf274eaf9c555f3ab39dce7af5715e +0 -0
- package/skills/cm-content-factory/.git 2/objects/a1/13329fb0cec96ae78b222d33a24c3b5bc7fa1f +0 -0
- package/skills/cm-content-factory/.git 2/objects/a9/e6effe626e8a3aea3a8fc3364b492191c6e7d0 +0 -0
- package/skills/cm-content-factory/.git 2/objects/ad/6de7e48d9782cca9353d1ff0aa1aab7fe1df85 +0 -0
- package/skills/cm-content-factory/.git 2/objects/af/54ae316f771ff692e299ffcd8bf2f06b413b59 +0 -0
- package/skills/cm-content-factory/.git 2/objects/b0/4cb8b0b00dad633e731c1472161419e738d674 +0 -0
- package/skills/cm-content-factory/.git 2/objects/b3/094abb0b9ed46419b269e4a4e36a459690e3b0 +0 -0
- package/skills/cm-content-factory/.git 2/objects/b9/435c5d4baac2cfc5c83009ddd27b46b60db5f1 +0 -0
- package/skills/cm-content-factory/.git 2/objects/ba/5da17dbaec5ec2dcfdfd126aead518d1171d5c +0 -0
- package/skills/cm-content-factory/.git 2/objects/c0/bf58703aa258ba5dd63083bebaec8f223d844c +0 -0
- package/skills/cm-content-factory/.git 2/objects/c4/701a34edf1fc1bad58ccc57bd03f9426acb59a +0 -0
- package/skills/cm-content-factory/.git 2/objects/c7/5ccce9a4e5cc74d9b3174550cf6d993ca43638 +0 -0
- package/skills/cm-content-factory/.git 2/objects/c7/710d59b5a35b0f1f0a0399386643a0bd94c929 +0 -0
- package/skills/cm-content-factory/.git 2/objects/d1/fe58237112e953e5fec52da22cf38e08be3df9 +0 -5
- package/skills/cm-content-factory/.git 2/objects/d2/2bbe9fd2f74c95bc5583e803f5e435f1e2cd86 +0 -0
- package/skills/cm-content-factory/.git 2/objects/d7/e72852ea2bff74581dbf247d400120086229f4 +0 -0
- package/skills/cm-content-factory/.git 2/objects/d8/d4c3b5553e4fd72807e1d4b49ef07d9ef3ac35 +0 -0
- package/skills/cm-content-factory/.git 2/objects/dc/75050c2876f6a02ae2a53a3c886f395b622977 +0 -0
- package/skills/cm-content-factory/.git 2/objects/ee/e8546f95acec500187c08a28a8b9ee02db0dec +0 -0
- package/skills/cm-content-factory/.git 2/objects/ef/263c059208b416c2146434f10cb2b9fabcba16 +0 -0
- package/skills/cm-content-factory/.git 2/objects/f3/ae597e84d9a59b88acd21c99bde2eaf686d785 +0 -0
- package/skills/cm-content-factory/.git 2/objects/f3/f6f5673c821d3d8e76fa267a9e882e7a5387ea +0 -0
- package/skills/cm-content-factory/.git 2/objects/f9/6e6d0ad02624dd11d5848594d056caef7a5e8b +0 -0
- package/skills/cm-content-factory/.git 2/objects/ff/278988fc1edf0db3abcf18de795f4cc0b4f3e1 +0 -0
- package/skills/cm-content-factory/.git 2/refs/heads/main +0 -1
- package/skills/cm-content-factory/.git 2/refs/remotes/origin/main +0 -1
- package/skills/cm-content-factory/.pytest_cache 2/v/cache/nodeids +0 -76
- package/skills/cm-content-factory/.pytest_cache 2/v/cache/stepwise +0 -1
- package/skills/cm-content-factory/AGENTS.md +0 -61
- package/skills/cm-content-factory/CLAUDE.md +0 -63
- package/skills/cm-content-factory/CURSOR.md +0 -43
- package/skills/cm-content-factory/Content Factory.zip +0 -0
- package/skills/cm-content-factory/SKILL.md +0 -416
- package/skills/cm-content-factory/cf +0 -313
- package/skills/cm-content-factory/config.schema.json +0 -397
- package/skills/cm-content-factory/dashboard/app.js +0 -556
- package/skills/cm-content-factory/dashboard/index.html +0 -397
- package/skills/cm-content-factory/dashboard/style.css +0 -1211
- package/skills/cm-content-factory/examples/01-real-estate.config.json +0 -146
- package/skills/cm-content-factory/examples/02-personal-finance.config.json +0 -146
- package/skills/cm-content-factory/examples/03-health-wellness.config.json +0 -147
- package/skills/cm-content-factory/examples/04-saas-software.config.json +0 -147
- package/skills/cm-content-factory/examples/05-legal-services.config.json +0 -147
- package/skills/cm-content-factory/examples/06-insurance.config.json +0 -146
- package/skills/cm-content-factory/examples/07-ecommerce-dropship.config.json +0 -146
- package/skills/cm-content-factory/examples/08-online-education.config.json +0 -147
- package/skills/cm-content-factory/examples/09-crypto-defi.config.json +0 -147
- package/skills/cm-content-factory/examples/10-beauty-skincare.config.json +0 -147
- package/skills/cm-content-factory/examples/11-home-services.config.json +0 -146
- package/skills/cm-content-factory/examples/12-dental-clinic.config.json +0 -147
- package/skills/cm-content-factory/examples/13-pet-care.config.json +0 -147
- package/skills/cm-content-factory/examples/14-travel-hospitality.config.json +0 -147
- package/skills/cm-content-factory/examples/15-ai-automation.config.json +0 -147
- package/skills/cm-content-factory/examples/16-wedding-events.config.json +0 -147
- package/skills/cm-content-factory/examples/17-fitness-coaching.config.json +0 -148
- package/skills/cm-content-factory/examples/18-cybersecurity.config.json +0 -147
- package/skills/cm-content-factory/examples/19-food-restaurant.config.json +0 -148
- package/skills/cm-content-factory/examples/20-solar-energy.config.json +0 -147
- package/skills/cm-content-factory/examples/fitness-blog.config.json +0 -116
- package/skills/cm-content-factory/examples/tech-blog.config.json +0 -107
- package/skills/cm-content-factory/extensions/EXTENSION_GUIDE.md +0 -72
- package/skills/cm-content-factory/extensions/hooks.py +0 -126
- package/skills/cm-content-factory/extensions/openclaw_adapter.py +0 -132
- package/skills/cm-content-factory/landing/docs/content/changelog.md +0 -36
- package/skills/cm-content-factory/landing/docs/content/deployment.md +0 -46
- package/skills/cm-content-factory/landing/docs/content/execution-flow.md +0 -67
- package/skills/cm-content-factory/landing/docs/content/openspace.md +0 -27
- package/skills/cm-content-factory/landing/docs/content/openviking.md +0 -33
- package/skills/cm-content-factory/landing/docs/content/use-cases.md +0 -26
- package/skills/cm-content-factory/landing/docs/content/v5-intro.md +0 -28
- package/skills/cm-content-factory/landing/docs/index.html +0 -240
- package/skills/cm-content-factory/landing/index.html +0 -680
- package/skills/cm-content-factory/landing/script.js +0 -143
- package/skills/cm-content-factory/landing/style.css +0 -1216
- package/skills/cm-content-factory/landing/translations.js +0 -508
- package/skills/cm-content-factory/logs/events.jsonl +0 -11
- package/skills/cm-content-factory/profiles/_template.profile.json +0 -231
- package/skills/cm-content-factory/profiles/finance.profile.json +0 -278
- package/skills/cm-content-factory/profiles/legal.profile.json +0 -263
- package/skills/cm-content-factory/profiles/medical-research.profile.json +0 -321
- package/skills/cm-content-factory/profiles/technology.profile.json +0 -275
- package/skills/cm-content-factory/scripts/agent_dispatcher.py +0 -266
- package/skills/cm-content-factory/scripts/audit.py +0 -106
- package/skills/cm-content-factory/scripts/dashboard_server.py +0 -225
- package/skills/cm-content-factory/scripts/deploy.py +0 -146
- package/skills/cm-content-factory/scripts/extract.py +0 -132
- package/skills/cm-content-factory/scripts/landing_generator.py +0 -459
- package/skills/cm-content-factory/scripts/memory.py +0 -521
- package/skills/cm-content-factory/scripts/monetize.py +0 -239
- package/skills/cm-content-factory/scripts/pipeline.py +0 -357
- package/skills/cm-content-factory/scripts/plan.py +0 -163
- package/skills/cm-content-factory/scripts/publish.py +0 -145
- package/skills/cm-content-factory/scripts/research.py +0 -337
- package/skills/cm-content-factory/scripts/scaffold.py +0 -464
- package/skills/cm-content-factory/scripts/scoreboard.py +0 -336
- package/skills/cm-content-factory/scripts/seo.py +0 -90
- package/skills/cm-content-factory/scripts/state_manager.py +0 -320
- package/skills/cm-content-factory/scripts/token_manager.py +0 -268
- package/skills/cm-content-factory/scripts/validate.py +0 -221
- package/skills/cm-content-factory/scripts/wizard.py +0 -329
- package/skills/cm-content-factory/scripts/write.py +0 -93
- package/skills/cm-content-factory/sites/docs-site/src/assets/houston.webp +0 -0
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/architecture.md +0 -90
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/data-flow.md +0 -54
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/deployment.md +0 -38
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/flows/index.md +0 -65
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/flows/lc-content-lifecycle.md +0 -48
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/flows/seq-write-mode.md +0 -39
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/flows/uj-first-batch.md +0 -42
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/flows/wf-content-pipeline.md +0 -51
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/flows/wf-learning-cycle.md +0 -52
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/getting-started/configuration.md +0 -86
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/getting-started/installation.md +0 -80
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/getting-started/intro.md +0 -58
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/index.md +0 -102
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/jtbd/index.md +0 -45
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/jtbd/optimize-seo.md +0 -29
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/jtbd/scale-content-production.md +0 -55
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/jtbd/standardize-quality.md +0 -29
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/personas/buyer-cmo-huong.md +0 -41
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/personas/buyer-content-lead-khoa.md +0 -40
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/personas/index.md +0 -56
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/personas/user-content-manager-lan.md +0 -46
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/personas/user-seo-minh.md +0 -45
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/personas/user-writer-tu.md +0 -45
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/sop/content-pipeline.md +0 -108
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/sop/index.md +0 -22
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/sop/memory-system.md +0 -52
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/sop/seo-optimization.md +0 -58
- package/skills/cm-content-factory/sites/docs-site/src/content/docs/sop/troubleshooting-guide.md +0 -92
- package/skills/cm-content-factory/sites/docs-site/src/styles/custom.css +0 -575
- package/skills/cm-content-factory/tests/conftest.py +0 -66
- package/skills/cm-content-factory/tests/test_agent_dispatcher.py +0 -125
- package/skills/cm-content-factory/tests/test_memory.py +0 -128
- package/skills/cm-content-factory/tests/test_pipeline.py +0 -107
- package/skills/cm-content-factory/tests/test_research.py +0 -56
- package/skills/cm-content-factory/tests/test_state_manager.py +0 -131
- package/skills/cm-content-factory/tests/test_token_manager.py +0 -110
- package/skills/cm-content-factory/tests/test_wizard.py +0 -121
- package/skills/cm-cro-methodology/SKILL.md +0 -290
- package/skills/cm-cro-methodology/references/COPYWRITING.md +0 -178
- package/skills/cm-cro-methodology/references/OBJECTIONS.md +0 -135
- package/skills/cm-cro-methodology/references/PERSUASION.md +0 -158
- package/skills/cm-cro-methodology/references/RESEARCH.md +0 -220
- package/skills/cm-cro-methodology/references/funnel-analysis.md +0 -365
- package/skills/cm-cro-methodology/references/testing-methodology.md +0 -330
- package/skills/cm-google-form/SKILL.md +0 -266
- package/skills/cm-google-form/templates/apps-script.js +0 -55
- package/skills/cm-google-form/templates/form-markup.html +0 -110
- package/skills/cm-google-form/templates/form-submit.js +0 -201
- package/skills/cm-google-form/templates/toast.css +0 -152
- package/skills/cm-growth-hacking/SKILL.md +0 -282
- package/skills/cm-growth-hacking/bottom-sheet-engine.md +0 -261
- package/skills/cm-growth-hacking/calendar-integration.md +0 -264
- package/skills/cm-growth-hacking/references/engagement-patterns.md +0 -346
- package/skills/cm-growth-hacking/templates/bottom-sheet.css +0 -528
- package/skills/cm-growth-hacking/templates/bottom-sheet.js +0 -269
- package/skills/cm-growth-hacking/templates/calendar-cta.js +0 -213
- package/skills/cm-growth-hacking/templates/tracking-events.js +0 -211
- package/skills/cm-growth-hacking/templates/trigger-manager.js +0 -254
- package/skills/cm-growth-hacking/tracking-events.md +0 -246
- package/skills/cm-growth-hacking/trigger-system.md +0 -342
- package/skills/cm-jtbd/SKILL.md +0 -98
- package/skills/cm-notebooklm/SKILL.md +0 -156
- package/skills/cm-notebooklm/references/command_reference.md +0 -94
- package/skills/cm-notebooklm/references/workflows.md +0 -60
- package/skills/cm-notebooklm/resources/knowledge_sources.md +0 -106
- package/skills/cm-notebooklm/scripts/brain-sync.sh +0 -453
- package/skills/cm-notebooklm/scripts/graduate_wisdom.py +0 -101
- package/skills/cm-readit/SKILL.md +0 -289
- package/skills/cm-readit/audio-player.md +0 -206
- package/skills/cm-readit/examples/blog-reader.js +0 -352
- package/skills/cm-readit/examples/voice-cro.js +0 -390
- package/skills/cm-readit/tts-engine.md +0 -262
- package/skills/cm-readit/ui-patterns.md +0 -362
- package/skills/cm-readit/voice-cro.md +0 -223
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createMessageRepo = createMessageRepo;
|
|
4
|
+
// ─── Repo ───────────────────────────────────────────────────────────────────
|
|
5
|
+
function createMessageRepo(db) {
|
|
6
|
+
const insert = db.prepare(`
|
|
7
|
+
INSERT INTO task_messages (task_id, type, payload, created_at)
|
|
8
|
+
VALUES (@task_id, @type, @payload, @created_at)
|
|
9
|
+
`);
|
|
10
|
+
const getByTask = db.prepare('SELECT * FROM task_messages WHERE task_id = ? ORDER BY id ASC LIMIT ? OFFSET ?');
|
|
11
|
+
const getById = db.prepare('SELECT * FROM task_messages WHERE id = ?');
|
|
12
|
+
const countByTask = db.prepare('SELECT COUNT(*) as count FROM task_messages WHERE task_id = ?');
|
|
13
|
+
return {
|
|
14
|
+
create(input) {
|
|
15
|
+
const now = new Date().toISOString();
|
|
16
|
+
const payloadStr = typeof input.payload === 'string'
|
|
17
|
+
? input.payload
|
|
18
|
+
: JSON.stringify(input.payload);
|
|
19
|
+
const result = insert.run({
|
|
20
|
+
task_id: input.task_id,
|
|
21
|
+
type: input.type,
|
|
22
|
+
payload: payloadStr,
|
|
23
|
+
created_at: now,
|
|
24
|
+
});
|
|
25
|
+
return getById.get(result.lastInsertRowid);
|
|
26
|
+
},
|
|
27
|
+
getByTask(taskId, limit = 100, offset = 0) {
|
|
28
|
+
return getByTask.all(taskId, limit, offset);
|
|
29
|
+
},
|
|
30
|
+
getById(id) {
|
|
31
|
+
var _a;
|
|
32
|
+
return (_a = getById.get(id)) !== null && _a !== void 0 ? _a : null;
|
|
33
|
+
},
|
|
34
|
+
countByTask(taskId) {
|
|
35
|
+
const row = countByTask.get(taskId);
|
|
36
|
+
return row.count;
|
|
37
|
+
},
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createProjectRepo = createProjectRepo;
|
|
4
|
+
// ─── Repo ───────────────────────────────────────────────────────────────────
|
|
5
|
+
function createProjectRepo(db) {
|
|
6
|
+
const insert = db.prepare(`
|
|
7
|
+
INSERT INTO projects (id, name, path, agents, created_at)
|
|
8
|
+
VALUES (@id, @name, @path, @agents, @created_at)
|
|
9
|
+
`);
|
|
10
|
+
const getById = db.prepare('SELECT * FROM projects WHERE id = ?');
|
|
11
|
+
const getAll = db.prepare('SELECT * FROM projects ORDER BY created_at DESC');
|
|
12
|
+
const deleteById = db.prepare('DELETE FROM projects WHERE id = ?');
|
|
13
|
+
const update = db.prepare(`
|
|
14
|
+
UPDATE projects SET name = @name, path = @path, agents = @agents
|
|
15
|
+
WHERE id = @id
|
|
16
|
+
`);
|
|
17
|
+
return {
|
|
18
|
+
create(input) {
|
|
19
|
+
var _a;
|
|
20
|
+
const now = new Date().toISOString();
|
|
21
|
+
const row = {
|
|
22
|
+
id: input.id,
|
|
23
|
+
name: input.name,
|
|
24
|
+
path: (_a = input.path) !== null && _a !== void 0 ? _a : null,
|
|
25
|
+
agents: input.agents ? JSON.stringify(input.agents) : null,
|
|
26
|
+
created_at: now,
|
|
27
|
+
};
|
|
28
|
+
insert.run(row);
|
|
29
|
+
return row;
|
|
30
|
+
},
|
|
31
|
+
getById(id) {
|
|
32
|
+
var _a;
|
|
33
|
+
return (_a = getById.get(id)) !== null && _a !== void 0 ? _a : null;
|
|
34
|
+
},
|
|
35
|
+
getAll() {
|
|
36
|
+
return getAll.all();
|
|
37
|
+
},
|
|
38
|
+
update(id, fields) {
|
|
39
|
+
var _a, _b;
|
|
40
|
+
const existing = getById.get(id);
|
|
41
|
+
if (!existing)
|
|
42
|
+
return null;
|
|
43
|
+
update.run({
|
|
44
|
+
id,
|
|
45
|
+
name: (_a = fields.name) !== null && _a !== void 0 ? _a : existing.name,
|
|
46
|
+
path: (_b = fields.path) !== null && _b !== void 0 ? _b : existing.path,
|
|
47
|
+
agents: fields.agents ? JSON.stringify(fields.agents) : existing.agents,
|
|
48
|
+
});
|
|
49
|
+
return getById.get(id);
|
|
50
|
+
},
|
|
51
|
+
delete(id) {
|
|
52
|
+
const result = deleteById.run(id);
|
|
53
|
+
return result.changes > 0;
|
|
54
|
+
},
|
|
55
|
+
};
|
|
56
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isValidTransition = isValidTransition;
|
|
4
|
+
exports.createTaskRepo = createTaskRepo;
|
|
5
|
+
// ─── Valid transitions ──────────────────────────────────────────────────────
|
|
6
|
+
const VALID_TRANSITIONS = {
|
|
7
|
+
backlog: ['queued', 'cancelled'],
|
|
8
|
+
queued: ['claimed', 'cancelled'],
|
|
9
|
+
claimed: ['running', 'cancelled'],
|
|
10
|
+
running: ['review', 'failed', 'timeout', 'cancelled'],
|
|
11
|
+
review: ['done', 'running', 'failed'],
|
|
12
|
+
done: [],
|
|
13
|
+
failed: ['queued', 'cancelled'],
|
|
14
|
+
cancelled: ['backlog'],
|
|
15
|
+
timeout: ['queued', 'cancelled'],
|
|
16
|
+
};
|
|
17
|
+
function isValidTransition(from, to) {
|
|
18
|
+
var _a, _b;
|
|
19
|
+
return (_b = (_a = VALID_TRANSITIONS[from]) === null || _a === void 0 ? void 0 : _a.includes(to)) !== null && _b !== void 0 ? _b : false;
|
|
20
|
+
}
|
|
21
|
+
// ─── Repo ───────────────────────────────────────────────────────────────────
|
|
22
|
+
function createTaskRepo(db) {
|
|
23
|
+
const insert = db.prepare(`
|
|
24
|
+
INSERT INTO tasks
|
|
25
|
+
(id, project_id, title, description, assignee_type, assignee_id,
|
|
26
|
+
status, priority, ord, pinned_session_id, prior_session_id,
|
|
27
|
+
prior_workdir, current_workdir, failure_reason, error_message,
|
|
28
|
+
conversation_id, created_at, updated_at, started_at, finished_at)
|
|
29
|
+
VALUES
|
|
30
|
+
(@id, @project_id, @title, @description, @assignee_type, @assignee_id,
|
|
31
|
+
@status, @priority, @ord, @pinned_session_id, @prior_session_id,
|
|
32
|
+
@prior_workdir, @current_workdir, @failure_reason, @error_message,
|
|
33
|
+
@conversation_id, @created_at, @updated_at, @started_at, @finished_at)
|
|
34
|
+
`);
|
|
35
|
+
const getById = db.prepare('SELECT * FROM tasks WHERE id = ?');
|
|
36
|
+
const getByProject = db.prepare('SELECT * FROM tasks WHERE project_id = ? ORDER BY ord ASC, created_at DESC');
|
|
37
|
+
const getByProjectAndStatus = db.prepare('SELECT * FROM tasks WHERE project_id = ? AND status = ? ORDER BY ord ASC, created_at DESC');
|
|
38
|
+
const getByConversationId = db.prepare('SELECT * FROM tasks WHERE conversation_id = ?');
|
|
39
|
+
const updateStatus = db.prepare(`
|
|
40
|
+
UPDATE tasks SET status = @status, updated_at = @updated_at,
|
|
41
|
+
started_at = CASE WHEN @status = 'running' THEN @updated_at ELSE started_at END,
|
|
42
|
+
finished_at = CASE WHEN @status IN ('done','failed','cancelled','timeout') THEN @updated_at ELSE finished_at END
|
|
43
|
+
WHERE id = @id
|
|
44
|
+
`);
|
|
45
|
+
const updateFields = db.prepare(`
|
|
46
|
+
UPDATE tasks SET
|
|
47
|
+
title = COALESCE(@title, title),
|
|
48
|
+
description = COALESCE(@description, description),
|
|
49
|
+
assignee_type = COALESCE(@assignee_type, assignee_type),
|
|
50
|
+
assignee_id = COALESCE(@assignee_id, assignee_id),
|
|
51
|
+
priority = COALESCE(@priority, priority),
|
|
52
|
+
ord = COALESCE(@ord, ord),
|
|
53
|
+
current_workdir = COALESCE(@current_workdir, current_workdir),
|
|
54
|
+
failure_reason = COALESCE(@failure_reason, failure_reason),
|
|
55
|
+
error_message = COALESCE(@error_message, error_message),
|
|
56
|
+
updated_at = @updated_at
|
|
57
|
+
WHERE id = @id
|
|
58
|
+
`);
|
|
59
|
+
const deleteById = db.prepare('DELETE FROM tasks WHERE id = ?');
|
|
60
|
+
const getByStatus = db.prepare('SELECT * FROM tasks WHERE status = ? ORDER BY updated_at DESC');
|
|
61
|
+
return {
|
|
62
|
+
create(input) {
|
|
63
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
64
|
+
const now = new Date().toISOString();
|
|
65
|
+
const row = {
|
|
66
|
+
id: input.id,
|
|
67
|
+
project_id: input.project_id,
|
|
68
|
+
title: input.title,
|
|
69
|
+
description: (_a = input.description) !== null && _a !== void 0 ? _a : null,
|
|
70
|
+
assignee_type: (_b = input.assignee_type) !== null && _b !== void 0 ? _b : null,
|
|
71
|
+
assignee_id: (_c = input.assignee_id) !== null && _c !== void 0 ? _c : null,
|
|
72
|
+
status: (_d = input.status) !== null && _d !== void 0 ? _d : 'backlog',
|
|
73
|
+
priority: (_e = input.priority) !== null && _e !== void 0 ? _e : null,
|
|
74
|
+
ord: (_f = input.ord) !== null && _f !== void 0 ? _f : 0,
|
|
75
|
+
pinned_session_id: null,
|
|
76
|
+
prior_session_id: null,
|
|
77
|
+
prior_workdir: null,
|
|
78
|
+
current_workdir: null,
|
|
79
|
+
failure_reason: null,
|
|
80
|
+
error_message: null,
|
|
81
|
+
conversation_id: (_g = input.conversation_id) !== null && _g !== void 0 ? _g : null,
|
|
82
|
+
created_at: now,
|
|
83
|
+
updated_at: now,
|
|
84
|
+
started_at: null,
|
|
85
|
+
finished_at: null,
|
|
86
|
+
};
|
|
87
|
+
insert.run(row);
|
|
88
|
+
return row;
|
|
89
|
+
},
|
|
90
|
+
getById(id) {
|
|
91
|
+
var _a;
|
|
92
|
+
return (_a = getById.get(id)) !== null && _a !== void 0 ? _a : null;
|
|
93
|
+
},
|
|
94
|
+
getByProject(projectId) {
|
|
95
|
+
return getByProject.all(projectId);
|
|
96
|
+
},
|
|
97
|
+
getByProjectAndStatus(projectId, status) {
|
|
98
|
+
return getByProjectAndStatus.all(projectId, status);
|
|
99
|
+
},
|
|
100
|
+
getByConversationId(conversationId) {
|
|
101
|
+
var _a;
|
|
102
|
+
return (_a = getByConversationId.get(conversationId)) !== null && _a !== void 0 ? _a : null;
|
|
103
|
+
},
|
|
104
|
+
getByStatus(status) {
|
|
105
|
+
return getByStatus.all(status);
|
|
106
|
+
},
|
|
107
|
+
transitionTo(id, newStatus) {
|
|
108
|
+
const task = getById.get(id);
|
|
109
|
+
if (!task)
|
|
110
|
+
return null;
|
|
111
|
+
if (!isValidTransition(task.status, newStatus))
|
|
112
|
+
return null;
|
|
113
|
+
const now = new Date().toISOString();
|
|
114
|
+
updateStatus.run({ id, status: newStatus, updated_at: now });
|
|
115
|
+
return getById.get(id);
|
|
116
|
+
},
|
|
117
|
+
update(id, fields) {
|
|
118
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
119
|
+
const existing = getById.get(id);
|
|
120
|
+
if (!existing)
|
|
121
|
+
return null;
|
|
122
|
+
updateFields.run({
|
|
123
|
+
id,
|
|
124
|
+
title: (_a = fields.title) !== null && _a !== void 0 ? _a : null,
|
|
125
|
+
description: (_b = fields.description) !== null && _b !== void 0 ? _b : null,
|
|
126
|
+
assignee_type: (_c = fields.assignee_type) !== null && _c !== void 0 ? _c : null,
|
|
127
|
+
assignee_id: (_d = fields.assignee_id) !== null && _d !== void 0 ? _d : null,
|
|
128
|
+
priority: (_e = fields.priority) !== null && _e !== void 0 ? _e : null,
|
|
129
|
+
ord: (_f = fields.ord) !== null && _f !== void 0 ? _f : null,
|
|
130
|
+
current_workdir: (_g = fields.current_workdir) !== null && _g !== void 0 ? _g : null,
|
|
131
|
+
failure_reason: (_h = fields.failure_reason) !== null && _h !== void 0 ? _h : null,
|
|
132
|
+
error_message: (_j = fields.error_message) !== null && _j !== void 0 ? _j : null,
|
|
133
|
+
updated_at: new Date().toISOString(),
|
|
134
|
+
});
|
|
135
|
+
return getById.get(id);
|
|
136
|
+
},
|
|
137
|
+
delete(id) {
|
|
138
|
+
const result = deleteById.run(id);
|
|
139
|
+
return result.changes > 0;
|
|
140
|
+
},
|
|
141
|
+
};
|
|
142
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createProjectService = createProjectService;
|
|
4
|
+
const project_repo_1 = require("../repos/project-repo");
|
|
5
|
+
// ─── Service ────────────────────────────────────────────────────────────────
|
|
6
|
+
function createProjectService(db) {
|
|
7
|
+
const repo = (0, project_repo_1.createProjectRepo)(db);
|
|
8
|
+
// Event stubs — will connect to EventBus in Wave 2D
|
|
9
|
+
const listeners = {};
|
|
10
|
+
return {
|
|
11
|
+
create(input) {
|
|
12
|
+
var _a, _b, _c;
|
|
13
|
+
if (!((_a = input.id) === null || _a === void 0 ? void 0 : _a.trim()))
|
|
14
|
+
throw new Error('Project id is required');
|
|
15
|
+
if (!((_b = input.name) === null || _b === void 0 ? void 0 : _b.trim()))
|
|
16
|
+
throw new Error('Project name is required');
|
|
17
|
+
const existing = repo.getById(input.id);
|
|
18
|
+
if (existing)
|
|
19
|
+
throw new Error(`Project ${input.id} already exists`);
|
|
20
|
+
const project = repo.create(input);
|
|
21
|
+
(_c = listeners.onCreated) === null || _c === void 0 ? void 0 : _c.call(listeners, { project });
|
|
22
|
+
return project;
|
|
23
|
+
},
|
|
24
|
+
getById(id) {
|
|
25
|
+
return repo.getById(id);
|
|
26
|
+
},
|
|
27
|
+
getAll() {
|
|
28
|
+
return repo.getAll();
|
|
29
|
+
},
|
|
30
|
+
update(id, fields) {
|
|
31
|
+
return repo.update(id, fields);
|
|
32
|
+
},
|
|
33
|
+
delete(id) {
|
|
34
|
+
var _a;
|
|
35
|
+
const deleted = repo.delete(id);
|
|
36
|
+
if (deleted) {
|
|
37
|
+
(_a = listeners.onDeleted) === null || _a === void 0 ? void 0 : _a.call(listeners, { projectId: id });
|
|
38
|
+
}
|
|
39
|
+
return deleted;
|
|
40
|
+
},
|
|
41
|
+
// Event registration stubs (Wave 2D)
|
|
42
|
+
onCreated(handler) {
|
|
43
|
+
listeners.onCreated = handler;
|
|
44
|
+
},
|
|
45
|
+
onDeleted(handler) {
|
|
46
|
+
listeners.onDeleted = handler;
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createTaskService = createTaskService;
|
|
4
|
+
const task_repo_1 = require("../repos/task-repo");
|
|
5
|
+
const message_repo_1 = require("../repos/message-repo");
|
|
6
|
+
// ─── Service ────────────────────────────────────────────────────────────────
|
|
7
|
+
function createTaskService(db) {
|
|
8
|
+
const taskRepo = (0, task_repo_1.createTaskRepo)(db);
|
|
9
|
+
const messageRepo = (0, message_repo_1.createMessageRepo)(db);
|
|
10
|
+
// Event stubs — will connect to EventBus in Wave 2D
|
|
11
|
+
const listeners = {};
|
|
12
|
+
return {
|
|
13
|
+
create(input) {
|
|
14
|
+
var _a, _b, _c, _d;
|
|
15
|
+
if (!((_a = input.id) === null || _a === void 0 ? void 0 : _a.trim()))
|
|
16
|
+
throw new Error('Task id is required');
|
|
17
|
+
if (!((_b = input.project_id) === null || _b === void 0 ? void 0 : _b.trim()))
|
|
18
|
+
throw new Error('Task project_id is required');
|
|
19
|
+
if (!((_c = input.title) === null || _c === void 0 ? void 0 : _c.trim()))
|
|
20
|
+
throw new Error('Task title is required');
|
|
21
|
+
const task = taskRepo.create(input);
|
|
22
|
+
(_d = listeners.onCreated) === null || _d === void 0 ? void 0 : _d.call(listeners, { task });
|
|
23
|
+
return task;
|
|
24
|
+
},
|
|
25
|
+
getById(id) {
|
|
26
|
+
return taskRepo.getById(id);
|
|
27
|
+
},
|
|
28
|
+
getByProject(projectId) {
|
|
29
|
+
return taskRepo.getByProject(projectId);
|
|
30
|
+
},
|
|
31
|
+
getByProjectAndStatus(projectId, status) {
|
|
32
|
+
return taskRepo.getByProjectAndStatus(projectId, status);
|
|
33
|
+
},
|
|
34
|
+
getByStatus(status) {
|
|
35
|
+
return taskRepo.getByStatus(status);
|
|
36
|
+
},
|
|
37
|
+
getByConversationId(conversationId) {
|
|
38
|
+
return taskRepo.getByConversationId(conversationId);
|
|
39
|
+
},
|
|
40
|
+
transitionTo(id, newStatus) {
|
|
41
|
+
var _a;
|
|
42
|
+
const task = taskRepo.getById(id);
|
|
43
|
+
if (!task)
|
|
44
|
+
return null;
|
|
45
|
+
if (!(0, task_repo_1.isValidTransition)(task.status, newStatus)) {
|
|
46
|
+
throw new Error(`Invalid transition: ${task.status} → ${newStatus} for task ${id}`);
|
|
47
|
+
}
|
|
48
|
+
const updated = taskRepo.transitionTo(id, newStatus);
|
|
49
|
+
if (updated) {
|
|
50
|
+
(_a = listeners.onTransitioned) === null || _a === void 0 ? void 0 : _a.call(listeners, { task: updated, from: task.status, to: newStatus });
|
|
51
|
+
}
|
|
52
|
+
return updated;
|
|
53
|
+
},
|
|
54
|
+
update(id, fields) {
|
|
55
|
+
var _a;
|
|
56
|
+
const updated = taskRepo.update(id, fields);
|
|
57
|
+
if (updated) {
|
|
58
|
+
(_a = listeners.onUpdated) === null || _a === void 0 ? void 0 : _a.call(listeners, { task: updated });
|
|
59
|
+
}
|
|
60
|
+
return updated;
|
|
61
|
+
},
|
|
62
|
+
delete(id) {
|
|
63
|
+
var _a;
|
|
64
|
+
const task = taskRepo.getById(id);
|
|
65
|
+
if (!task)
|
|
66
|
+
return false;
|
|
67
|
+
const deleted = taskRepo.delete(id);
|
|
68
|
+
if (deleted) {
|
|
69
|
+
(_a = listeners.onDeleted) === null || _a === void 0 ? void 0 : _a.call(listeners, { taskId: id, projectId: task.project_id });
|
|
70
|
+
}
|
|
71
|
+
return deleted;
|
|
72
|
+
},
|
|
73
|
+
// Messages
|
|
74
|
+
addMessage(input) {
|
|
75
|
+
return messageRepo.create(input);
|
|
76
|
+
},
|
|
77
|
+
getMessages(taskId, limit = 100, offset = 0) {
|
|
78
|
+
return messageRepo.getByTask(taskId, limit, offset);
|
|
79
|
+
},
|
|
80
|
+
countMessages(taskId) {
|
|
81
|
+
return messageRepo.countByTask(taskId);
|
|
82
|
+
},
|
|
83
|
+
// Event registration stubs (Wave 2D)
|
|
84
|
+
onCreated(handler) {
|
|
85
|
+
listeners.onCreated = handler;
|
|
86
|
+
},
|
|
87
|
+
onTransitioned(handler) {
|
|
88
|
+
listeners.onTransitioned = handler;
|
|
89
|
+
},
|
|
90
|
+
onUpdated(handler) {
|
|
91
|
+
listeners.onUpdated = handler;
|
|
92
|
+
},
|
|
93
|
+
onDeleted(handler) {
|
|
94
|
+
listeners.onDeleted = handler;
|
|
95
|
+
},
|
|
96
|
+
};
|
|
97
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.DASHBOARD_DB_PATH = void 0;
|
|
7
|
+
exports.getDashboardDb = getDashboardDb;
|
|
8
|
+
exports.closeDashboardDb = closeDashboardDb;
|
|
9
|
+
exports.runMigrations = runMigrations;
|
|
10
|
+
const better_sqlite3_1 = __importDefault(require("better-sqlite3"));
|
|
11
|
+
const fs_1 = __importDefault(require("fs"));
|
|
12
|
+
const path_1 = __importDefault(require("path"));
|
|
13
|
+
const os_1 = __importDefault(require("os"));
|
|
14
|
+
// ─── Constants ──────────────────────────────────────────────────────────────
|
|
15
|
+
exports.DASHBOARD_DB_PATH = path_1.default.join(os_1.default.homedir(), '.codymaster', 'dashboard.db');
|
|
16
|
+
// ─── Connection Cache ───────────────────────────────────────────────────────
|
|
17
|
+
const dbCache = new Map();
|
|
18
|
+
function getDashboardDb(dbPath) {
|
|
19
|
+
const resolvedPath = dbPath !== null && dbPath !== void 0 ? dbPath : exports.DASHBOARD_DB_PATH;
|
|
20
|
+
if (dbCache.has(resolvedPath))
|
|
21
|
+
return dbCache.get(resolvedPath);
|
|
22
|
+
const dir = path_1.default.dirname(resolvedPath);
|
|
23
|
+
if (!fs_1.default.existsSync(dir)) {
|
|
24
|
+
fs_1.default.mkdirSync(dir, { recursive: true });
|
|
25
|
+
}
|
|
26
|
+
const db = new better_sqlite3_1.default(resolvedPath);
|
|
27
|
+
db.pragma('journal_mode = WAL');
|
|
28
|
+
db.pragma('foreign_keys = ON');
|
|
29
|
+
db.pragma('busy_timeout = 5000');
|
|
30
|
+
runMigrations(db);
|
|
31
|
+
dbCache.set(resolvedPath, db);
|
|
32
|
+
return db;
|
|
33
|
+
}
|
|
34
|
+
function closeDashboardDb(dbPath) {
|
|
35
|
+
const resolvedPath = dbPath !== null && dbPath !== void 0 ? dbPath : exports.DASHBOARD_DB_PATH;
|
|
36
|
+
const db = dbCache.get(resolvedPath);
|
|
37
|
+
if (db) {
|
|
38
|
+
try {
|
|
39
|
+
db.close();
|
|
40
|
+
}
|
|
41
|
+
catch ( /* already closed */_a) { /* already closed */ }
|
|
42
|
+
dbCache.delete(resolvedPath);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
// ─── Migrations ─────────────────────────────────────────────────────────────
|
|
46
|
+
const INIT_SQL = `
|
|
47
|
+
CREATE TABLE IF NOT EXISTS projects (
|
|
48
|
+
id TEXT PRIMARY KEY,
|
|
49
|
+
name TEXT NOT NULL,
|
|
50
|
+
path TEXT,
|
|
51
|
+
agents TEXT,
|
|
52
|
+
created_at TEXT NOT NULL
|
|
53
|
+
);
|
|
54
|
+
|
|
55
|
+
CREATE TABLE IF NOT EXISTS tasks (
|
|
56
|
+
id TEXT PRIMARY KEY,
|
|
57
|
+
project_id TEXT NOT NULL REFERENCES projects(id) ON DELETE CASCADE,
|
|
58
|
+
title TEXT NOT NULL,
|
|
59
|
+
description TEXT,
|
|
60
|
+
assignee_type TEXT CHECK(assignee_type IN ('member','agent')),
|
|
61
|
+
assignee_id TEXT,
|
|
62
|
+
status TEXT NOT NULL CHECK(status IN
|
|
63
|
+
('backlog','queued','claimed','running','review','done',
|
|
64
|
+
'failed','cancelled','timeout')),
|
|
65
|
+
priority TEXT CHECK(priority IN ('low','medium','high','urgent')),
|
|
66
|
+
ord INTEGER NOT NULL DEFAULT 0,
|
|
67
|
+
pinned_session_id TEXT,
|
|
68
|
+
prior_session_id TEXT,
|
|
69
|
+
prior_workdir TEXT,
|
|
70
|
+
current_workdir TEXT,
|
|
71
|
+
failure_reason TEXT,
|
|
72
|
+
error_message TEXT,
|
|
73
|
+
conversation_id TEXT UNIQUE,
|
|
74
|
+
created_at TEXT NOT NULL,
|
|
75
|
+
updated_at TEXT NOT NULL,
|
|
76
|
+
started_at TEXT,
|
|
77
|
+
finished_at TEXT
|
|
78
|
+
);
|
|
79
|
+
CREATE INDEX IF NOT EXISTS idx_tasks_project_status ON tasks(project_id, status);
|
|
80
|
+
CREATE INDEX IF NOT EXISTS idx_tasks_conversation ON tasks(conversation_id);
|
|
81
|
+
|
|
82
|
+
CREATE TABLE IF NOT EXISTS task_messages (
|
|
83
|
+
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
84
|
+
task_id TEXT NOT NULL REFERENCES tasks(id) ON DELETE CASCADE,
|
|
85
|
+
type TEXT NOT NULL,
|
|
86
|
+
payload TEXT NOT NULL,
|
|
87
|
+
created_at TEXT NOT NULL
|
|
88
|
+
);
|
|
89
|
+
CREATE INDEX IF NOT EXISTS idx_task_messages_task ON task_messages(task_id, id);
|
|
90
|
+
|
|
91
|
+
CREATE TABLE IF NOT EXISTS running_processes (
|
|
92
|
+
task_id TEXT PRIMARY KEY REFERENCES tasks(id) ON DELETE CASCADE,
|
|
93
|
+
pid INTEGER NOT NULL,
|
|
94
|
+
pgid INTEGER,
|
|
95
|
+
started_at TEXT NOT NULL,
|
|
96
|
+
host TEXT NOT NULL
|
|
97
|
+
);
|
|
98
|
+
|
|
99
|
+
CREATE TABLE IF NOT EXISTS activities (
|
|
100
|
+
id TEXT PRIMARY KEY,
|
|
101
|
+
type TEXT NOT NULL,
|
|
102
|
+
message TEXT NOT NULL,
|
|
103
|
+
project_id TEXT,
|
|
104
|
+
task_id TEXT,
|
|
105
|
+
actor_type TEXT,
|
|
106
|
+
actor_id TEXT,
|
|
107
|
+
meta TEXT,
|
|
108
|
+
created_at TEXT NOT NULL
|
|
109
|
+
);
|
|
110
|
+
`;
|
|
111
|
+
function runMigrations(db) {
|
|
112
|
+
db.exec(INIT_SQL);
|
|
113
|
+
}
|
package/dist/storage-backend.js
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.SqliteBackend = void 0;
|
|
4
4
|
exports.getBackend = getBackend;
|
|
5
5
|
const context_db_1 = require("./context-db");
|
|
6
|
-
const viking_backend_1 = require("./backends/viking-backend");
|
|
7
|
-
Object.defineProperty(exports, "VikingBackend", { enumerable: true, get: function () { return viking_backend_1.VikingBackend; } });
|
|
8
|
-
const viking_http_client_1 = require("./backends/viking-http-client");
|
|
9
6
|
const cm_config_1 = require("./cm-config");
|
|
10
7
|
// ─── SqliteBackend ────────────────────────────────────────────────────────────
|
|
11
8
|
/**
|
|
@@ -33,6 +30,10 @@ class SqliteBackend {
|
|
|
33
30
|
}
|
|
34
31
|
writeSkillOutput(o) { (0, context_db_1.writeSkillOutput)(this.dbPath, o); }
|
|
35
32
|
getSkillOutputs(sessionId) { return (0, context_db_1.getSkillOutputs)(this.dbPath, sessionId); }
|
|
33
|
+
recordExecutionAnalysis(a) { (0, context_db_1.recordExecutionAnalysis)(this.dbPath, a); }
|
|
34
|
+
getExecutionAnalyses(limit = 20) { return (0, context_db_1.getExecutionAnalyses)(this.dbPath, limit); }
|
|
35
|
+
getSkillMetric(skill) { return (0, context_db_1.getSkillMetric)(this.dbPath, skill); }
|
|
36
|
+
listSkillMetrics(limit = 50) { return (0, context_db_1.listSkillMetrics)(this.dbPath, limit); }
|
|
36
37
|
}
|
|
37
38
|
exports.SqliteBackend = SqliteBackend;
|
|
38
39
|
// ─── Factory ─────────────────────────────────────────────────────────────────
|
|
@@ -40,7 +41,7 @@ exports.SqliteBackend = SqliteBackend;
|
|
|
40
41
|
* Returns the configured StorageBackend for the given project.
|
|
41
42
|
*
|
|
42
43
|
* Reads `.cm/config.yaml → storage.backend` via `loadCmConfig` (default: `sqlite`).
|
|
43
|
-
*
|
|
44
|
+
* Legacy `storage.backend: viking` configs are warned and routed back to sqlite.
|
|
44
45
|
*
|
|
45
46
|
* Usage:
|
|
46
47
|
* const backend = getBackend('/path/to/project');
|
|
@@ -48,13 +49,14 @@ exports.SqliteBackend = SqliteBackend;
|
|
|
48
49
|
* const results = backend.queryLearnings('i18n locale');
|
|
49
50
|
*/
|
|
50
51
|
function getBackend(projectPath) {
|
|
51
|
-
var _a, _b
|
|
52
|
+
var _a, _b;
|
|
52
53
|
const cfg = (0, cm_config_1.loadCmConfig)(projectPath);
|
|
53
54
|
const engine = ((_b = (_a = cfg.storage) === null || _a === void 0 ? void 0 : _a.backend) !== null && _b !== void 0 ? _b : 'sqlite').toLowerCase();
|
|
54
55
|
switch (engine) {
|
|
55
56
|
case 'viking': {
|
|
56
|
-
|
|
57
|
-
|
|
57
|
+
console.warn('[CodyMaster] storage.backend: viking has been removed. ' +
|
|
58
|
+
'Falling back to sqlite for the supported default path.');
|
|
59
|
+
return new SqliteBackend(projectPath);
|
|
58
60
|
}
|
|
59
61
|
case 'sqlite':
|
|
60
62
|
default:
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Project Tier Classification.
|
|
4
|
+
*
|
|
5
|
+
* Heuristic-based assignment to one of:
|
|
6
|
+
* LITE — solo / prototype (LOC < 2k, files < 50)
|
|
7
|
+
* STANDARD — small project (LOC < 20k, files < 300)
|
|
8
|
+
* PROFESSIONAL — production project (LOC < 100k, files < 1500)
|
|
9
|
+
* ENTERPRISE — large codebase (above)
|
|
10
|
+
*
|
|
11
|
+
* The tier dictates:
|
|
12
|
+
* - cm-quality-gate strictness (Vibe mode default)
|
|
13
|
+
* - Adaptive Depth (TL;DR vs full protocol rendering for skills)
|
|
14
|
+
*/
|
|
15
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
16
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
17
|
+
};
|
|
18
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
+
exports.classifyProject = classifyProject;
|
|
20
|
+
exports.renderTierMarkdown = renderTierMarkdown;
|
|
21
|
+
exports.writeTierReport = writeTierReport;
|
|
22
|
+
const fs_1 = __importDefault(require("fs"));
|
|
23
|
+
const path_1 = __importDefault(require("path"));
|
|
24
|
+
const SKIP_DIR = new Set([
|
|
25
|
+
'node_modules', '.git', 'dist', 'build', '.next', '.cache',
|
|
26
|
+
'.venv', 'venv', '__pycache__', 'target', 'vendor', '.cm',
|
|
27
|
+
'coverage', '.turbo', '.pnpm-store',
|
|
28
|
+
]);
|
|
29
|
+
const CODE_EXT = new Set([
|
|
30
|
+
'.ts', '.tsx', '.js', '.jsx', '.mjs', '.cjs',
|
|
31
|
+
'.py', '.rb', '.go', '.rs', '.java', '.kt',
|
|
32
|
+
'.swift', '.c', '.cc', '.cpp', '.h', '.hpp',
|
|
33
|
+
]);
|
|
34
|
+
function walk(root, acc, depth = 0) {
|
|
35
|
+
if (depth > 12)
|
|
36
|
+
return;
|
|
37
|
+
let entries;
|
|
38
|
+
try {
|
|
39
|
+
entries = fs_1.default.readdirSync(root, { withFileTypes: true });
|
|
40
|
+
}
|
|
41
|
+
catch (_a) {
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
for (const e of entries) {
|
|
45
|
+
if (e.name.startsWith('.') && e.name !== '.cm') {
|
|
46
|
+
// skip hidden dirs except for explicit ones
|
|
47
|
+
}
|
|
48
|
+
if (SKIP_DIR.has(e.name))
|
|
49
|
+
continue;
|
|
50
|
+
const full = path_1.default.join(root, e.name);
|
|
51
|
+
if (e.isDirectory()) {
|
|
52
|
+
walk(full, acc, depth + 1);
|
|
53
|
+
}
|
|
54
|
+
else if (e.isFile()) {
|
|
55
|
+
const ext = path_1.default.extname(e.name).toLowerCase();
|
|
56
|
+
if (!CODE_EXT.has(ext))
|
|
57
|
+
continue;
|
|
58
|
+
acc.files += 1;
|
|
59
|
+
try {
|
|
60
|
+
const content = fs_1.default.readFileSync(full, 'utf8');
|
|
61
|
+
acc.loc += content.split('\n').length;
|
|
62
|
+
}
|
|
63
|
+
catch (_b) {
|
|
64
|
+
// unreadable; ignore
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
function countDeps(root) {
|
|
70
|
+
var _a, _b;
|
|
71
|
+
let n = 0;
|
|
72
|
+
try {
|
|
73
|
+
const pkg = JSON.parse(fs_1.default.readFileSync(path_1.default.join(root, 'package.json'), 'utf8'));
|
|
74
|
+
n += Object.keys((_a = pkg.dependencies) !== null && _a !== void 0 ? _a : {}).length;
|
|
75
|
+
n += Object.keys((_b = pkg.devDependencies) !== null && _b !== void 0 ? _b : {}).length;
|
|
76
|
+
}
|
|
77
|
+
catch ( /* not a node project */_c) { /* not a node project */ }
|
|
78
|
+
try {
|
|
79
|
+
const py = fs_1.default.readFileSync(path_1.default.join(root, 'requirements.txt'), 'utf8');
|
|
80
|
+
n += py.split('\n').filter((l) => l.trim() && !l.startsWith('#')).length;
|
|
81
|
+
}
|
|
82
|
+
catch ( /* no python reqs */_d) { /* no python reqs */ }
|
|
83
|
+
return n;
|
|
84
|
+
}
|
|
85
|
+
function classifyProject(root) {
|
|
86
|
+
const metrics = { files: 0, loc: 0, deps: 0 };
|
|
87
|
+
walk(root, metrics);
|
|
88
|
+
metrics.deps = countDeps(root);
|
|
89
|
+
let tier;
|
|
90
|
+
if (metrics.files < 50 && metrics.loc < 2000)
|
|
91
|
+
tier = 'LITE';
|
|
92
|
+
else if (metrics.files < 300 && metrics.loc < 20000)
|
|
93
|
+
tier = 'STANDARD';
|
|
94
|
+
else if (metrics.files < 1500 && metrics.loc < 100000)
|
|
95
|
+
tier = 'PROFESSIONAL';
|
|
96
|
+
else
|
|
97
|
+
tier = 'ENTERPRISE';
|
|
98
|
+
const vibeDefault = {
|
|
99
|
+
LITE: 'OFF',
|
|
100
|
+
STANDARD: 'WARNING',
|
|
101
|
+
PROFESSIONAL: 'SOFT',
|
|
102
|
+
ENTERPRISE: 'FULL',
|
|
103
|
+
};
|
|
104
|
+
return {
|
|
105
|
+
tier,
|
|
106
|
+
metrics,
|
|
107
|
+
vibe_mode_default: vibeDefault[tier],
|
|
108
|
+
prefer_tldr: tier === 'LITE' || tier === 'STANDARD',
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
function renderTierMarkdown(r) {
|
|
112
|
+
return [
|
|
113
|
+
`# Project Tier: ${r.tier}`,
|
|
114
|
+
'',
|
|
115
|
+
`Files: ${r.metrics.files}`,
|
|
116
|
+
`LOC: ${r.metrics.loc}`,
|
|
117
|
+
`Deps: ${r.metrics.deps}`,
|
|
118
|
+
'',
|
|
119
|
+
`Default Vibecoding mode: ${r.vibe_mode_default}`,
|
|
120
|
+
`Adaptive depth: ${r.prefer_tldr ? 'TL;DR only' : 'Full protocol'}`,
|
|
121
|
+
'',
|
|
122
|
+
].join('\n');
|
|
123
|
+
}
|
|
124
|
+
function writeTierReport(root, r) {
|
|
125
|
+
const dir = path_1.default.join(root, '.cm');
|
|
126
|
+
if (!fs_1.default.existsSync(dir))
|
|
127
|
+
fs_1.default.mkdirSync(dir, { recursive: true });
|
|
128
|
+
const file = path_1.default.join(dir, 'project-tier.md');
|
|
129
|
+
fs_1.default.writeFileSync(file, renderTierMarkdown(r), 'utf8');
|
|
130
|
+
return file;
|
|
131
|
+
}
|