@brainervirus/workit-codex 1.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/.codex-plugin/plugin.json +32 -0
- package/.mcp.json +9 -0
- package/README.md +29 -0
- package/dist/launch-mcp.js +27803 -0
- package/dist/workit-hook.js +13183 -0
- package/hooks/hooks.json +28 -0
- package/package.json +43 -0
- package/skills/workit-babysit/SKILL.md +33 -0
- package/skills/workit-behavioral-tdd/SKILL.md +53 -0
- package/skills/workit-blast-radius/SKILL.md +31 -0
- package/skills/workit-challenge/SKILL.md +62 -0
- package/skills/workit-debug/SKILL.md +61 -0
- package/skills/workit-deslop/SKILL.md +36 -0
- package/skills/workit-diagram/SKILL.md +32 -0
- package/skills/workit-green-run/SKILL.md +29 -0
- package/skills/workit-handoff/SKILL.md +43 -0
- package/skills/workit-implement/SKILL.md +46 -0
- package/skills/workit-mockup/SKILL.md +28 -0
- package/skills/workit-plan/SKILL.md +66 -0
- package/skills/workit-review/SKILL.md +60 -0
- package/skills/workit-steer/SKILL.md +32 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "workit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Adaptive engineering workflow rails for Codex",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "BrainerVirus"
|
|
7
|
+
},
|
|
8
|
+
"repository": "https://github.com/BrainerVirus/workit",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"agent",
|
|
12
|
+
"codex",
|
|
13
|
+
"mcp",
|
|
14
|
+
"workflow"
|
|
15
|
+
],
|
|
16
|
+
"skills": "./skills/",
|
|
17
|
+
"mcpServers": "./.mcp.json",
|
|
18
|
+
"interface": {
|
|
19
|
+
"displayName": "Workit",
|
|
20
|
+
"shortDescription": "Adaptive engineering workflow rails for Codex",
|
|
21
|
+
"longDescription": "Shared task policy, evidence, and truthful host capability reporting for Codex CLI and desktop.",
|
|
22
|
+
"developerName": "BrainerVirus",
|
|
23
|
+
"category": "Developer Tools",
|
|
24
|
+
"capabilities": [
|
|
25
|
+
"MCP",
|
|
26
|
+
"Task continuity"
|
|
27
|
+
],
|
|
28
|
+
"defaultPrompt": [
|
|
29
|
+
"Inspect the current Workit task state."
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
}
|
package/.mcp.json
ADDED
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @brainervirus/workit-codex
|
|
2
|
+
|
|
3
|
+
[](https://github.com/BrainerVirus/workit/actions/workflows/ci.yml)
|
|
4
|
+
[](../../LICENSE)
|
|
5
|
+
|
|
6
|
+
Workit plugin for Codex CLI and desktop — native manifest, documented hooks, the shared MCP transport, and fourteen method skills. Reads run over MCP; mutations run CLI-driven, because caller-unattested MCP cannot attest effects.
|
|
7
|
+
|
|
8
|
+
## Requirements
|
|
9
|
+
|
|
10
|
+
- **Node.js ≥ 24**
|
|
11
|
+
- Codex CLI (`codex`) or Codex desktop
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
Register the plugin manifest and hooks per the Codex docs, pointing the MCP launcher at this package:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
workit-codex-mcp # shared-transport MCP server (reads)
|
|
19
|
+
workit-codex-hook # documented SessionStart/PreToolUse/subagent hooks
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
node_modules/.bin/workit <family> <action> --json --confirm # mutations (CLI-driven)
|
|
26
|
+
workit writer acquire --actor <session-id> # bind a writer to this session explicitly
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
The hook honors exactly the bound session and nothing else. Arbitrary-question receipts and attested writer delegation are unavailable on this host by design. See `skills/` for the fourteen `workit-*` method skills.
|