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
package/README.md
CHANGED
|
@@ -1,22 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
[English](README.md) | [Tiแบฟng Viแปt](README-vi.md)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
# CodyMaster
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
> *"I can't write code. But in 6 months, I shipped 12 real products using AI. CodyMaster is everything I learned โ so you don't have to repeat my mistakes."* โ **Tody Le**, Head of Product, Creator of CodyMaster
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
**50+ skills. One install. Your AI coding agent becomes a full team.**
|
|
8
8
|
|
|
9
|
-
**
|
|
10
|
-
|
|
11
|
-
<p align="center">
|
|
12
|
-
<img alt="Version" src="https://img.shields.io/badge/version-4.8.0-blue.svg?cacheSeconds=2592000" />
|
|
13
|
-
<img alt="Skills" src="https://img.shields.io/badge/skills-68+-success.svg" />
|
|
14
|
-
<img alt="Platforms" src="https://img.shields.io/badge/platforms-7+-orange.svg" />
|
|
15
|
-
<img alt="Open Source" src="https://img.shields.io/badge/license-ISC-purple.svg" />
|
|
16
|
-
<a href="https://github.com/tody-agent/codymaster#readme" target="_blank">
|
|
17
|
-
<img alt="Documentation" src="https://img.shields.io/badge/documentation-yes-brightgreen.svg" />
|
|
18
|
-
</a>
|
|
19
|
-
</p>
|
|
9
|
+
**v7.0 โ Browse Hybrid Bridge:** AI-native browser automation with a11y snapshots, error collection, video recording.
|
|
20
10
|
|
|
21
11
|
```
|
|
22
12
|
( . \ --- / . )
|
|
@@ -24,400 +14,340 @@
|
|
|
24
14
|
( u )
|
|
25
15
|
| \ ___ / |
|
|
26
16
|
'--w---w--'
|
|
27
|
-
Meet
|
|
28
|
-
Your smart coding companion.
|
|
17
|
+
Meet Cody ๐น
|
|
29
18
|
```
|
|
30
19
|
|
|
31
|
-
](https://discord.gg/codymaster)
|
|
32
21
|
|
|
33
|
-
|
|
22
|
+
---
|
|
34
23
|
|
|
35
|
-
|
|
24
|
+
## The Problem
|
|
36
25
|
|
|
37
|
-
|
|
26
|
+
You installed an AI coding agent. It writes code fast. But then:
|
|
38
27
|
|
|
39
|
-
|
|
28
|
+
- **It designs differently every time** โ your brand looks like 3 different companies
|
|
29
|
+
- **It fixes one thing, breaks five others** โ you redo the same work over and over
|
|
30
|
+
- **It forgets everything** between sessions โ you re-explain your project every morning
|
|
31
|
+
- **It writes zero tests, zero docs** โ your codebase becomes a ticking time bomb
|
|
32
|
+
- **You install 15 skills** โ none of them talk to each other
|
|
40
33
|
|
|
41
|
-
|
|
34
|
+
> *"AI gave me 100 hands. Without discipline, those hands created chaos."*
|
|
42
35
|
|
|
43
|
-
|
|
36
|
+
---
|
|
44
37
|
|
|
45
|
-
|
|
46
|
-
| ----------------------------------------------------------------------------------- | ---------------------------------------------- |
|
|
47
|
-
| AI designs**differently every single time** โ same brand, 3 different styles | Clients think you're 3 different companies |
|
|
48
|
-
| AI fixes one bug,**silently breaks 5 other things** | You redo the same work 3-4 times |
|
|
49
|
-
| AI**forgets everything** between sessions | You re-explain the same codebase every morning |
|
|
50
|
-
| AI writes zero tests, zero docs | Your codebase becomes a house of cards |
|
|
51
|
-
| You install 15 different skills โ**none of them talk to each other** | Frankenstein toolkit with zero synergy |
|
|
52
|
-
| Deploy to production =**deploy and pray** ๐ | Broken deploys at 2 AM, no rollback |
|
|
38
|
+
## The Solution: A Full Senior Team in One Install
|
|
53
39
|
|
|
54
|
-
|
|
55
|
-
> โ **Tody Le**, Head of Product ยท 10+ years ยท Creator of CodyMaster
|
|
40
|
+
CodyMaster isn't a collection of random skills. It's an **operating system** for your AI agent โ 50+ skills that work together like a real team.
|
|
56
41
|
|
|
57
|
-
|
|
42
|
+
**When you install CodyMaster, you hire:**
|
|
58
43
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
**
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
graph TD
|
|
68
|
-
A["๐ง CodyMaster Kit"] --> B["๐จโ๐ป Senior Developer<br/><i>cm-tdd ยท cm-debugging ยท cm-code-review ยท cm-clean-code</i>"]
|
|
69
|
-
A --> C["๐จ UX Lead<br/><i>cm-design-system ยท cm-ux-master ยท cm-ui-preview</i>"]
|
|
70
|
-
A --> D["๐ Product Manager<br/><i>cm-planning ยท cm-brainstorm-idea ยท cm-jtbd</i>"]
|
|
71
|
-
A --> E["๐ DevOps Engineer<br/><i>cm-safe-deploy ยท cm-secret-shield ยท cm-security-gate ยท cm-identity-guard</i>"]
|
|
72
|
-
A --> F["๐ Technical Writer<br/><i>cm-dockit ยท cm-content-factory ยท cm-auto-publisher</i>"]
|
|
73
|
-
A --> G["๐ Growth Marketer<br/><i>cm-ads-tracker ยท cm-cro-methodology ยท cm-growth-hacking</i>"]
|
|
74
|
-
A --> H["๐ญ Enterprise Dev<br/><i>cm-booking-calendar ยท cm-google-form</i>"]
|
|
75
|
-
style A fill:#fbc531,stroke:#e1b12c,color:#2f3640,stroke-width:3px
|
|
76
|
-
classDef team fill:#2f3640,stroke:#dcdde1,stroke-width:1px,color:#fff;
|
|
77
|
-
class B,C,D,E,F,G,H team;
|
|
78
|
-
```
|
|
44
|
+
| Role | What They Do | Key Skills |
|
|
45
|
+
|------|-------------|------------|
|
|
46
|
+
| **Senior Developer** | Write tests first, debug systematically, review code | `cm-tdd` `cm-debugging` `cm-code-review` |
|
|
47
|
+
| **UX Designer** | Extract design systems, preview UI before coding | `cm-design-system` `cm-ux-master` `cm-open-design` |
|
|
48
|
+
| **Product Manager** | Plan features, brainstorm ideas, understand users | `cm-planning` `cm-brainstorm-idea` |
|
|
49
|
+
| **DevOps Engineer** | Safe deploys, secret scanning, right-account checks | `cm-safe-deploy` `cm-identity-guard` |
|
|
50
|
+
| **Tech Writer** | Auto-generate docs, API refs, knowledge base from code | `cm-dockit` `cm-codeintell` |
|
|
51
|
+
| **Automation Lead** | Sprint pipelines, autopilot workflows, status tracking | `cm-sprint-bus` `cm-autopilot` |
|
|
79
52
|
|
|
80
53
|
---
|
|
81
54
|
|
|
82
|
-
##
|
|
83
|
-
|
|
84
|
-
Other skill packs give you loose tools. CodyMaster gives you an **interconnected operating system** for your AI โ 68+ skills that chain, share memory, and communicate like a real team.
|
|
85
|
-
|
|
86
|
-
### ๐ Full Lifecycle Coverage (Idea โ Production)
|
|
87
|
-
|
|
88
|
-
No gaps. No manual handoffs. Every phase is covered:
|
|
89
|
-
|
|
90
|
-
```mermaid
|
|
91
|
-
graph LR
|
|
92
|
-
A["๐ก Idea"] --> B["๐ Plan"]
|
|
93
|
-
B --> C["๐จ Design"]
|
|
94
|
-
C --> D["๐งช Test First"]
|
|
95
|
-
D --> E["๐ป Code"]
|
|
96
|
-
E --> F["๐ Debug"]
|
|
97
|
-
F --> G["โ
Quality Gate"]
|
|
98
|
-
G --> H["๐ Security Scan"]
|
|
99
|
-
H --> I["๐ Deploy"]
|
|
100
|
-
I --> J["๐ Monitor"]
|
|
101
|
-
J --> K["๐ Document"]
|
|
102
|
-
K --> L["๐ง Learn & Improve"]
|
|
103
|
-
L -.-> A
|
|
104
|
-
classDef phase fill:#353b48,stroke:#fbc531,stroke-width:2px,color:#fff;
|
|
105
|
-
class A,B,C,D,E,F,G,H,I,J,K,L phase;
|
|
106
|
-
```
|
|
55
|
+
## Quick Start โ 30 Seconds
|
|
107
56
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
1. **Sensory Memory (Session)** โ Immediate context of active files and terminals.
|
|
113
|
-
2. **Working Memory (`cm-continuity`)** โ Cross-session scratchpad. AI never repeats the same mistake.
|
|
114
|
-
3. **Long-Term Memory (`learnings.json`)** โ Reinforced lessons with smart Ebbinghaus TTL decay.
|
|
115
|
-
4. **Semantic Memory (`cm-deep-search`)** โ Local vector search across docs using `qmd`.
|
|
116
|
-
5. **Structural Memory (`cm-codeintell`)** โ AST-based CodeGraph. Up to 95% token compression for full codebase context.
|
|
117
|
-
|
|
118
|
-
๐ฆด **Smart Spine (v4.6+)** โ The nervous system connecting all 5 tiers:
|
|
119
|
-
- **SQLite + FTS5** โ BM25-ranked keyword search replaces flat JSON scans.
|
|
120
|
-
- **Progressive Loading (L0/L1/L2)** โ Context loaded at cheapest sufficient depth. 78% token savings.
|
|
121
|
-
- **cm:// URI Scheme** โ Skills request context by URI, not file paths.
|
|
122
|
-
- **Token Budget** โ 200k window pre-allocated by category. No more silent overflow.
|
|
123
|
-
- **Context Bus** โ Skills share outputs in real-time within a chain.
|
|
124
|
-
- **MCP Server** โ 13 tools exposed to Claude Desktop and any MCP client (`src/mcp-context-server.ts`).
|
|
125
|
-
- **OpenViking Backend natively integrated** โ Inspired by OpenViking's architecture, CodyMaster defaults to `openviking` auto-installation. It delivers true semantic vector graph memory, automatic session compression, and temporal context layering. (One config line change: `storage.backend: viking`).
|
|
126
|
-
|
|
127
|
-
โ๏ธ **The Cloud Brain (`cm-notebooklm`)**
|
|
128
|
-
High-value knowledge and design patterns are synced to NotebookLM, providing a universal, cross-machine "Soul" for your project. Auto-generate podcasts and flashcards to onboard human developers alongside the AI.
|
|
129
|
-
|
|
130
|
-
๐ [CodyMaster Brain & memory model โ](docs/architecture/codymaster-brain.md)
|
|
131
|
-
|
|
132
|
-
### ๐ก๏ธ Multi-Layer Protection (Your Codebase Won't Get Destroyed)
|
|
133
|
-
|
|
134
|
-
Every line of code passes through multiple safety gates before reaching production:
|
|
135
|
-
|
|
136
|
-
```mermaid
|
|
137
|
-
flowchart LR
|
|
138
|
-
subgraph "Layer 1: Write"
|
|
139
|
-
A["cm-tdd<br/>Tests First"] --> B["cm-code-review"]
|
|
140
|
-
end
|
|
141
|
-
subgraph "Layer 2: Secure"
|
|
142
|
-
B --> C["cm-secret-shield<br/>Leak Scan"] --> S["cm-security-gate<br/>Vuln Scan"] --> D["cm-identity-guard<br/>Right Account"]
|
|
143
|
-
end
|
|
144
|
-
subgraph "Layer 3: Isolate"
|
|
145
|
-
D --> E["cm-git-worktrees<br/>Isolated Branch"]
|
|
146
|
-
end
|
|
147
|
-
subgraph "Layer 4: Deploy"
|
|
148
|
-
E --> F["cm-quality-gate<br/>Evidence Check"] --> G["cm-safe-deploy<br/>Multi-Gate Pipeline"]
|
|
149
|
-
end
|
|
150
|
-
style A fill:#e84118,stroke:#c23616,color:#fff
|
|
151
|
-
style C fill:#e84118,stroke:#c23616,color:#fff
|
|
152
|
-
style F fill:#0097e6,stroke:#00a8ff,color:#fff
|
|
153
|
-
style G fill:#4cd137,stroke:#44bd32,color:#fff
|
|
57
|
+
**Step 1: Install**
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
npm install -g codymaster && cm
|
|
154
61
|
```
|
|
155
62
|
|
|
156
|
-
|
|
63
|
+
A wizard detects your AI tools (Claude Code, Cursor, Gemini, etc.) and installs skills to all of them.
|
|
157
64
|
|
|
158
|
-
|
|
65
|
+
**Step 2: Start coding**
|
|
159
66
|
|
|
160
|
-
|
|
67
|
+
Open your AI agent and say what you want:
|
|
161
68
|
|
|
162
|
-
|
|
69
|
+
```
|
|
70
|
+
Build a landing page for my coffee shop
|
|
71
|
+
```
|
|
163
72
|
|
|
164
|
-
|
|
73
|
+
**Step 3: Watch it work**
|
|
165
74
|
|
|
166
|
-
|
|
167
|
-
-
|
|
168
|
-
- ๐ API references
|
|
169
|
-
- ๐ฏ Persona analysis & JTBD mapping
|
|
170
|
-
- ๐ Multi-language. SEO-optimized.
|
|
75
|
+
CodyMaster automatically chains the right skills:
|
|
76
|
+
`cm-brainstorm-idea` โ `cm-design-system` โ `cm-execution` โ `cm-safe-deploy`
|
|
171
77
|
|
|
172
|
-
|
|
78
|
+
That's it. No config files. No setup ritual. Just describe what you want.
|
|
173
79
|
|
|
174
|
-
|
|
80
|
+
---
|
|
175
81
|
|
|
176
|
-
|
|
82
|
+
## See It Work
|
|
177
83
|
|
|
178
|
-
|
|
84
|
+
Here's a real conversation โ a non-technical founder building a booking site:
|
|
179
85
|
|
|
86
|
+
```
|
|
87
|
+
You: I want to build a booking website for my spa business.
|
|
88
|
+
I have an old website at myspa.com but it looks terrible.
|
|
89
|
+
|
|
90
|
+
AI: [cm-brainstorm-idea] Let me analyze your current site first...
|
|
91
|
+
I found 3 key issues: no mobile booking, unclear pricing,
|
|
92
|
+
slow load time. Here are 2 approaches:
|
|
93
|
+
A) Redesign from scratch (recommended โ your brand needs it)
|
|
94
|
+
B) Fix the existing site
|
|
95
|
+
|
|
96
|
+
You: Let's go with A.
|
|
97
|
+
|
|
98
|
+
AI: [cm-design-system] I'm extracting your brand colors from
|
|
99
|
+
myspa.com... Found: gold + navy. Building a design system.
|
|
100
|
+
[cm-planning] Here's the plan: booking page, services page,
|
|
101
|
+
about page, contact. Estimated: 30 minutes of AI work.
|
|
102
|
+
|
|
103
|
+
You: Sounds good, do it.
|
|
104
|
+
|
|
105
|
+
AI: [cm-tdd] Writing tests first...
|
|
106
|
+
[cm-execution] Building 4 pages...
|
|
107
|
+
[cm-dockit] Generating service descriptions and FAQ docs...
|
|
108
|
+
[cm-quality-gate] All tests pass. Performance: 98/100.
|
|
109
|
+
[cm-safe-deploy] Deploying to staging...
|
|
110
|
+
|
|
111
|
+
โ
Done. Preview: https://staging-myspa.pages.dev
|
|
112
|
+
|
|
113
|
+
You: The booking button is too small on mobile.
|
|
114
|
+
|
|
115
|
+
AI: [cm-debugging] Found it โ padding was 8px, should be 16px.
|
|
116
|
+
[cm-code-review] Fix looks good. No side effects.
|
|
117
|
+
[cm-safe-deploy] Deployed fix.
|
|
118
|
+
|
|
119
|
+
โ
Fixed. Try now.
|
|
120
|
+
```
|
|
180
121
|
|
|
181
|
-
|
|
122
|
+
**No code written by the human. No bugs introduced by the AI.** The system caught the mobile issue before it reached production.
|
|
182
123
|
|
|
183
|
-
|
|
124
|
+
---
|
|
184
125
|
|
|
185
|
-
|
|
126
|
+
## What Makes This Different
|
|
186
127
|
|
|
187
|
-
|
|
128
|
+
| | ๐ต Random Skills | ๐ง CodyMaster |
|
|
129
|
+
|---|---|---|
|
|
130
|
+
| **Integration** | Each skill is standalone | 50+ skills that chain and share memory |
|
|
131
|
+
| **Memory** | Forgets everything between sessions | Remembers your project, your style, your mistakes |
|
|
132
|
+
| **Safety** | Deploy and pray | Multi-layer protection: tests โ security โ staging โ production |
|
|
133
|
+
| **Design** | Random UI every time | Extracts your brand, enforces consistency |
|
|
134
|
+
| **Documentation** | "Maybe later" | Auto-generates docs from your code |
|
|
135
|
+
| **Self-improvement** | Static โ what you install is what you get | Learns from feedback, gets better over time |
|
|
188
136
|
|
|
189
|
-
|
|
137
|
+
---
|
|
190
138
|
|
|
191
|
-
|
|
192
|
-
- **`cm-skill-evolution`** auto-patches degraded skills (Mode: FIX) when health scores drop below threshold.
|
|
193
|
-
- **`cm-skill-chain` Auto-Dispatch** โ Inspired by OpenSpace automation orchestrators, sequence dispatching is now 100% automated with intelligent task detection, zero-touch handoffs, and multi-agent coordination.
|
|
194
|
-
- **`cm-skill-search`** uses BM25 ranking to find the right skill for any task.
|
|
195
|
-
- **`cm-skill-share`** exports & imports skills across teams and machines.
|
|
139
|
+
## Built For Builders, Not Coders
|
|
196
140
|
|
|
197
|
-
|
|
141
|
+
CodyMaster was built for people who **have ideas, not CS degrees**.
|
|
198
142
|
|
|
199
|
-
|
|
143
|
+
**You're a good fit if you:**
|
|
144
|
+
- Want to type a message and get a working product back
|
|
145
|
+
- Want your AI to learn from its mistakes
|
|
146
|
+
- Don't want to manually review every line of AI output
|
|
147
|
+
- Want to deploy with confidence, not prayer
|
|
200
148
|
|
|
201
|
-
|
|
149
|
+
**You're NOT a good fit if you:**
|
|
150
|
+
- Enjoy doing the same setup for every project
|
|
151
|
+
- Prefer slow, manual deploys with no safety net
|
|
152
|
+
- Like re-explaining your codebase every morning
|
|
202
153
|
|
|
203
154
|
---
|
|
204
155
|
|
|
205
|
-
##
|
|
156
|
+
## The 10-Second Tour
|
|
206
157
|
|
|
207
|
-
|
|
208
|
-
| -------------------------- | ------------------------------------------- | --------------------------------------------------------------------- |
|
|
209
|
-
| **Integration** | Each skill is standalone, no shared context | 68+ skills that chain, share memory, and communicate |
|
|
210
|
-
| **Lifecycle** | Covers coding only | Covers Idea โ Design โ Code โ Test โ Deploy โ Docs โ Learn |
|
|
211
|
-
| **Memory** | Forgets everything between sessions | 5-tier Unified Brain: Sensory โ Working โ Long-term โ Semantic โ Structural + Cloud Brain. Optional **OpenViking** backend for vector search + auto memory compression. |
|
|
212
|
-
| **Safety** | YOLO deploys | 4-layer protection: TDD โ Security โ Isolation โ Multi-gate deploy |
|
|
213
|
-
| **Design** | Random UI every time | Extracts & enforces design system + visual preview |
|
|
214
|
-
| **Documentation** | "Maybe write a README later" | Auto-generates complete docs, SOPs, API refs from code |
|
|
215
|
-
| **Self-improvement** | Static โ what you install is what you get | Self-healing: monitors health โ auto-patches โ reinforces winners |
|
|
216
|
-
| **Maintenance** | Update 15 repos separately | One `npm i -g codymaster` updates everything |
|
|
217
|
-
|
|
218
|
-
---
|
|
158
|
+
Instead of listing 50+ skills, here's what CodyMaster does in plain language:
|
|
219
159
|
|
|
220
|
-
|
|
160
|
+
### ๐ก Before You Build
|
|
161
|
+
- **Thinks before coding** โ asks questions, challenges your assumptions, saves you from building the wrong thing
|
|
162
|
+
- **Plans the architecture** โ diagrams, data flow, edge cases โ all before writing code
|
|
221
163
|
|
|
222
|
-
|
|
164
|
+
### ๐จ While Building
|
|
165
|
+
- **Enforces your design system** โ consistent colors, fonts, spacing across every page
|
|
166
|
+
- **Writes tests first** โ catches bugs before they exist
|
|
167
|
+
- **Debugs systematically** โ traces the root cause, doesn't guess
|
|
223
168
|
|
|
224
|
-
|
|
169
|
+
### ๐ Before Shipping
|
|
170
|
+
- **Scans for secrets** โ no API keys leaking to GitHub
|
|
171
|
+
- **Checks the right account** โ no accidental deploys to the wrong Cloudflare
|
|
172
|
+
- **Runs quality gates** โ no deploy without passing tests + performance checks
|
|
225
173
|
|
|
226
|
-
|
|
227
|
-
-
|
|
228
|
-
-
|
|
229
|
-
-
|
|
174
|
+
### ๐ After Shipping
|
|
175
|
+
- **Generates documentation** โ reads your code, writes the docs
|
|
176
|
+
- **Learns from feedback** โ gets smarter with every project
|
|
177
|
+
- **Runs retrospectives** โ captures what worked, what didn't, improves the process
|
|
230
178
|
|
|
231
|
-
|
|
179
|
+
๐ [Full skill reference โ](skills/)
|
|
232
180
|
|
|
233
|
-
|
|
181
|
+
---
|
|
234
182
|
|
|
235
|
-
|
|
236
|
-
- โ Doing the same setup ritual for every project
|
|
237
|
-
- โ Slow, manual deploys with no safety net
|
|
183
|
+
## The Design Pipeline
|
|
238
184
|
|
|
239
|
-
|
|
185
|
+
CodyMaster treats design as a **first-class discipline** โ not an afterthought. Your AI doesn't just write code; it enforces visual consistency across every page.
|
|
240
186
|
|
|
241
|
-
|
|
187
|
+
**Three ways to get a design system:**
|
|
242
188
|
|
|
243
|
-
|
|
189
|
+
| Method | When to Use | How |
|
|
190
|
+
|--------|-------------|-----|
|
|
191
|
+
| **Extract from URL** | You have an existing brand/site | `cm-open-design` analyzes your site, extracts colors, fonts, spacing |
|
|
192
|
+
| **Pick from 129 systems** | You want a proven aesthetic | Choose from Linear, Stripe, Vercel, Notion, Apple, Tesla, and 123 more |
|
|
193
|
+
| **Choose a direction** | You have no brand yet | Pick from 5 curated styles: Editorial, Modern Minimal, Warm Soft, Tech Utility, Brutalist |
|
|
244
194
|
|
|
245
|
-
|
|
195
|
+
```
|
|
196
|
+
Extract โ Tokens โ Validate โ Build โ QA
|
|
197
|
+
โ โ โ โ โ
|
|
198
|
+
โ โ โ โ โโ cm-quality-gate
|
|
199
|
+
โ โ โ โโ cm-execution
|
|
200
|
+
โ โ โโ cm-ux-master (48 UX laws)
|
|
201
|
+
โ โโ cm-design-system (STITCH_TOKENS)
|
|
202
|
+
โโ cm-open-design (129 systems + extraction)
|
|
203
|
+
```
|
|
246
204
|
|
|
247
|
-
|
|
205
|
+
๐ [Full design pipeline guide โ](docs/design-pipeline.md)
|
|
248
206
|
|
|
249
|
-
|
|
250
|
-
bash <(curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh) --all
|
|
251
|
-
```
|
|
207
|
+
---
|
|
252
208
|
|
|
253
|
-
|
|
209
|
+
## Real-World Scenarios
|
|
254
210
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
211
|
+
| You Say | What Happens |
|
|
212
|
+
|---------|-------------|
|
|
213
|
+
| *"Fix this bug"* | `cm-debugging` finds root cause โ `cm-tdd` writes test โ `cm-quality-gate` verifies |
|
|
214
|
+
| *"Build a landing page"* | `cm-brainstorm-idea` โ `cm-design-system` โ `cm-execution` โ `cm-safe-deploy` |
|
|
215
|
+
| *"Make it look like Stripe"* | `cm-open-design` extracts Stripe tokens โ `cm-design-system` applies โ `cm-execution` builds |
|
|
216
|
+
| *"Deploy to production"* | `cm-secret-shield` โ `cm-security-gate` โ `cm-identity-guard` โ `cm-safe-deploy` |
|
|
217
|
+
| *"What does this code do?"* | `cm-codeintell` reads the codebase โ `cm-dockit` generates docs |
|
|
218
|
+
| *"Add Vietnamese support"* | `cm-safe-i18n` extracts strings โ translates โ validates โ ships |
|
|
219
|
+
| *"Start a new project"* | `cm-project-bootstrap` scaffolds โ `cm-planning` plans โ `cm-execution` builds |
|
|
260
220
|
|
|
261
|
-
|
|
221
|
+
---
|
|
262
222
|
|
|
263
|
-
|
|
223
|
+
## Install
|
|
264
224
|
|
|
265
|
-
|
|
225
|
+
### One command
|
|
266
226
|
|
|
267
227
|
```bash
|
|
268
|
-
|
|
269
|
-
bash <(curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh) --gemini --profile core
|
|
270
|
-
|
|
271
|
-
# Optional packs (re-run to add folders alongside core)
|
|
272
|
-
bash install.sh --gemini --profile growth
|
|
273
|
-
bash install.sh --gemini --profile design
|
|
274
|
-
bash install.sh --gemini --profile knowledge
|
|
228
|
+
npm install -g codymaster && cm
|
|
275
229
|
```
|
|
276
230
|
|
|
277
|
-
|
|
278
|
-
- **MCP:** Disable MCP servers you are not using in the IDE settings. Flaky or rate-limited MCPs can cause โMCP Errorโ loops until the agent terminates.
|
|
279
|
-
- **Progressive disclosure:** Add `@~/.gemini/antigravity/skills/cm-skill-index/SKILL.md` to `GEMINI.md` so the model loads the index before pulling full skills.
|
|
280
|
-
|
|
281
|
-
Profiles are defined under [`skills/profiles/`](skills/profiles/README.md).
|
|
231
|
+
### What the wizard does
|
|
282
232
|
|
|
283
|
-
|
|
233
|
+
1. **Detects** every AI tool you have (Claude Code, Cursor, Gemini CLI, Codex, OpenCode, Windsurf, Cline, Aider, Continue, Kiro, Amazon Q, Amp, Copilot, Claude Desktop)
|
|
234
|
+
2. **Asks** which ones you want skills for (pre-checked for detected tools)
|
|
235
|
+
3. **Installs** to each platform's native location
|
|
236
|
+
4. **Done** โ open your AI agent and start building
|
|
284
237
|
|
|
285
|
-
###
|
|
286
|
-
|
|
287
|
-
Visualize your progress, manage tasks, and track your 10x coding streak with Cody the Hamster ๐น.
|
|
288
|
-
|
|
289
|
-
**Both are official:** install **per project** (no `-g`) or **globally**.
|
|
290
|
-
|
|
291
|
-
Per project โ keeps the CLI version with the repo (use `npx` so you do not need `cm` on your PATH):
|
|
238
|
+
### After install
|
|
292
239
|
|
|
293
240
|
```bash
|
|
294
|
-
|
|
295
|
-
|
|
241
|
+
cm doctor # Check what's installed
|
|
242
|
+
cm status # See your tasks and progress
|
|
243
|
+
cm dashboard # Open the visual dashboard
|
|
296
244
|
```
|
|
297
245
|
|
|
298
|
-
|
|
246
|
+
### No Node.js?
|
|
299
247
|
|
|
300
248
|
```bash
|
|
301
|
-
|
|
302
|
-
cm
|
|
249
|
+
bash <(curl -fsSL https://raw.githubusercontent.com/tody-agent/codymaster/main/install.sh) --all --profile core
|
|
303
250
|
```
|
|
304
251
|
|
|
305
|
-
|
|
252
|
+
---
|
|
306
253
|
|
|
307
|
-
|
|
308
|
-
( . \ --- / . )
|
|
309
|
-
/ ^ ^ \ Hi! I'm Cody ๐น
|
|
310
|
-
( u ) Your smart coding companion.
|
|
311
|
-
| \ ___ / |
|
|
312
|
-
'--w---w--'
|
|
254
|
+
## The Dashboard
|
|
313
255
|
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
โ
|
|
319
|
-
โ
|
|
256
|
+
Visual mission control for your projects:
|
|
257
|
+
|
|
258
|
+
```
|
|
259
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
260
|
+
โ ๐ CodyMaster Dashboard โ
|
|
261
|
+
โ Tasks โ Progress โ Tokens โ Logs โ
|
|
262
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
320
263
|
```
|
|
321
264
|
|
|
322
|
-
|
|
265
|
+
```bash
|
|
266
|
+
cm dashboard start # Start the dashboard
|
|
267
|
+
cm dashboard open # Open in browser
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
Track tasks, monitor progress, see what your AI team is doing โ all in one screen.
|
|
323
271
|
|
|
324
272
|
---
|
|
325
273
|
|
|
326
|
-
##
|
|
274
|
+
## How It Works Under the Hood
|
|
275
|
+
|
|
276
|
+
For the curious (skip this if you just want to build):
|
|
277
|
+
|
|
278
|
+
- **Memory System** โ Your AI remembers your project across sessions. No more re-explaining.
|
|
279
|
+
- **Skill Chaining** โ Skills talk to each other. Planning feeds into design, design feeds into code, code feeds into tests.
|
|
280
|
+
- **Behavioral Discipline** โ Inspired by [Andrej Karpathy's AI coding rules](https://x.com/karpathy/status/2015883857489522876). Your AI thinks before coding, keeps things simple, makes surgical changes.
|
|
281
|
+
- **Multi-Layer Safety** โ Tests โ security scan โ staging โ production. Each layer catches what the previous missed.
|
|
282
|
+
- **Self-Healing** โ Skills learn from failures and improve over time.
|
|
327
283
|
|
|
328
|
-
|
|
329
|
-
| ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
330
|
-
| ๐ง **Engineering** | `cm-tdd` `cm-debugging` `cm-quality-gate` `cm-test-gate` `cm-code-review` `cm-clean-code` |
|
|
331
|
-
| โ๏ธ **Operations** | `cm-safe-deploy` `cm-identity-guard` `cm-secret-shield` `cm-security-gate` `cm-git-worktrees` `cm-terminal` `cm-safe-i18n` |
|
|
332
|
-
| ๐จ **Product & UX** | `cm-planning` `cm-design-system` `cm-ux-master` `cm-ui-preview` `cm-project-bootstrap` `cm-jtbd` `cm-brainstorm-idea` `cm-dockit` `cm-readit` |
|
|
333
|
-
| ๐ **Growth & CRO** | `cm-content-factory` `cm-auto-publisher` `cm-ads-tracker` `cm-cro-methodology` `cm-growth-hacking` `cm-booking-calendar` `cm-google-form` |
|
|
334
|
-
| ๐ข **Enterprise** | `cm-reactor` `cm-notebooklm` |
|
|
335
|
-
| ๐งฌ **Self-Healing** | `cm-skill-health` `cm-skill-evolution` `cm-skill-search` `cm-skill-share` `cm-skill-chain` `cm-skill-mastery` `cm-skill-index` |
|
|
336
|
-
| ๐ฏ **Orchestration** | `cm-execution` `cm-continuity` `cm-deep-search` `cm-codeintell` `cm-how-it-work` |
|
|
337
|
-
| ๐ฅ๏ธ **Workflow** | `cm-start` `cm-dashboard` `cm-status` |
|
|
284
|
+
๐ [Architecture deep dive โ](docs/architecture/codymaster-brain.md)
|
|
338
285
|
|
|
339
286
|
---
|
|
340
287
|
|
|
341
|
-
##
|
|
288
|
+
## For Teams & Advanced Users
|
|
342
289
|
|
|
343
|
-
|
|
290
|
+
### Multiple AI Agents
|
|
344
291
|
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
cm
|
|
349
|
-
cm
|
|
350
|
-
cm
|
|
351
|
-
cm dashboard [start|stop|status|open|url] โ Mission Control (default :6969)
|
|
352
|
-
cm agent [status|memory|brain|learn] โ Working memory / learnings
|
|
353
|
-
cm brain โ Continuity + next actions
|
|
354
|
-
cm chain <cmd> [args...] โ Skill chain execution
|
|
355
|
-
cm config [key] [value] โ Config helper
|
|
356
|
-
cm open โ Open dashboard in browser
|
|
357
|
-
cm browse โฆ โ Local Playwright browse daemon (QA)
|
|
358
|
-
cm guardian โฆ โ Destructive-command / path checks
|
|
359
|
-
cm sprint โฆ โ Sprint pipeline + .cm/sprint
|
|
360
|
-
cm design-studio [init|status]
|
|
361
|
-
cm distro validate โฆ โ Validate skill pack layout
|
|
292
|
+
Works with 14+ platforms out of the box:
|
|
293
|
+
|
|
294
|
+
```bash
|
|
295
|
+
cm install claude-code --profile core
|
|
296
|
+
cm install cursor --profile growth
|
|
297
|
+
cm install gemini --profile full
|
|
362
298
|
```
|
|
363
299
|
|
|
364
|
-
|
|
300
|
+
### MCP Server
|
|
365
301
|
|
|
366
|
-
|
|
302
|
+
Use CodyMaster as an MCP server for Claude Desktop:
|
|
367
303
|
|
|
368
304
|
```bash
|
|
369
|
-
|
|
370
|
-
pip install openviking && openviking start
|
|
371
|
-
# Then set storage.backend: viking in .cm/config.yaml
|
|
305
|
+
npx codymaster mcp-serve --install-claude
|
|
372
306
|
```
|
|
373
307
|
|
|
374
|
-
|
|
308
|
+
### Goose Integration
|
|
375
309
|
|
|
376
|
-
```
|
|
377
|
-
|
|
378
|
-
/cm:plan โ Plan a feature with analysis
|
|
379
|
-
/cm:build โ Build with strict TDD
|
|
380
|
-
/cm:debug โ Systematic debugging
|
|
381
|
-
/cm:ux โ Design system extraction & UI preview
|
|
310
|
+
```bash
|
|
311
|
+
cm mcp-serve --print-config # Paste into Goose config
|
|
382
312
|
```
|
|
383
313
|
|
|
384
|
-
|
|
314
|
+
๐ [All integrations โ](docs/integrations/)
|
|
385
315
|
|
|
386
|
-
|
|
316
|
+
---
|
|
387
317
|
|
|
388
|
-
|
|
318
|
+
## Contributing
|
|
389
319
|
|
|
390
|
-
|
|
320
|
+
1. โญ **Star the repo** โ helps more builders find this
|
|
321
|
+
2. Fork โ Create `skills/cm-your-skill/SKILL.md`
|
|
322
|
+
3. Submit a Pull Request
|
|
391
323
|
|
|
392
|
-
|
|
324
|
+
CI runs `npm run test:gate:kit` on every push and PR.
|
|
393
325
|
|
|
394
326
|
---
|
|
395
327
|
|
|
396
|
-
##
|
|
328
|
+
## Resources
|
|
397
329
|
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
330
|
+
| Resource | Link |
|
|
331
|
+
|----------|------|
|
|
332
|
+
| ๐ Website | [cody.todyle.com](https://cody.todyle.com) |
|
|
333
|
+
| ๐ Docs | [cody.todyle.com/docs](https://cody.todyle.com/docs) |
|
|
334
|
+
| ๐ Repo Docs | [docs/index.md](docs/index.md) |
|
|
335
|
+
| ๐จ Design Pipeline | [docs/design-pipeline.md](docs/design-pipeline.md) |
|
|
336
|
+
| ๐ ๏ธ Skills | [skills/](skills/) |
|
|
337
|
+
| ๐ Our Story | [cody.todyle.com/story](https://cody.todyle.com/story) |
|
|
403
338
|
|
|
404
339
|
---
|
|
405
340
|
|
|
406
|
-
##
|
|
341
|
+
## Who Built This
|
|
407
342
|
|
|
408
|
-
|
|
409
|
-
2. Fork โ Create `skills/cm-your-skill/SKILL.md`
|
|
410
|
-
3. Submit a Pull Request
|
|
343
|
+
**Tody Le** โ Head of Product with 10+ years of experience. Can't write code. Used AI to build real products for 6 months straight. Every skill in this kit was born from a real failure that cost real time and real tears.
|
|
411
344
|
|
|
412
|
-
|
|
345
|
+
> *"50+ skills. Each skill is a lesson. Each lesson is a sleepless night. And now, you don't have to go through those nights."*
|
|
413
346
|
|
|
414
347
|
---
|
|
415
348
|
|
|
416
|
-
|
|
349
|
+
*ISC License โ Free to use, modify, and distribute.*
|
|
417
350
|
|
|
418
|
-
*ISC License โ Free to use, modify, and distribute.* <br/>
|
|
419
351
|
**Built with โค๏ธ for the vibe coding community.**
|
|
420
352
|
|
|
421
353
|
*"CodyMaster" = "Code ฤi" (Vietnamese: "Go code!") โ just start building.*
|
|
422
|
-
|
|
423
|
-
</div>
|