@docyrus/docyrus 0.0.17 → 0.0.19
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 +8 -0
- package/agent-loader.js +2640 -0
- package/agent-loader.js.map +7 -0
- package/main.js +74 -108
- package/main.js.map +2 -2
- package/package.json +5 -2
- package/resources/pi-agent/skills/docyrus-api-dev/references/data-source-query-guide.md +2 -2
- package/resources/pi-agent/skills/docyrus-api-dev/references/formula-design-guide-llm.md +1 -1
- package/resources/pi-agent/skills/docyrus-app-dev/references/data-source-query-guide.md +2 -2
- package/resources/pi-agent/skills/docyrus-app-dev/references/formula-design-guide-llm.md +1 -1
- package/resources/pi-agent/skills/docyrus-architect/references/data-source-query-guide.md +2 -2
- package/resources/pi-agent/skills/docyrus-architect/references/formula-design-guide-llm.md +1 -1
- package/resources/pi-agent/skills/docyrus-architect/references/formula-reference.md +2 -2
package/README.md
CHANGED
|
@@ -190,6 +190,7 @@ Launch the scoped pi assistant and coding agent:
|
|
|
190
190
|
|
|
191
191
|
```bash
|
|
192
192
|
# Interactive TUI
|
|
193
|
+
# First interactive launch opens the DOCYRUS onboarding wizard if no provider is configured yet.
|
|
193
194
|
docyrus agent
|
|
194
195
|
docyrus coder
|
|
195
196
|
|
|
@@ -201,3 +202,10 @@ docyrus coder "Add a command to list my team dashboards"
|
|
|
201
202
|
docyrus agent --print "Which tenant am I using?"
|
|
202
203
|
docyrus coder --print --mode json "Summarize the CLI command surface in this repo"
|
|
203
204
|
```
|
|
205
|
+
|
|
206
|
+
Inside the interactive agent TUI:
|
|
207
|
+
|
|
208
|
+
```bash
|
|
209
|
+
/login # browser or API-key provider chooser
|
|
210
|
+
/logout # remove saved provider configuration
|
|
211
|
+
```
|