@docyrus/docyrus 0.0.30 → 0.0.31
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/main.js +3 -3
- package/main.js.map +1 -1
- package/package.json +3 -3
- package/resources/pi-agent/skills/docyrus-api-dev/SKILL.md +161 -0
- package/resources/pi-agent/skills/docyrus-api-dev/references/api-client.md +349 -0
- package/resources/pi-agent/skills/docyrus-api-dev/references/authentication.md +299 -0
- package/resources/pi-agent/skills/docyrus-api-dev/references/data-source-query-guide.md +2063 -0
- package/resources/pi-agent/skills/docyrus-api-dev/references/formula-design-guide-llm.md +312 -0
- package/resources/pi-agent/skills/docyrus-api-dev/references/query-and-formulas.md +592 -0
- package/resources/pi-agent/skills/docyrus-app-dev-react/SKILL.md +334 -0
- package/resources/pi-agent/skills/docyrus-app-dev-react/references/README.md +28 -0
- package/resources/pi-agent/skills/docyrus-app-dev-react/references/api-client-and-auth.md +326 -0
- package/resources/pi-agent/skills/docyrus-app-dev-react/references/collections-and-patterns.md +352 -0
- package/resources/pi-agent/skills/docyrus-app-dev-react/references/component-selection-guide.md +602 -0
- package/resources/pi-agent/skills/docyrus-app-dev-react/references/icon-usage-guide.md +463 -0
- package/resources/pi-agent/skills/docyrus-app-dev-react/references/preferred-components-catalog.md +242 -0
- package/resources/pi-agent/skills/docyrus-platform/SKILL.md +2 -2
- package/resources/pi-agent/skills/docyrus-platform/references/auth-and-multi-tenancy.md +9 -1
- package/resources/pi-agent/skills/docyrus-platform/references/developer-tools.md +3 -2
- package/resources/pi-agent/extensions/multi-edit.ts +0 -835
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.31",
|
|
124768
124768
|
private: false,
|
|
124769
124769
|
description: "Docyrus API CLI",
|
|
124770
124770
|
main: "./main.js",
|
|
@@ -124774,8 +124774,8 @@ var package_default = {
|
|
|
124774
124774
|
dependencies: {
|
|
124775
124775
|
"@clack/prompts": "^0.11.0",
|
|
124776
124776
|
"@hono/node-server": "^1.14.1",
|
|
124777
|
-
"@mariozechner/pi-ai": "0.63.
|
|
124778
|
-
"@mariozechner/pi-coding-agent": "0.63.
|
|
124777
|
+
"@mariozechner/pi-ai": "0.63.2",
|
|
124778
|
+
"@mariozechner/pi-coding-agent": "0.63.2",
|
|
124779
124779
|
"@modelcontextprotocol/ext-apps": "^1.2.2",
|
|
124780
124780
|
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
124781
124781
|
"@mozilla/readability": "^0.6.0",
|