@docyrus/docyrus 0.0.40 → 0.0.42
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 +7 -0
- package/main.js +3708 -1173
- package/main.js.map +4 -4
- package/package.json +8 -7
- package/resources/pi-agent/extensions/control.ts +0 -8
- package/resources/pi-agent/extensions/knowledge.ts +0 -7
- package/resources/pi-agent/extensions/loop.ts +1 -5
- package/resources/pi-agent/extensions/pi-bash-live-view/package.json +1 -1
- package/resources/pi-agent/extensions/pi-custom-compaction/events/register-events.ts +0 -10
- package/resources/pi-agent/extensions/pi-custom-compaction/package.json +4 -4
- package/resources/pi-agent/extensions/plan.ts +95 -4
- package/resources/pi-agent/extensions/prompt-editor.ts +0 -18
- package/resources/pi-agent/extensions/prompt-url-widget.ts +0 -4
- package/resources/pi-agent/extensions/review.ts +0 -4
- package/resources/pi-agent/extensions/tasks.ts +497 -0
- package/resources/pi-agent/extensions/todos.ts +102 -2
- package/resources/pi-agent/skills/agent-browser/SKILL.md +779 -0
- package/resources/pi-agent/skills/agent-browser/references/authentication.md +303 -0
- package/resources/pi-agent/skills/agent-browser/references/commands.md +295 -0
- package/resources/pi-agent/skills/agent-browser/references/profiling.md +120 -0
- package/resources/pi-agent/skills/agent-browser/references/proxy-support.md +194 -0
- package/resources/pi-agent/skills/agent-browser/references/session-management.md +193 -0
- package/resources/pi-agent/skills/agent-browser/references/snapshot-refs.md +219 -0
- package/resources/pi-agent/skills/agent-browser/references/video-recording.md +173 -0
- package/resources/pi-agent/skills/agent-browser/templates/authenticated-session.sh +105 -0
- package/resources/pi-agent/skills/agent-browser/templates/capture-workflow.sh +69 -0
- package/resources/pi-agent/skills/agent-browser/templates/form-automation.sh +62 -0
- package/resources/pi-agent/skills/docyrus-platform/references/docyrus-cli-usage.md +73 -0
- package/resources/pi-agent/skills/grill-me/SKILL.md +109 -0
- package/server-loader.js +24270 -3381
- package/server-loader.js.map +4 -4
package/README.md
CHANGED
|
@@ -35,12 +35,14 @@ docyrus env use live
|
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
Default environments:
|
|
38
|
+
|
|
38
39
|
- `live` -> `https://api.docyrus.com`
|
|
39
40
|
- `beta` -> `https://beta-api.docyrus.com`
|
|
40
41
|
- `alpha` -> `https://alpha-api.docyrus.com`
|
|
41
42
|
- `dev` -> `https://localhost:3366`
|
|
42
43
|
|
|
43
44
|
Aliases:
|
|
45
|
+
|
|
44
46
|
- `prod` -> `live`
|
|
45
47
|
|
|
46
48
|
## Authentication
|
|
@@ -246,6 +248,10 @@ When `docyrus/knowledge/` exists, `docyrus agent`, `docyrus coder`, and `docyrus
|
|
|
246
248
|
- `docyrus_knowledge_expand`
|
|
247
249
|
- `docyrus_knowledge_check`
|
|
248
250
|
|
|
251
|
+
When `docyrus/project-plan/project-plan.json` exists, `docyrus agent`, `docyrus coder`, and `docyrus server` also load:
|
|
252
|
+
|
|
253
|
+
- `project_task`
|
|
254
|
+
|
|
249
255
|
Inside the interactive agent TUI:
|
|
250
256
|
|
|
251
257
|
```bash
|
|
@@ -256,6 +262,7 @@ Inside the interactive agent TUI:
|
|
|
256
262
|
/end-architect # alias for leaving an architect planning session
|
|
257
263
|
/plan-policy # show the effective planning-model policy and the resolved planning model
|
|
258
264
|
/architect [brief] # discover tenant data sources and generate local planning artifacts under ./docyrus/architecture/
|
|
265
|
+
/tasks # browse the canonical project-plan sections, features, and tasks
|
|
259
266
|
```
|
|
260
267
|
|
|
261
268
|
When running through `docyrus server`, `/plan` and `/architect` can be sent through `/api/chat` as normal chat input. If clarification is needed, the server emits a synthetic `ask_user` client tool. Frontends using AI SDK `useChat` should render that tool and submit structured answers back with `addToolOutput`.
|