-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (111 loc) · 6.26 KB
/
package.json
File metadata and controls
112 lines (111 loc) · 6.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@kamishino/kamiflow-codex",
"version": "0.1.0",
"description": "Kami Flow CLI with in-repo dogfooding fixtures.",
"type": "module",
"bin": {
"kfc": "bin/kamiflow.js",
"kf": "bin/kamiflow.js"
},
"engines": {
"node": ">=20"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "npm run dev:cli",
"dev": "npm run dev:cli",
"dev:cli": "node bin/kamiflow.js",
"test": "npm run test:fast",
"test:fast": "npm run kfc-plan:test && npm run kfc-session:test && npm run kfc-chat:test && npm run kfc-web:test && npm run verify:skills-contract && npm run verify:codex-intelligence",
"test:integration": "npm run kfc-plan:test:integration && npm run remote:smoke",
"test:full": "npm run test:fast && npm run test:integration",
"verify:all": "npm run test && npm run verify:governance && npm run verify:kfc-plan-design-system && npm run verify:quickstart && npm run verify:client-kickoff",
"build": "node -e \"console.log('No build step. Running from source ESM.')\"",
"typecheck": "node -e \"console.log('TypeScript typecheck not configured yet.')\"",
"codex:setup": "node scripts/codex/setup-local.mjs",
"codex:sync": "node scripts/codex/sync-resources-to-agents.mjs",
"codex:sync:skills": "node scripts/codex/sync-resources-to-agents.mjs --only skills",
"codex:sync:rules": "node scripts/codex/sync-resources-to-agents.mjs --only rules",
"codex:sync:rules:dogfood": "node scripts/codex/sync-resources-to-agents.mjs --only rules --profile dogfood",
"codex:sync:rules:client": "node scripts/codex/sync-resources-to-agents.mjs --only rules --profile client",
"bootstrap": "npm run codex:setup && npm run codex:sync -- --scope repo --force && npm run hooks:enable",
"hooks:enable": "node scripts/git-hooks/enable-hooks.mjs",
"hooks:check": "node scripts/git-hooks/check-hooks.mjs",
"commit:codex": "pwsh -NoProfile -File scripts/git-hooks/commit-with-validation.ps1",
"commit:check": "git log -1 --pretty=%B | node scripts/git-hooks/commit-msg.mjs --stdin",
"kfc-plan:init": "node scripts/kfc-plan/run-kfc-plan.mjs init",
"kfc-web:serve": "node scripts/kfc-web/run-kfc-web.mjs serve",
"kfc-web:dev": "node scripts/kfc-web/run-kfc-web.mjs dev",
"kfc-web:test": "npm run -w @kamishino/kfc-web test",
"kfc-plan:serve": "node scripts/kfc-web/run-kfc-web.mjs serve --focus plan",
"kfc-plan:validate": "node scripts/kfc-plan/run-kfc-plan.mjs validate",
"kfc-plan:build": "npm run -w @kamishino/kfc-plan-web build",
"kfc-plan:test": "npm --prefix packages/kfc-plan-web run test:fast",
"kfc-plan:test:browser": "npm --prefix packages/kfc-plan-web run test:browser",
"kfc-plan:test:integration": "npm --prefix packages/kfc-plan-web run test:integration",
"kfc-plan:dev": "npm run kfc-plan:serve",
"kfc-plan:desktop": "npm run -w @kamishino/kfc-plan-desktop dev",
"kfc-plan:desktop:test": "npm run -w @kamishino/kfc-plan-desktop test",
"kfc-session:serve": "node scripts/kfc-web/run-kfc-web.mjs serve --focus session",
"kfc-session:test": "npm run -w @kamishino/kfc-session test",
"kfc-session:smoke": "node scripts/kfc-session/smoke-serve.mjs",
"kfc-chat:serve": "node scripts/kfc-web/run-kfc-web.mjs serve --focus chat",
"kfc-chat:test": "npm run -w @kamishino/kfc-chat test",
"kfc-chat:smoke": "node scripts/kfc-chat/smoke-serve.mjs",
"dogfood:link": "node scripts/dogfood/link-all.mjs",
"dogfood:unlink": "node scripts/dogfood/unlink-all.mjs",
"dogfood:smoke": "node scripts/dogfood/smoke.mjs",
"dogfood:pack-smoke": "node scripts/dogfood/pack-install-smoke.mjs",
"client:link-bootstrap": "node scripts/client/link-bootstrap.mjs",
"portability:smoke": "node scripts/portability/smoke-one-repo.mjs",
"remote:smoke": "node scripts/remote/smoke-remote-serve.mjs",
"release:plan": "node scripts/release/plan-release.mjs",
"release:cut": "node scripts/release/cut-release.mjs",
"version:next": "node scripts/release/semver-from-commits.mjs",
"pack:local": "npm pack",
"pack:commit": "node scripts/release/pack-commit.mjs",
"link:self": "npm link",
"docs:sync:quickstart": "node scripts/docs/sync-quickstart.mjs",
"docs:sync:client-kickoff": "node scripts/docs/sync-client-kickoff.mjs",
"verify:command-boundary": "node scripts/policy/verify-command-boundary.mjs",
"verify:codex-client-contract": "node scripts/policy/verify-codex-client-contract.mjs",
"verify:codex-intelligence": "node scripts/policy/verify-codex-intelligence-contract.mjs",
"verify:governance": "npm run verify:command-boundary && npm run verify:codex-client-contract && npm run verify:codex-intelligence",
"verify:skills-contract": "node scripts/policy/verify-kamiflow-skill-contract.mjs",
"verify:kfc-plan-timeline-contrast": "node scripts/policy/verify-kfc-plan-timeline-contrast.mjs",
"verify:kfc-plan-contrast": "node scripts/policy/verify-kfc-plan-contrast.mjs",
"verify:kfc-plan-spacing-grid": "node scripts/policy/verify-kfc-plan-spacing-grid.mjs",
"verify:kfc-plan-design-system": "npm run verify:kfc-plan-contrast && npm run verify:kfc-plan-spacing-grid",
"verify:quickstart": "node scripts/docs/sync-quickstart.mjs --verify",
"verify:client-kickoff": "node scripts/docs/sync-client-kickoff.mjs --verify",
"docs:verify-command-boundary": "npm run verify:command-boundary",
"docs:verify:codex-client-contract": "npm run verify:codex-client-contract",
"docs:verify:codex-intelligence": "npm run verify:codex-intelligence",
"docs:verify:codex-governance": "npm run verify:governance",
"docs:verify:skills-contract": "npm run verify:skills-contract",
"docs:verify:kfc-plan-timeline-contrast": "npm run verify:kfc-plan-timeline-contrast",
"docs:verify:kfc-plan-contrast": "npm run verify:kfc-plan-contrast",
"docs:verify:kfc-plan-spacing-grid": "npm run verify:kfc-plan-spacing-grid",
"docs:verify:kfc-plan-design-system": "npm run verify:kfc-plan-design-system",
"docs:verify:quickstart": "npm run verify:quickstart",
"docs:verify:client-kickoff": "npm run verify:client-kickoff"
},
"files": [
"bin",
"src",
"resources",
"README.md"
],
"keywords": [
"kamiflow",
"cli",
"dogfooding"
],
"license": "UNLICENSED"
,
"dependencies": {
"fastify": "5.6.1"
}
}