@plannotator/opencode 0.4.0 → 0.4.2-beta.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/README.md +18 -0
- package/dist/index.js +945 -0
- package/package.json +4 -5
- package/index.ts +0 -157
- package/plannotator.html +0 -458
package/README.md
CHANGED
|
@@ -49,6 +49,24 @@ Restart OpenCode. The `submit_plan` tool is now available.
|
|
|
49
49
|
- **Private sharing**: Plans and annotations compress into the URL itself—share a link, no accounts or backend required
|
|
50
50
|
- **Obsidian integration**: Auto-save approved plans to your vault with frontmatter and tags
|
|
51
51
|
|
|
52
|
+
## Devcontainer / Docker
|
|
53
|
+
|
|
54
|
+
Works in containerized environments. Set two env vars and forward the port:
|
|
55
|
+
|
|
56
|
+
```json
|
|
57
|
+
{
|
|
58
|
+
"containerEnv": {
|
|
59
|
+
"PLANNOTATOR_REMOTE": "1",
|
|
60
|
+
"PLANNOTATOR_PORT": "9999"
|
|
61
|
+
},
|
|
62
|
+
"forwardPorts": [9999]
|
|
63
|
+
}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Then open `http://localhost:9999` when `submit_plan` is called.
|
|
67
|
+
|
|
68
|
+
See [devcontainer.md](./devcontainer.md) for full setup details.
|
|
69
|
+
|
|
52
70
|
## Obsidian Integration
|
|
53
71
|
|
|
54
72
|
Save approved plans directly to your Obsidian vault.
|