@docyrus/docyrus 0.0.31 → 0.0.32
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/agent-loader.js +36 -25
- package/agent-loader.js.map +4 -4
- package/main.js +2 -2
- package/main.js.map +1 -1
- package/package.json +1 -1
- package/resources/pi-agent/extensions/docyrus-web-browser.ts +31 -0
- package/resources/pi-agent/shared/docyrusWebBrowserProtocol.ts +169 -0
- package/resources/pi-agent/skills/diffity-diff/SKILL.md +1 -1
- package/resources/pi-agent/skills/diffity-resolve/SKILL.md +4 -4
- package/resources/pi-agent/skills/diffity-review/SKILL.md +5 -4
- package/resources/pi-agent/skills/docyrus-api-dev/SKILL.md +36 -0
- package/resources/pi-agent/skills/docyrus-api-dev/references/acl-endpoints-frontend.md +295 -0
- package/resources/pi-agent/skills/docyrus-api-dev/references/authentication.md +4 -5
- package/resources/pi-agent/skills/docyrus-app-dev-react/SKILL.md +112 -85
- package/resources/pi-agent/skills/docyrus-app-dev-react/references/README.md +1 -0
- package/resources/pi-agent/skills/docyrus-app-dev-react/references/collections-and-patterns.md +1 -0
- package/resources/pi-agent/skills/docyrus-app-dev-react/references/component-selection-guide.md +27 -10
- package/server-loader.js +328 -87
- package/server-loader.js.map +4 -4
package/main.js
CHANGED
|
@@ -124764,7 +124764,7 @@ function buildInputSchema(args, env2, options2) {
|
|
|
124764
124764
|
// package.json
|
|
124765
124765
|
var package_default = {
|
|
124766
124766
|
name: "@docyrus/docyrus",
|
|
124767
|
-
version: "0.0.
|
|
124767
|
+
version: "0.0.32",
|
|
124768
124768
|
private: false,
|
|
124769
124769
|
description: "Docyrus API CLI",
|
|
124770
124770
|
main: "./main.js",
|
|
@@ -129576,7 +129576,7 @@ var DOCYRUS_EXTERNAL_SKILL_AGENT_IDS = [
|
|
|
129576
129576
|
"windsurf"
|
|
129577
129577
|
];
|
|
129578
129578
|
var DOCYRUS_EXTERNAL_SKILL_MARKER_FILE = ".docyrus-external-skills-installed.json";
|
|
129579
|
-
var DOCYRUS_DIFFITY_PACKAGE_SPEC = "diffity@0.
|
|
129579
|
+
var DOCYRUS_DIFFITY_PACKAGE_SPEC = "diffity@0.9.0";
|
|
129580
129580
|
function summarizeFailure3(result) {
|
|
129581
129581
|
const stderr = result.stderr?.toString().trim();
|
|
129582
129582
|
if (stderr && stderr.length > 0) {
|