Files
codex-game-studio/package.json
T
c5b75809bf feat: add compact agent context helpers (#13)
* feat: add compact agent context helpers

* feat: wire context helpers into agent surfaces

* fix: make changed context helper degrade safely

* refactor: compact overlapping skill surfaces

* chore: refresh prompt surface matrix after skill compaction

* fix: preserve skill arguments and decision gates

* refactor: fold context helper hints into contracts

* refactor: centralize shared context guidance in AGENTS

---------

Co-authored-by: MerlinH <merlinh221@gmail.com>
2026-07-08 02:26:02 +10:00

50 lines
1.4 KiB
JSON

{
"name": "codex-game-studio",
"version": "0.1.0",
"description": "Codex-native CLI workflow layer for game projects.",
"author": "MerlinH",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24"
},
"files": [
"dist/",
"engine_configs/",
"engine_reference/",
"templates/",
"AGENTS.md",
".codex/agents/",
".codex/workflows/",
".agents/skills/"
],
"bin": {
"codex-game-studio": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --import tsx --test --test-concurrency=1",
"validate": "npm run build --silent && node dist/cli.js validate",
"init": "npm run build --silent && node dist/cli.js init",
"manage": "npm run build --silent && node dist/cli.js status",
"templates": "npm run build --silent && node dist/cli.js templates",
"ctx:studio": "tsx src/cli.ts context studio",
"ctx:role": "tsx src/cli.ts context role",
"ctx:workflow": "tsx src/cli.ts context workflow",
"ctx:task": "tsx src/cli.ts context task",
"ctx:changed": "tsx src/cli.ts context changed"
},
"dependencies": {
"commander": "^12.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.13.2",
"expect": "^30.4.1",
"truthmark": "^2.2.6",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}