@gonrocca/nodd 0.2.1 → 0.2.2
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 +24 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -87,6 +87,30 @@ steps**: they run no model and cannot be assigned one. `/nodd-models` shows them
|
|
|
87
87
|
as `mecanismo · sin modelo` and refuses an assignment. The other three are the
|
|
88
88
|
steps where a model actually does work.
|
|
89
89
|
|
|
90
|
+
## Choosing models
|
|
91
|
+
|
|
92
|
+
`/nodd-models` with no argument opens a picker: profiles, then slots, then the
|
|
93
|
+
providers and models of pi's live registry, then a thinking level. Nothing is
|
|
94
|
+
written until `— guardar y salir —`; leaving with `q` writes nothing at all.
|
|
95
|
+
|
|
96
|
+
A **profile** is a named set of assignments — `rapido`, `barato`, whatever you
|
|
97
|
+
call it — and the picker can create, edit, duplicate, activate and delete them.
|
|
98
|
+
The active profile is what the generated agents read. Editing a slot while a
|
|
99
|
+
profile is active edits that profile, so the two never drift apart silently.
|
|
100
|
+
|
|
101
|
+
The slot and the level both reach the generated agent's frontmatter as `model:`
|
|
102
|
+
and `thinking:`. **Changes apply to the next pi session**, not the running one:
|
|
103
|
+
the agent files are rewritten from the config when the extension loads, which
|
|
104
|
+
happens at startup.
|
|
105
|
+
|
|
106
|
+
The text forms do the same without the UI:
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
/nodd-models implement=anthropic/claude-opus-4-1
|
|
110
|
+
/nodd-models profile new rapido
|
|
111
|
+
/nodd-models profile use rapido
|
|
112
|
+
```
|
|
113
|
+
|
|
90
114
|
## The gates
|
|
91
115
|
|
|
92
116
|
| gate | fires on | refuses when |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gonrocca/nodd",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Non-negotiable Organic Driven Development — the ODD protocol as runtime mechanism for pi: blocking gates, observed evidence, and promotion to /forge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|