rigjs 4.1.1 → 4.1.2

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/lib/crew/index.ts CHANGED
@@ -18,7 +18,7 @@ export function registerCrewCommands(program: any): void {
18
18
  const orchestrate = program.command('orchestrate [message...]')
19
19
  .alias('crew')
20
20
  .description('Orchestrator-first multi-agent workspace over an Obsidian vault (alias: crew)')
21
- .option('-c, --crew <name>', 'target crew name')
21
+ .option('--crew <name>', 'target crew name')
22
22
  .action((message: string[] | undefined, opts: { crew?: string }) => crewAsk(message, opts));
23
23
 
24
24
  orchestrate.command('init')
@@ -31,40 +31,40 @@ export function registerCrewCommands(program: any): void {
31
31
 
32
32
  orchestrate.command('ask <message...>')
33
33
  .description('send a message to the Orchestrator (MVP appends to Current-Goal.md)')
34
- .option('-c, --crew <name>', 'target crew name')
34
+ .option('--crew <name>', 'target crew name')
35
35
  .action(crewAsk);
36
36
 
37
37
  orchestrate.command('status')
38
38
  .description('show crew progress summary')
39
- .option('-c, --crew <name>', 'target crew name')
39
+ .option('--crew <name>', 'target crew name')
40
40
  .option('--json', 'machine-readable output')
41
41
  .action(crewStatus);
42
42
 
43
43
  orchestrate.command('pending-questions')
44
44
  .alias('inbox')
45
45
  .description('show open system→user pending questions (alias: inbox)')
46
- .option('-c, --crew <name>', 'target crew name')
46
+ .option('--crew <name>', 'target crew name')
47
47
  .option('--json', 'machine-readable output')
48
48
  .action(crewPendingQuestions);
49
49
 
50
50
  orchestrate.command('board')
51
51
  .description('refresh Dashboard.md')
52
- .option('-c, --crew <name>', 'target crew name')
52
+ .option('--crew <name>', 'target crew name')
53
53
  .action(crewBoard);
54
54
 
55
55
  orchestrate.command('sync')
56
56
  .description('scan Markdown tasks and update crew state cache')
57
- .option('-c, --crew <name>', 'target crew name')
57
+ .option('--crew <name>', 'target crew name')
58
58
  .action(crewSync);
59
59
 
60
60
  orchestrate.command('doctor')
61
61
  .description('check crew config, vault, rules, and project wiring')
62
- .option('-c, --crew <name>', 'target crew name')
62
+ .option('--crew <name>', 'target crew name')
63
63
  .action(crewDoctor);
64
64
 
65
65
  orchestrate.command('engine')
66
66
  .description('show which execution engine resolves and why (5-level order; debug)')
67
- .option('-c, --crew <name>', 'target crew name')
67
+ .option('--crew <name>', 'target crew name')
68
68
  .option('-p, --project <name>', 'resolve as if dispatching for this project')
69
69
  .option('--engine <engine>', 'explicit task-level engine override (claude | codex | pi)')
70
70
  .option('--json', 'machine-readable output')
@@ -76,7 +76,7 @@ export function registerCrewCommands(program: any): void {
76
76
  .option('--engine <engine>', 'engine override (claude | codex | pi); else resolved from project/crew/host')
77
77
  .option('--task <id>', 'task id for the worktree branch (default: adhoc-<ts>)')
78
78
  .option('--timeout <ms>', 'timeout in ms (default 600000)')
79
- .option('-c, --crew <name>', 'target crew name')
79
+ .option('--crew <name>', 'target crew name')
80
80
  .action(crewDispatch);
81
81
 
82
82
  const project = orchestrate.command('project').description('manage project owners');
@@ -87,7 +87,7 @@ export function registerCrewCommands(program: any): void {
87
87
  .option('--executor <name>', 'claude | codex | pi (default: crew defaultExecutor)')
88
88
  .option('--test-command <cmd>', 'default focused test command')
89
89
  .option('--no-write', 'mark owner as read-only')
90
- .option('-c, --crew <name>', 'target crew name')
90
+ .option('--crew <name>', 'target crew name')
91
91
  .action(projectAdd);
92
92
  project.command('sync')
93
93
  .description('sync project owners from the vault projects/ directory')
@@ -97,15 +97,15 @@ export function registerCrewCommands(program: any): void {
97
97
  .option('--no-write', 'mark newly discovered owners as read-only')
98
98
  .option('--keep-missing', 'keep projects that disappeared from the scanned directory')
99
99
  .option('--no-archive-missing', 'do not archive stale rig-agents project folders')
100
- .option('-c, --crew <name>', 'target crew name')
100
+ .option('--crew <name>', 'target crew name')
101
101
  .action(projectSync);
102
102
  project.command('list')
103
103
  .description('list registered projects')
104
- .option('-c, --crew <name>', 'target crew name')
104
+ .option('--crew <name>', 'target crew name')
105
105
  .action(projectList);
106
106
  project.command('status <name>')
107
107
  .description('show one project status')
108
- .option('-c, --crew <name>', 'target crew name')
108
+ .option('--crew <name>', 'target crew name')
109
109
  .action(projectStatus);
110
110
 
111
111
  const role = orchestrate.command('role').description('manage global crew roles');
@@ -117,15 +117,15 @@ export function registerCrewCommands(program: any): void {
117
117
  .option('--agent <name>', 'agent/subagent name to use for this role')
118
118
  .option('--executor <name>', 'claude | codex | pi')
119
119
  .option('--force', 'update an existing custom role')
120
- .option('-c, --crew <name>', 'also materialize role files in this crew vault')
120
+ .option('--crew <name>', 'also materialize role files in this crew vault')
121
121
  .action(roleAdd);
122
122
  role.command('list')
123
123
  .description('list built-in and custom roles')
124
- .option('-c, --crew <name>', 'target crew name')
124
+ .option('--crew <name>', 'target crew name')
125
125
  .action(roleList);
126
126
  role.command('show <name>')
127
127
  .description('show one role definition')
128
- .option('-c, --crew <name>', 'target crew name')
128
+ .option('--crew <name>', 'target crew name')
129
129
  .action(roleShow);
130
130
 
131
131
  const pending = orchestrate.command('pending')
@@ -166,7 +166,7 @@ export function registerCrewCommands(program: any): void {
166
166
  .option('--concurrency <n>', 'max parallel dispatches (default 4)')
167
167
  .option('--timeout <ms>', 'per-task timeout in ms (default 600000)')
168
168
  .option('--dry-run', 'show what would dispatch without running')
169
- .option('-c, --crew <name>', 'target crew name')
169
+ .option('--crew <name>', 'target crew name')
170
170
  .action(crewRun);
171
171
  orchestrate.command('research <topic...>').description('planned: ask Researcher to write a report').action(crewStub('research'));
172
172
  orchestrate.command('report').description('planned: generate Orchestrator report').action(crewStub('report'));
@@ -13,17 +13,17 @@ export function registerOvermindCommands(program: any): void {
13
13
 
14
14
  om.command('journal [date]')
15
15
  .description('aggregate completed tasks (status done + done-at; default today) into journal/<entity>/<YYMM>.md')
16
- .option('-c, --crew <name>', 'target crew name')
16
+ .option('--crew <name>', 'target crew name')
17
17
  .action(omJournal);
18
18
 
19
19
  om.command('status')
20
20
  .description('cross-entity task-status rollup (per project, from journal/INDEX.md + docs/plan/tasks)')
21
- .option('-c, --crew <name>', 'target crew name')
21
+ .option('--crew <name>', 'target crew name')
22
22
  .action(omStatus);
23
23
 
24
24
  om.command('sync')
25
25
  .description('(re)generate overmind.md — distilled cross-entity project + task-status index')
26
- .option('-c, --crew <name>', 'target crew name')
26
+ .option('--crew <name>', 'target crew name')
27
27
  .action(omSync);
28
28
 
29
29
  om.command('task <project> <id>')
@@ -31,6 +31,6 @@ export function registerOvermindCommands(program: any): void {
31
31
  .option('--role <role>', 'coder | designer | tester | researcher (default coder)')
32
32
  .option('--engine <engine>', 'engine override (claude | codex | pi)')
33
33
  .option('--status <status>', 'initial status (default draft)')
34
- .option('-c, --crew <name>', 'target crew name')
34
+ .option('--crew <name>', 'target crew name')
35
35
  .action(omTaskNew);
36
36
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rigjs",
3
- "version": "4.1.1",
4
- "versionCode": 26053102,
3
+ "version": "4.1.2",
4
+ "versionCode": 26053103,
5
5
  "description": "A multi-repos dev tool based on yarn and git.Rigjs is intended to be the simplest way to develop,share and deliver codes between different developers or different projects.",
6
6
  "keywords": [
7
7
  "modular",