@hechura/noreaster-cli 0.2.5 → 0.2.6

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.
@@ -37,15 +37,6 @@ function registerProjectCommands(parent) {
37
37
  const result = await (0, http_1.apiRequest)((0, http_1.resolveConfig)(), "DELETE", `/api/agent/projects/${id}`);
38
38
  console.log(JSON.stringify(result, null, 2));
39
39
  });
40
- projects
41
- .command("set-assignees")
42
- .description("Replace project assignee ids")
43
- .argument("<id>")
44
- .requiredOption("--data <json>", "JSON payload with assignee_ids")
45
- .action(async (id, options) => {
46
- const result = await (0, http_1.apiRequest)((0, http_1.resolveConfig)(), "PUT", `/api/agent/projects/${id}/assignees`, (0, http_1.parsePayload)(options.data));
47
- console.log(JSON.stringify(result, null, 2));
48
- });
49
40
  projects
50
41
  .command("set-agent-assignees")
51
42
  .description("Replace project AI agent assignee ids")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hechura/noreaster-cli",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "CLI for Hechura Noreaster agent API access",
5
5
  "repository": {
6
6
  "type": "git",
@@ -10,7 +10,7 @@ Use this skill for operational work in Noreaster through the official agent CLI
10
10
  ## Execution Defaults
11
11
 
12
12
  1. Prefer the published CLI:
13
- - `npx @hechura/noreaster-cli@0.2.5 <command>` or `noreaster <command>` after global install (`npm install -g @hechura/noreaster-cli@0.2.5`)
13
+ - `npx @hechura/noreaster-cli@0.2.6 <command>` or `noreaster <command>` after global install (`npm install -g @hechura/noreaster-cli@0.2.6`)
14
14
  - In this repo: `npm run agent -- <command>`
15
15
  2. Default API base URL:
16
16
  - `https://noreaster.vercel.app`
@@ -243,7 +243,7 @@ Empty `content` on create is seeded from the template for that `doc_type`.
243
243
  ## Quick Command Examples
244
244
 
245
245
  ```bash
246
- npm install -g @hechura/noreaster-cli@0.2.5
246
+ npm install -g @hechura/noreaster-cli@0.2.6
247
247
  noreaster skill install
248
248
  noreaster my-work
249
249
  noreaster features list --project-id <project-id>