@rudderhq/agent-runtime-codex-local 0.2.10-canary.14 → 0.2.10-canary.15

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-codex-local",
3
- "version": "0.2.10-canary.14",
3
+ "version": "0.2.10-canary.15",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "homepage": "https://github.com/Undertone0809/rudder",
6
6
  "bugs": {
@@ -68,7 +68,7 @@
68
68
  "probe:quota": "pnpm exec tsx src/cli/quota-probe.ts --json"
69
69
  },
70
70
  "dependencies": {
71
- "@rudderhq/agent-runtime-utils": "0.2.10-canary.14",
71
+ "@rudderhq/agent-runtime-utils": "0.2.10-canary.15",
72
72
  "picocolors": "^1.1.1"
73
73
  },
74
74
  "devDependencies": {
@@ -62,6 +62,14 @@ Important files and conventions:
62
62
  - If a `resources.md` file exists, treat it like a normal workspace file rather than a reserved Rudder surface.
63
63
  - Agent-specific files live under `workspaces/agents/<workspace-key>/...`.
64
64
  - New projects do not create or configure their own workspace roots.
65
+ - When the operator asks you to create or maintain project records, use the
66
+ stable CLI instead of ad hoc API calls:
67
+
68
+ ```bash
69
+ rudder project list --org-id "$RUDDER_ORG_ID" --json
70
+ rudder project create --org-id "$RUDDER_ORG_ID" --name "<name>" --json
71
+ rudder project update "<project-id-or-shortname>" --org-id "$RUDDER_ORG_ID" --status in_progress --json
72
+ ```
65
73
 
66
74
  ## Heartbeat Procedure
67
75
 
@@ -136,6 +136,8 @@ When updating an existing document, send the latest `baseRevisionId` or the API
136
136
  - `GET /api/orgs/:orgId/dashboard`
137
137
  - `GET /api/orgs/:orgId/projects`
138
138
  - `POST /api/orgs/:orgId/projects`
139
+ - `GET /api/projects/:projectIdOrShortname?orgId=:orgId`
140
+ - `PATCH /api/projects/:projectIdOrShortname?orgId=:orgId`
139
141
  - `GET /api/orgs/:orgId/goals`
140
142
  - `POST /api/orgs/:orgId/goals`
141
143
  - `GET /api/orgs/:orgId/activity`
@@ -172,6 +174,13 @@ Loading policy:
172
174
  - If you need org-wide background that was not attached to the current project,
173
175
  query the org catalog explicitly.
174
176
 
177
+ Project mutation policy:
178
+
179
+ - Agent keys may create and update projects inside their own organization. They
180
+ cannot access or mutate projects in another organization.
181
+ - Project create/update requests write activity log entries with the agent
182
+ actor and run id when the CLI attaches one.
183
+
175
184
  ## Approval Workflows
176
185
 
177
186
  - `GET /api/approvals/:approvalId`
@@ -41,6 +41,10 @@ Direct API fallback is allowed for heartbeat close-out only when a required CLI
41
41
  | `rudder issue documents list <issue>` | List issue documents. | no | no | no | no |
42
42
  | `rudder issue documents get <issue> <key>` | Read one issue document by key. | no | no | no | no |
43
43
  | `rudder issue documents revisions <issue> <key>` | List revisions for an issue document. | no | no | no | no |
44
+ | `rudder project list --org-id <id>` | List projects in an organization. | no | required | no | no |
45
+ | `rudder project get <project-id-or-shortname> [--org-id <id>]` | Read one project by ID or shortname. | no | no | no | no |
46
+ | `rudder project create --org-id <id> --name <name>` | Create a project in the organization. | yes | required | no | attached when available |
47
+ | `rudder project update <project-id-or-shortname> [--org-id <id>]` | Update mutable project fields such as name, description, status, goals, lead agent, target date, color, or archivedAt. | yes | no | no | attached when available |
44
48
  | `rudder library file list [directory]` | List path-based Library files and folders. | no | required | no | no |
45
49
  | `rudder library file get <path>` | Read one path-based Library file. | no | required | no | no |
46
50
  | `rudder library file put <path> --body-file <path>` | Create or update one path-based Library file. | yes | required | no | attached when available |