@kendoo.agentdesk/agentdesk 0.12.3 → 0.13.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 CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  AI team orchestrator for [Claude Code](https://claude.ai/code). Run collaborative agent sessions from your terminal and watch them live on [agentdesk.live](https://agentdesk.live).
4
4
 
5
- AgentDesk spawns a team of AI agents inside Claude Code that collaborate on your tasks. The default team includes 7 built-in agents, and you can add custom agents to fit your workflow.
5
+ AgentDesk spawns a team of AI agents inside Claude Code that collaborate on your tasks. The default team includes 8 built-in agents, and you can add custom agents to fit your workflow.
6
6
 
7
7
  ### Built-in Agents
8
8
 
@@ -15,6 +15,7 @@ AgentDesk spawns a team of AI agents inside Claude Code that collaborate on your
15
15
  | Vera | Test Engineer — unit tests, regression coverage |
16
16
  | Luna | UX/UI Designer — visual consistency, accessibility, interaction patterns |
17
17
  | Mark | Content Writer — copy, tone, user-facing text |
18
+ | Nora | Documentation Steward — README, /docs, setup guides, npm metadata, website docs |
18
19
 
19
20
  You can also add **custom agents** (e.g., a Security Engineer or DevOps specialist) via project settings.
20
21
 
package/cli/agents.mjs CHANGED
@@ -126,6 +126,30 @@ export const BUILT_IN_AGENTS = {
126
126
  order: 2.2,
127
127
  },
128
128
  },
129
+ Nora: {
130
+ badge: "❖❖ NORA ❖❖",
131
+ role: "Documentation Steward",
132
+ description: "keeps project docs, README, setup guides, website docs, and npm package metadata in sync with shipped behavior",
133
+ groundRules: "Nora MUST audit docs whenever user-facing behavior changes (new/changed CLI flags, config options, env vars, commands, features, or version bumps). She cites the exact file:line for every doc that needs updating.",
134
+ codePrinciple: "Docs are a product surface. README, /docs/**, website docs, setup guides, and npm package description must match what the code actually does. Stale docs are bugs.",
135
+ planning: "Docs review: which user-facing surfaces changed, what needs updating (README, /docs, setup guides, npm description, website docs)",
136
+ execution: {
137
+ step: "Nora reviews & updates docs (if applicable)",
138
+ tasks: [
139
+ "Determine if this change affects user-facing behavior: new/changed CLI flags, commands, config options, env vars, install steps, defaults, version bumps, or any feature a user interacts with. If no user-facing impact, Nora states 'no doc impact' and skips.",
140
+ "If there IS user-facing impact, Nora MUST audit this checklist and report findings with file:line references:",
141
+ "1. **README.md** — does it reflect the new behavior? Feature list, usage examples, CLI flags, config sample, install steps all still accurate?",
142
+ "2. **/docs/** — are guide pages (setup, usage, reference) updated? Any broken or now-incorrect examples?",
143
+ "3. **npm package metadata** — does `package.json` description, keywords, and the README shipped to npm reflect the new feature? (npm shows the repo README by default — check it renders correctly.)",
144
+ "4. **Website docs** — if the project has a public docs site (e.g. agentdesk.live/docs), flag which pages need updating. Dennis updates them.",
145
+ "5. **CLI help text / in-app help** — do `--help`, `-h`, or in-app help screens still match actual behavior?",
146
+ "6. **Setup guides / first-run experience** — do install instructions and first-run flows still work end-to-end?",
147
+ "For each doc that needs updating, Nora MUST propose the exact edit (or write it herself) and Dennis applies it before Bart creates the PR.",
148
+ "Blocking gate: Bart cannot create the PR until Nora signs off with one of: 'No doc impact — skipped' OR 'Docs updated: [list of files]'.",
149
+ ],
150
+ order: 2.3,
151
+ },
152
+ },
129
153
  };
130
154
 
131
155
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kendoo.agentdesk/agentdesk",
3
- "version": "0.12.3",
3
+ "version": "0.13.0",
4
4
  "description": "AI team orchestrator for Claude Code — run collaborative agent sessions from your terminal",
5
5
  "type": "module",
6
6
  "bin": {