feat(omo-codex): add start-work continuation component

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-05-28 16:14:42 +09:00
parent 38265c5993
commit ced472dedf
30 changed files with 1125 additions and 0 deletions
@@ -0,0 +1,53 @@
{
"name": "@code-yeongyu/codex-start-work-continuation",
"version": "0.1.0",
"description": "Codex Stop hook continuation injector for omo-codex start-work plans.",
"type": "module",
"packageManager": "npm@11.12.1",
"license": "MIT",
"homepage": "https://github.com/code-yeongyu/codex-start-work-continuation",
"repository": {
"type": "git",
"url": "git+https://github.com/code-yeongyu/codex-start-work-continuation.git"
},
"bugs": {
"url": "https://github.com/code-yeongyu/codex-start-work-continuation/issues"
},
"keywords": [
"codex",
"codex-plugin",
"start-work",
"continuation",
"hooks",
"boulder"
],
"bin": {
"codex-start-work-continuation": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest --run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"check": "tsc --noEmit && biome check . && npm run build"
},
"files": [
"dist",
"directive.md",
"hooks",
"README.md",
"LICENSE",
"NOTICE"
],
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "^25.7.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20.0.0"
}
}