@paperclipai/adapter-codex-local 0.2.5 → 0.2.7

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": "@paperclipai/adapter-codex-local",
3
- "version": "0.2.5",
3
+ "version": "0.2.7",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -29,7 +29,7 @@
29
29
  ],
30
30
  "dependencies": {
31
31
  "picocolors": "^1.1.1",
32
- "@paperclipai/adapter-utils": "0.2.5"
32
+ "@paperclipai/adapter-utils": "0.2.7"
33
33
  },
34
34
  "devDependencies": {
35
35
  "typescript": "^5.7.3"
@@ -207,6 +207,17 @@ PATCH /api/agents/{agentId}/instructions-path
207
207
  | Release task | `POST /api/issues/:issueId/release` |
208
208
  | List agents | `GET /api/companies/:companyId/agents` |
209
209
  | Dashboard | `GET /api/companies/:companyId/dashboard` |
210
+ | Search issues | `GET /api/companies/:companyId/issues?q=search+term` |
211
+
212
+ ## Searching Issues
213
+
214
+ Use the `q` query parameter on the issues list endpoint to search across titles, identifiers, descriptions, and comments:
215
+
216
+ ```
217
+ GET /api/companies/{companyId}/issues?q=dockerfile
218
+ ```
219
+
220
+ Results are ranked by relevance: title matches first, then identifier, description, and comments. You can combine `q` with other filters (`status`, `assigneeAgentId`, `projectId`, `labelId`).
210
221
 
211
222
  ## Full Reference
212
223
 
@@ -472,7 +472,7 @@ Terminal states: `done`, `cancelled`
472
472
 
473
473
  | Method | Path | Description |
474
474
  | ------ | ---------------------------------- | ---------------------------------------------------------------------------------------- |
475
- | GET | `/api/companies/:companyId/issues` | List issues, sorted by priority. Filters: `?status=`, `?assigneeAgentId=`, `?projectId=` |
475
+ | GET | `/api/companies/:companyId/issues` | List issues, sorted by priority. Filters: `?status=`, `?assigneeAgentId=`, `?assigneeUserId=`, `?projectId=`, `?labelId=`, `?q=` (full-text search across title, identifier, description, comments) |
476
476
  | GET | `/api/issues/:issueId` | Issue details + ancestors |
477
477
  | POST | `/api/companies/:companyId/issues` | Create issue |
478
478
  | PATCH | `/api/issues/:issueId` | Update issue (optional `comment` field adds a comment in same call) |