@firatcand/roster 0.1.0 → 0.4.0
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/README.md +7 -2
- package/bin/roster.js +7092 -1167
- package/data/plan-ceilings.yaml +57 -0
- package/package.json +8 -2
- package/skills/chief-of-staff/SKILL.md +158 -2
- package/templates/hooks/banner.sh +47 -0
- package/templates/scaffold/conventions.md +35 -8
- package/templates/scaffold/dreamer/README.md +1 -1
- package/templates/scaffold/gtm/sdr/README.md +1 -6
- package/templates/scaffold/logs/cron/.gitkeep +1 -0
- package/templates/scaffold/ops/EXPERT.md +5 -5
- package/templates/scaffold/scripts/archive-project.sh +98 -0
- package/templates/scaffold/scripts/audit-agent.sh +299 -0
- package/templates/scaffold/scripts/audit-project.sh +361 -0
- package/templates/scaffold/scripts/audit-repo.sh +240 -0
- package/templates/scaffold/scripts/create-function.sh +267 -0
- package/templates/scaffold/scripts/lib/README.md +6 -1
- package/templates/scaffold/scripts/lib/bindings-prompt.sh +136 -0
- package/templates/scaffold/scripts/lib/functions.sh +17 -5
- package/templates/scaffold/scripts/new-agent-instance.sh +114 -0
- package/templates/scaffold/scripts/new-agent.sh +410 -0
- package/templates/scaffold/scripts/remove-agent-from-project.sh +67 -0
- package/templates/scaffold/scripts/rename-project.sh +118 -0
- package/templates/scaffold/scripts/unarchive-project.sh +115 -0
package/README.md
CHANGED
|
@@ -40,8 +40,6 @@ claude
|
|
|
40
40
|
# in dreamer/pending/ on the next nightly reinforcement pass.
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
> Until v0.1 is published to npm, install locally with `npm pack && npm install -g firatcand-roster-*.tgz` from a clone. See [docs/roadmap.md](docs/roadmap.md) for publish status.
|
|
44
|
-
|
|
45
43
|
[docs/HOWTO.md](docs/HOWTO.md) has the long-form step-by-step.
|
|
46
44
|
|
|
47
45
|
### What `roster install` looks like
|
|
@@ -71,8 +69,13 @@ Without `--all`, you'll get an interactive checkbox to pick which tools to recei
|
|
|
71
69
|
| `roster init [name]` | Scaffold the agent-team workspace into CWD. Substitutes `{{PROJECT_NAME}}`. |
|
|
72
70
|
| `roster doctor` | Audit installed skills/agents per AI tool; exits non-zero on drift. Includes a Scheduling section that runs `schedule validate` against the current workspace. |
|
|
73
71
|
| `roster schedule validate` | Validate every `roster/<function>/schedules.yaml` file in the workspace. `--json` / `--silent` / `--cwd <dir>`. Exits non-zero on schema or cron errors. |
|
|
72
|
+
| `roster review [function]` | Walk `roster/<function>/pending/*.md` HITL items interactively. Approve/reject/defer each; approved items move to the `target_on_approve:` path in their front-matter. `--json` for non-interactive listing. |
|
|
73
|
+
| `roster hooks install` | Install SessionStart banner hooks into `~/.claude/settings.json` and `~/.codex/hooks.json` so any chat session in a roster workspace shows pending-HITL counts on start. Idempotent. `--tool claude\|codex\|all`. |
|
|
74
|
+
| `roster migrate from-agent-team <dir>` | Migrate a legacy agent-team workspace into roster: walks discovered cron entries and emits `roster schedule install` commands to a reviewable shell script, copies pending HITL items, run logs, and `.env` (enforced 0600). Refuses with hint if `.env` is more permissive. `--dest <dir>` / `--dry-run` / `--force-resync` / `--json` / `--silent`. Idempotent via a per-source manifest at `.roster/migration-manifests/`. |
|
|
74
75
|
| `roster --help` / `--version` | Usage + version from `package.json`. |
|
|
75
76
|
|
|
77
|
+
Scheduling primitives (Phase 2.5) — see [docs/SCHEDULING.md](docs/SCHEDULING.md) for the platform × tool matrix, UI hand-off flows for Claude Desktop and Codex Automations, `codex --via cron` install, the Linux Claude gap, the Codex Windows subagent workaround, and the subscription-billing rules (including why `claude -p` is banned).
|
|
78
|
+
|
|
76
79
|
## Tool support
|
|
77
80
|
|
|
78
81
|
| Tool | Status | Skills installed to | Agents installed to |
|
|
@@ -110,6 +113,8 @@ Detection is presence-only: roster considers a tool installed if its config root
|
|
|
110
113
|
|
|
111
114
|
Every skill and agent ships with version `0.1.0` (frontmatter pin). `roster doctor` will surface drift between installed and shipped versions in v0.2.
|
|
112
115
|
|
|
116
|
+
From **v0.4.0**, `/chief-of-staff create-agent <function> <agent>` runs an interactive five-phase dialogue by default in a TTY — it interviews you for the gaps a stub can't fill (subagents, tools, plan names, project-specific failure modes) and writes a fully populated `agent.md` instead of placeholders. CI / scripts / non-TTY contexts get the legacy stub mode automatically; force it explicitly with `AGENT_TEAM_NO_CONFIRM=1`. See [docs/HOWTO.md → Creating an agent](docs/HOWTO.md#creating-an-agent) for the worked example.
|
|
117
|
+
|
|
113
118
|
## What `init` scaffolds
|
|
114
119
|
|
|
115
120
|
`roster init` is non-destructive — re-running merges new files in without overwriting your edits. The full scaffold:
|