@plazmodium/odin 0.3.2-beta → 0.3.3-beta
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 +66 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,7 +42,61 @@ Important: Odin bootstraps with `runtime.mode: in_memory` by default so MCP wiri
|
|
|
42
42
|
|
|
43
43
|
Until `@plazmodium/odin` is actually published, use the repo-checkout `--distribution source` flow shown above.
|
|
44
44
|
|
|
45
|
-
If you are the maintainer preparing that publish, use [
|
|
45
|
+
If you are the maintainer preparing that publish, use [the npm publish guide](https://github.com/Plazmodium/odin-workflow/blob/dev/docs/guides/NPM-PUBLISH.md).
|
|
46
|
+
|
|
47
|
+
### Manual MCP wiring
|
|
48
|
+
|
|
49
|
+
If you do not want Odin to write your harness config for you, add the MCP server manually.
|
|
50
|
+
|
|
51
|
+
For Claude Code / Amp:
|
|
52
|
+
|
|
53
|
+
```json
|
|
54
|
+
{
|
|
55
|
+
"mcpServers": {
|
|
56
|
+
"odin": {
|
|
57
|
+
"command": "npx",
|
|
58
|
+
"args": ["-y", "@plazmodium/odin", "mcp"],
|
|
59
|
+
"env": {
|
|
60
|
+
"ODIN_PROJECT_ROOT": "/absolute/path/to/your/project"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
For OpenCode:
|
|
68
|
+
|
|
69
|
+
```json
|
|
70
|
+
{
|
|
71
|
+
"$schema": "https://opencode.ai/config.json",
|
|
72
|
+
"mcp": {
|
|
73
|
+
"odin": {
|
|
74
|
+
"type": "local",
|
|
75
|
+
"command": [
|
|
76
|
+
"npx",
|
|
77
|
+
"-y",
|
|
78
|
+
"@plazmodium/odin",
|
|
79
|
+
"mcp"
|
|
80
|
+
],
|
|
81
|
+
"enabled": true,
|
|
82
|
+
"environment": {
|
|
83
|
+
"ODIN_PROJECT_ROOT": "/absolute/path/to/your/project"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
For Codex:
|
|
91
|
+
|
|
92
|
+
```toml
|
|
93
|
+
[mcp_servers.odin]
|
|
94
|
+
command = "npx"
|
|
95
|
+
args = ["-y", "@plazmodium/odin", "mcp"]
|
|
96
|
+
env = { ODIN_PROJECT_ROOT = "/absolute/path/to/your/project" }
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
For Cursor, use the same command, args, and env values in the MCP Servers settings UI.
|
|
46
100
|
|
|
47
101
|
### 3. Add your database credentials
|
|
48
102
|
|
|
@@ -102,6 +156,17 @@ Your AI agent now has these tools available:
|
|
|
102
156
|
| `odin.explore_knowledge` | Explore knowledge clusters, cross-domain bridges, and domain stats |
|
|
103
157
|
| `odin.apply_migrations` | Apply pending database migrations (auto-detects existing schema) |
|
|
104
158
|
|
|
159
|
+
## Dashboard
|
|
160
|
+
|
|
161
|
+
`@plazmodium/odin` ships the MCP runtime only. It does **not** bundle the Next.js dashboard.
|
|
162
|
+
|
|
163
|
+
If you want the dashboard UI for feature health, learnings, claims, and eval visibility, use the full Odin repository:
|
|
164
|
+
|
|
165
|
+
- Repo: https://github.com/Plazmodium/odin-workflow
|
|
166
|
+
- Dashboard app: https://github.com/Plazmodium/odin-workflow/tree/dev/dashboard
|
|
167
|
+
|
|
168
|
+
The dashboard is a separate app and is not included in the npm tarball.
|
|
169
|
+
|
|
105
170
|
## Configuration
|
|
106
171
|
|
|
107
172
|
Odin uses two files:
|
package/package.json
CHANGED