@duypham93/openkit 0.2.2 → 0.2.3
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/README.md +2 -0
- package/agents/architect-agent.md +0 -1
- package/agents/ba-agent.md +0 -1
- package/agents/code-reviewer.md +0 -1
- package/agents/fullstack-agent.md +0 -1
- package/agents/master-orchestrator.md +0 -1
- package/agents/pm-agent.md +0 -1
- package/agents/qa-agent.md +0 -1
- package/agents/tech-lead-agent.md +0 -1
- package/assets/install-bundle/opencode/agents/ArchitectAgent.md +0 -1
- package/assets/install-bundle/opencode/agents/BAAgent.md +0 -1
- package/assets/install-bundle/opencode/agents/CodeReviewer.md +0 -1
- package/assets/install-bundle/opencode/agents/FullstackAgent.md +0 -1
- package/assets/install-bundle/opencode/agents/MasterOrchestrator.md +0 -1
- package/assets/install-bundle/opencode/agents/PMAgent.md +0 -1
- package/assets/install-bundle/opencode/agents/QAAgent.md +0 -1
- package/assets/install-bundle/opencode/agents/TechLeadAgent.md +0 -1
- package/docs/operations/internal-records/2026-03-24-release-checklist.md +5 -4
- package/docs/operator/README.md +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -85,6 +85,8 @@ Preferred global path:
|
|
|
85
85
|
4. Run `openkit upgrade` to refresh the installed global kit when a newer package version is available.
|
|
86
86
|
5. Run `openkit uninstall [--remove-workspaces]` when you need to remove the global kit and optionally clear workspace state.
|
|
87
87
|
|
|
88
|
+
Inside the OpenCode session opened by `openkit run`, OpenKit defaults to the `master-orchestrator` agent. Use `Ctrl+P` to open the command palette and run OpenKit commands like `/task`, `/quick-task`, `/migrate`, or `/delivery`.
|
|
89
|
+
|
|
88
90
|
In this worktree today:
|
|
89
91
|
|
|
90
92
|
- the global install path is implemented for the `openkit` CLI and is now the preferred user experience.
|
package/agents/ba-agent.md
CHANGED
package/agents/code-reviewer.md
CHANGED
package/agents/pm-agent.md
CHANGED
package/agents/qa-agent.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# OpenKit 0.2.
|
|
1
|
+
# OpenKit 0.2.3 Release Checklist
|
|
2
2
|
|
|
3
3
|
Date: 2026-03-24
|
|
4
4
|
|
|
@@ -11,7 +11,7 @@ Date: 2026-03-24
|
|
|
11
11
|
|
|
12
12
|
## Pre-Publish
|
|
13
13
|
|
|
14
|
-
- confirm `package.json` version is `0.2.
|
|
14
|
+
- confirm `package.json` version is `0.2.3`
|
|
15
15
|
- confirm docs describe `npm install -g @duypham93/openkit` and `openkit run` as the preferred path
|
|
16
16
|
- confirm release note draft is up to date in `docs/operations/internal-records/2026-03-24-simplified-install-ux.md`
|
|
17
17
|
- run:
|
|
@@ -26,13 +26,14 @@ node --test tests/cli/openkit-cli.test.js tests/global/*.test.js tests/runtime/*
|
|
|
26
26
|
npm pack
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
- verify the tarball name is `duypham93-openkit-0.2.
|
|
29
|
+
- verify the tarball name is `duypham93-openkit-0.2.3.tgz`
|
|
30
30
|
|
|
31
31
|
## Local Smoke Test
|
|
32
32
|
|
|
33
33
|
- install the tarball into a temporary prefix
|
|
34
34
|
- verify `openkit --help` shows the new quickstart
|
|
35
35
|
- verify `openkit run` performs first-time setup and hands off to `opencode`
|
|
36
|
+
- verify the materialized kit can load the `master-orchestrator` agent and OpenKit commands through the OpenCode config directory
|
|
36
37
|
|
|
37
38
|
## Publish
|
|
38
39
|
|
|
@@ -40,7 +41,7 @@ npm pack
|
|
|
40
41
|
- publish the package from the repository root:
|
|
41
42
|
|
|
42
43
|
```bash
|
|
43
|
-
npm publish
|
|
44
|
+
npm publish --access public
|
|
44
45
|
```
|
|
45
46
|
|
|
46
47
|
- if using the packed tarball path explicitly, publish the generated archive instead
|
package/docs/operator/README.md
CHANGED
|
@@ -17,6 +17,7 @@ Use it to find the right live docs quickly. Do not treat it as a canonical repla
|
|
|
17
17
|
- Read `README.md` for the top-level product and runtime boundary summary
|
|
18
18
|
- Read `docs/operations/runbooks/openkit-daily-usage.md` for the detailed day-to-day usage path in this repository
|
|
19
19
|
- Install the CLI with `npm install -g @duypham93/openkit`, then run `openkit run` for first-time setup and `openkit doctor` to verify readiness
|
|
20
|
+
- Once OpenCode is open, use `Ctrl+P` and choose `/task`, `/quick-task`, `/migrate`, or `/delivery` to enter the right workflow lane
|
|
20
21
|
- Use `/task` unless you already know the work must start in `Quick Task`, `Migration`, or `Full Delivery`
|
|
21
22
|
- Use `context/navigation.md` when you need to locate deeper workflow or standards references
|
|
22
23
|
|