@rudderhq/agent-runtime-cursor-local 0.1.0-canary.1 → 0.1.0-canary.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rudderhq/agent-runtime-cursor-local",
|
|
3
|
-
"version": "0.1.0-canary.
|
|
3
|
+
"version": "0.1.0-canary.3",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"homepage": "https://github.com/Undertone0809/rudder",
|
|
6
6
|
"bugs": {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"typecheck": "tsc --noEmit"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@rudderhq/agent-runtime-utils": "0.1.0-canary.
|
|
54
|
+
"@rudderhq/agent-runtime-utils": "0.1.0-canary.3",
|
|
55
55
|
"picocolors": "^1.1.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
package/skills/rudder/SKILL.md
CHANGED
|
@@ -49,7 +49,9 @@ Each organization has one system-managed shared workspace root at:
|
|
|
49
49
|
|
|
50
50
|
Important files and conventions:
|
|
51
51
|
|
|
52
|
-
- Structured shared references live in the org `Resources` catalog. Agents
|
|
52
|
+
- Structured shared references live in the org `Resources` catalog. Agents do not receive the whole org catalog automatically.
|
|
53
|
+
- If a run or chat is linked to a project, Rudder injects only that project's attached resources into the runtime context.
|
|
54
|
+
- If you need broader org-wide resources, query the org resource catalog explicitly instead of assuming it is already in the prompt.
|
|
53
55
|
- Use Workspaces for disk-backed shared files, plans, and skill packages.
|
|
54
56
|
- When you need to place shared output on disk, prefer the managed workspace paths Rudder injected for this run such as `$RUDDER_ORG_PLANS_DIR`, `$RUDDER_ORG_SKILLS_DIR`, and the active `$RUDDER_WORKSPACE_CWD` or `$RUDDER_ORG_WORKSPACE_ROOT`. Do not invent new top-level `projects/` folders.
|
|
55
57
|
- If a `resources.md` file exists, treat it like a normal workspace file rather than a reserved Rudder surface.
|
|
@@ -143,6 +143,27 @@ When updating an existing document, send the latest `baseRevisionId` or the API
|
|
|
143
143
|
- `GET /api/orgs/:orgId/costs/by-agent`
|
|
144
144
|
- `GET /api/orgs/:orgId/costs/by-project`
|
|
145
145
|
|
|
146
|
+
### Resources
|
|
147
|
+
|
|
148
|
+
- `GET /api/orgs/:orgId/resources`
|
|
149
|
+
- `POST /api/orgs/:orgId/resources`
|
|
150
|
+
- `PATCH /api/orgs/:orgId/resources/:resourceId`
|
|
151
|
+
- `DELETE /api/orgs/:orgId/resources/:resourceId`
|
|
152
|
+
- `GET /api/projects/:projectId/resources`
|
|
153
|
+
- `POST /api/projects/:projectId/resources`
|
|
154
|
+
- `PATCH /api/projects/:projectId/resources/:attachmentId`
|
|
155
|
+
- `DELETE /api/projects/:projectId/resources/:attachmentId`
|
|
156
|
+
|
|
157
|
+
Loading policy:
|
|
158
|
+
|
|
159
|
+
- Org resources are the reusable catalog. They are queryable, but not loaded
|
|
160
|
+
into every prompt by default.
|
|
161
|
+
- Project resources are attachments from a project to org resources. When a run
|
|
162
|
+
or chat has a project context, Rudder injects that project's attached
|
|
163
|
+
resources into the runtime context.
|
|
164
|
+
- If you need org-wide background that was not attached to the current project,
|
|
165
|
+
query the org catalog explicitly.
|
|
166
|
+
|
|
146
167
|
## Approval Workflows
|
|
147
168
|
|
|
148
169
|
- `GET /api/approvals/:approvalId`
|