@polygraph/opencode-plugin 0.4.32 → 0.4.33

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.
Files changed (2) hide show
  1. package/README.md +13 -65
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  <h1 align="center">Polygraph Skills</h1>
9
9
 
10
10
  <p align="center">
11
- AI agent skills and subagents for <a href="https://nx.dev/features/polygraph">Polygraph</a> multi-repo coordination.
11
+ AI agent skills and subagents for <a href="https://trypolygraph.com/">Polygraph</a> — the meta-harness for maximum agentic autonomy, giving agents visibility across every repo and memory that survives every session.
12
12
  </p>
13
13
 
14
14
  <p align="center">
@@ -23,7 +23,17 @@
23
23
 
24
24
  ## What is Polygraph?
25
25
 
26
- Polygraph is a standalone product for coordinating changes across multiple repositories. It lets AI agents delegate work to child agents in other repos, monitor CI across repos, and manage multi-repo sessions.
26
+ Polygraph is a meta-harness for maximum agentic autonomy. It works with the agents you already use and gives them what they're missing: visibility across every repo boundary, and memory that survives every session. Agents discover how repositories relate, coordinate changes across them, and hand off or resume work later with repos, branches, PRs, and logs all preserved.
27
+
28
+ ## Setup
29
+
30
+ Run the interactive setup and follow the prompts:
31
+
32
+ ```sh
33
+ polygraph config
34
+ ```
35
+
36
+ It detects your AI agent — Claude Code, Codex, OpenCode, and more — and installs the Polygraph skills and subagents for it. Re-run it any time to add another agent or update an existing install.
27
37
 
28
38
  ## Skills
29
39
 
@@ -36,66 +46,6 @@ Polygraph is a standalone product for coordinating changes across multiple repos
36
46
  - **polygraph-init-subagent** — Discovers candidate repositories and initializes a Polygraph session
37
47
  - **polygraph-delegate-subagent** — Delegates work to a child agent in another repository, polls for completion
38
48
 
39
- ## Codex Installer
40
-
41
- The publishable Codex package now exposes an explicit installer CLI:
42
-
43
- ```sh
44
- npx @polygraph/codex-plugin
45
- ```
46
-
47
- That command copies the packaged Codex plugin into:
48
-
49
- ```text
50
- ~/.agents/plugins/polygraph
51
- ```
52
-
53
- installs the packaged custom Codex subagents into:
54
-
55
- ```text
56
- $CODEX_HOME/agents
57
- ```
58
-
59
- updates the personal Codex marketplace at:
60
-
61
- ```text
62
- ~/.agents/plugins/marketplace.json
63
- ```
64
-
65
- so the `polygraph` plugin points at `./.agents/plugins/polygraph`, and enables the plugin in:
66
-
67
- ```text
68
- $CODEX_HOME/config.toml
69
- ```
70
-
71
- `CODEX_HOME` defaults to `~/.codex` when unset.
72
-
73
- To verify an install, run:
74
-
75
- ```sh
76
- npx @polygraph/codex-plugin check
77
- ```
78
-
79
- ## OpenCode Plugin
80
-
81
- The publishable OpenCode package exposes the skills and subagents through OpenCode's native plugin system. Add it to `opencode.json`:
82
-
83
- ```json
84
- {
85
- "plugin": ["@polygraph/opencode-plugin"]
86
- }
87
- ```
88
-
89
- For repeatable installs, pin the npm version:
90
-
91
- ```json
92
- {
93
- "plugin": ["@polygraph/opencode-plugin@0.4.18"]
94
- }
95
- ```
96
-
97
- The plugin adds its packaged `skills/` directory to OpenCode's skill paths and registers the packaged Markdown agents as `subagent` entries in OpenCode config during startup.
98
-
99
49
  ## Development
100
50
 
101
51
  ```sh
@@ -118,10 +68,8 @@ For the strictest release flow, do not allow direct `npm publish` for the truste
118
68
 
119
69
  ## Learn More
120
70
 
121
- - **[Polygraph](https://nx.dev/features/polygraph)** — Multi-repo coordination with Polygraph
71
+ - **[Polygraph](https://trypolygraph.com/)** — The meta-harness for maximum agentic autonomy
122
72
  - **[@polygraph/mcp](https://www.npmjs.com/package/@polygraph/mcp)** — The MCP server that powers Polygraph tools
123
- - **[Nx AI Agent Skills](https://github.com/nrwl/nx-ai-agents-config)** — The main Nx AI agent skills repo
124
-
125
73
  ## License
126
74
 
127
75
  License information is defined in the package metadata.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polygraph/opencode-plugin",
3
- "version": "0.4.32",
3
+ "version": "0.4.33",
4
4
  "description": "AI agent skills and subagents for Polygraph multi-repo coordination",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,