@kendoo.agentdesk/agentdesk 0.6.7 → 0.6.9

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.
Files changed (2) hide show
  1. package/README.md +9 -15
  2. package/package.json +2 -5
package/README.md CHANGED
@@ -99,22 +99,16 @@ The CLI fetches settings from the server at runtime. If the server is unreachabl
99
99
 
100
100
  ### Custom agents
101
101
 
102
- Add custom agents to your team via project settings (web UI or `.agentdesk.json`):
103
-
104
- ```json
105
- {
106
- "projectAgents": [
107
- {
108
- "name": "Adam",
109
- "role": "Security Engineer",
110
- "when": "Review code before PR, participate in discussions",
111
- "how": "Comment and review PR"
112
- }
113
- ]
114
- }
115
- ```
102
+ Add custom agents via your project settings at [agentdesk.live](https://agentdesk.live):
103
+
104
+ 1. Select your project and click the gear icon
105
+ 2. Under **Project Agents**, click "Add agent" and fill in the name, role, when, and how
106
+ 3. Under **Team Composition**, toggle the new agent on
107
+ 4. Save
108
+
109
+ Custom agents participate in all phases alongside built-in agents — brainstorm, planning, execution, and review.
116
110
 
117
- After adding a custom agent, enable them in Team Composition (web UI) or add their name to the `"team"` array. Custom agents participate in all phases alongside built-in agents.
111
+ You can also define them in `.agentdesk.json` as a local override if preferred.
118
112
 
119
113
  AgentDesk also auto-discovers agents from `.claude/agents/`, `.claude/commands/`, `.mcp.json`, GitHub Actions workflows, Dependabot, and Renovate configs.
120
114
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kendoo.agentdesk/agentdesk",
3
- "version": "0.6.7",
3
+ "version": "0.6.9",
4
4
  "description": "AI team orchestrator for Claude Code — run collaborative agent sessions from your terminal",
5
5
  "type": "module",
6
6
  "bin": {
@@ -50,8 +50,5 @@
50
50
  "team"
51
51
  ],
52
52
  "license": "MIT",
53
- "repository": {
54
- "type": "git",
55
- "url": "https://github.com/kendoo-rd/agentdesk.git"
56
- }
53
+ "homepage": "https://agentdesk.live"
57
54
  }