@docyrus/docyrus 0.0.26 → 0.0.27
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 +334 -108
- package/main.js.map +3 -3
- package/package.json +1 -1
- package/resources/pi-agent/skills/docyrus-platform/SKILL.md +1 -1
- package/resources/pi-agent/skills/docyrus-platform/references/developer-tools.md +1 -1
- package/resources/pi-agent/skills/docyrus-platform/references/docyrus-cli-usage.md +46 -0
- package/resources/pi-agent/skills/docyrus-platform/references/querying-and-data-operations.md +7 -0
- package/server-loader.js +202 -2
- package/server-loader.js.map +4 -4
package/README.md
CHANGED
|
@@ -141,6 +141,13 @@ docyrus ds update base task "<record-id>" --data '{"status":"done"}' --json
|
|
|
141
141
|
docyrus ds delete base task "<record-id>" --json
|
|
142
142
|
```
|
|
143
143
|
|
|
144
|
+
Add comments and file attachments to a record:
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
docyrus ds comments create base task "<record-id>" --message "Looks good" --json
|
|
148
|
+
docyrus ds files upload base task "<record-id>" --file ./contract.pdf --json
|
|
149
|
+
```
|
|
150
|
+
|
|
144
151
|
Batch create/update (max 50 items) and file input (`--from-file` supports `.json` and `.csv`):
|
|
145
152
|
|
|
146
153
|
```bash
|