Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 39 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@
"scripts": {
"init": "./scripts/init-cafe.sh",
"preinstall": "node scripts/check-node-runtime.mjs",
"pregate": "node scripts/check-validation-node-runtime.mjs",
"gate": "bash ./scripts/pre-merge-check.sh",
"prebuild": "node scripts/check-validation-node-runtime.mjs",
"pretest": "node scripts/check-validation-node-runtime.mjs",
"prelint": "node scripts/check-validation-node-runtime.mjs",
"precheck": "node scripts/check-validation-node-runtime.mjs",
"guards:install": "bash ./scripts/install-git-guards.sh",
"start": "node ./scripts/start-entry.mjs start",
"stop": "./scripts/start-dev.sh --stop",
Expand All @@ -19,8 +24,11 @@
"alpha:start": "./scripts/alpha-worktree.sh start",
"alpha:status": "./scripts/alpha-worktree.sh status",
"f210:agy-profile-smoke": "pnpm --filter @cat-cafe/api run smoke:f210-agy-profiles",
"pref210:agy-profile-smoke": "node scripts/check-validation-node-runtime.mjs",
"alpha:test": "bash ./scripts/alpha-worktree.test.sh",
"prealpha:test": "node scripts/check-validation-node-runtime.mjs",
"runtime:test": "bash ./scripts/runtime-worktree.test.sh",
"preruntime:test": "node scripts/check-validation-node-runtime.mjs",
"develop:init": "./scripts/develop-worktree.sh init",
"develop:sync": "./scripts/develop-worktree.sh sync",
"develop:start": "./scripts/develop-worktree.sh start",
Expand Down Expand Up @@ -79,11 +87,13 @@
"check:sop-definitions": "node --test scripts/sop-definitions.test.mjs && node scripts/sop-definitions.mjs --check",
"check:followup-tails": "node scripts/check-followup-tails.mjs",
"audit:feature-docs": "node scripts/audit-feature-doc-template.mjs",
"preaudit:feature-docs": "node scripts/check-validation-node-runtime.mjs",
"check:skills": "bash scripts/check-skills-mount.sh",
"check:skills:manifest": "node scripts/check-skills-manifest.mjs",
"check:skills:surfaces": "node --test scripts/check-skill-first-party-surfaces.test.mjs && node scripts/check-skill-first-party-surfaces.mjs",
"check:pre-merge-gate": "node --test scripts/pre-merge-check.test.mjs scripts/pre-merge-gate-guard.test.mjs scripts/test-bash-runtime.test.mjs",
"check:hotfix-pattern": "node --test scripts/check-hotfix-pattern.test.mjs",
"premcp:doctor": "node scripts/check-validation-node-runtime.mjs",
"mcp:doctor": "node scripts/mcp-doctor.mjs",
"convention-graph": "pnpm --filter @cat-cafe/convention-graph convention-graph",
"convention-graph:index": "pnpm --filter @cat-cafe/convention-graph graph:index",
Expand All @@ -96,7 +106,35 @@
"clean": "pnpm -r run clean && rm -rf node_modules",
"check:start-profile-isolation": "node --test scripts/start-dev-profile-isolation.test.mjs",
"check:brand-dictionary": "node --test scripts/brand-dictionary-helper.test.mjs",
"check:brand-guard": "node --test scripts/intake-from-opensource.test.mjs scripts/lib/intake-gh-retry.test.mjs"
"check:brand-guard": "node --test scripts/intake-from-opensource.test.mjs scripts/lib/intake-gh-retry.test.mjs",
"precheck:biome-review-worktrees": "node scripts/check-validation-node-runtime.mjs",
"precheck:biome-version": "node scripts/check-validation-node-runtime.mjs",
"precheck:brand-dictionary": "node scripts/check-validation-node-runtime.mjs",
"precheck:brand-guard": "node scripts/check-validation-node-runtime.mjs",
"precheck:capability-tips": "node scripts/check-validation-node-runtime.mjs",
"precheck:capability-tips:stale": "node scripts/check-validation-node-runtime.mjs",
"precheck:deps": "node scripts/check-validation-node-runtime.mjs",
"precheck:dir-size": "node scripts/check-validation-node-runtime.mjs",
"precheck:env-example": "node scripts/check-validation-node-runtime.mjs",
"precheck:env-ports": "node scripts/check-validation-node-runtime.mjs",
"precheck:env-registry": "node scripts/check-validation-node-runtime.mjs",
"precheck:features": "node scripts/check-validation-node-runtime.mjs",
"precheck:fix": "node scripts/check-validation-node-runtime.mjs",
"precheck:followup-tails": "node scripts/check-validation-node-runtime.mjs",
"precheck:guides": "node scripts/check-validation-node-runtime.mjs",
"precheck:hotfix-pattern": "node scripts/check-validation-node-runtime.mjs",
"precheck:lockfile": "node scripts/check-validation-node-runtime.mjs",
"precheck:pre-merge-gate": "node scripts/check-validation-node-runtime.mjs",
"precheck:scripts-ascii-only": "node scripts/check-validation-node-runtime.mjs",
"precheck:skills": "node scripts/check-validation-node-runtime.mjs",
"precheck:skills:manifest": "node scripts/check-validation-node-runtime.mjs",
"precheck:skills:surfaces": "node scripts/check-validation-node-runtime.mjs",
"precheck:sop-definitions": "node scripts/check-validation-node-runtime.mjs",
"precheck:start-profile-isolation": "node scripts/check-validation-node-runtime.mjs",
"precheck:video-new": "node scripts/check-validation-node-runtime.mjs",
"precheck:worktree-port-offset": "node scripts/check-validation-node-runtime.mjs",
"pretest:api:redis": "node scripts/check-validation-node-runtime.mjs",
"pretest:api:redis:repeat": "node scripts/check-validation-node-runtime.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.4.1",
Expand Down
Loading