@hiai-gg/hiai-opencode 0.2.0 → 0.2.1
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/AGENTS.md +6 -6
- package/README.md +9 -9
- package/assets/cli/hiai-opencode.mjs +4 -4
- package/dist/agents/manager/default-prompt-sections.d.ts +2 -2
- package/dist/agents/strategist/behavioral-summary.d.ts +1 -1
- package/dist/agents/strategist/identity-constraints.d.ts +1 -1
- package/dist/features/background-agent/error-classifier.d.ts +1 -0
- package/dist/features/boulder-state/constants.d.ts +3 -0
- package/dist/features/boulder-state/storage.d.ts +94 -0
- package/dist/features/boulder-state/types.d.ts +17 -0
- package/dist/features/builtin-commands/templates/doctor.d.ts +1 -1
- package/dist/features/builtin-commands/templates/start-work.d.ts +1 -1
- package/dist/hooks/manager/resolve-active-boulder-session.d.ts +5 -0
- package/dist/hooks/manager/system-reminder-templates.d.ts +2 -2
- package/dist/hooks/start-work/context-info-builder.d.ts +2 -0
- package/dist/hooks/start-work/worktree-block.d.ts +2 -1
- package/dist/hooks/start-work/worktree-detector.d.ts +45 -0
- package/dist/hooks/strategist-md-only/agent-resolution.d.ts +1 -1
- package/dist/hooks/strategist-md-only/constants.d.ts +6 -0
- package/dist/index.js +758 -722
- package/docs/quickstart.md +1 -1
- package/package.json +2 -2
package/docs/quickstart.md
CHANGED
|
@@ -57,4 +57,4 @@ When Bob or Manager delegates to sub-agents, check the system reminders for `<sy
|
|
|
57
57
|
- Read [AGENTS.md](../AGENTS.md) to understand each agent's role
|
|
58
58
|
- Read [ARCHITECTURE.md](../ARCHITECTURE.md) to understand the plugin internals
|
|
59
59
|
- Edit `hiai-opencode.json` (or `.opencode/hiai-opencode.json`) to customize model slots and MCP enable/disable flags
|
|
60
|
-
- Run `hiai-opencode export-mcp .mcp.json` if you need `opencode mcp list` to show hiai MCP servers
|
|
60
|
+
- Run `hiai-opencode export-mcp .opencode/.mcp.json` if you need `opencode mcp list` to show hiai MCP servers
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hiai-gg/hiai-opencode",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Unified OpenCode plugin —
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Unified OpenCode plugin — 14-agent model (9 visible + 5 hidden) with MCP integrations, browser automation, bundled skills, LSP, and safer defaults.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|