harmony-mcp 1.2.2 → 1.2.4

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/dist/cli.js CHANGED
@@ -13836,11 +13836,9 @@ Show the user:
13836
13836
 
13837
13837
  ## Step 6: Implement the Solution
13838
13838
 
13839
- Based on the card's title and description:
13840
- 1. Understand what needs to be done
13841
- 2. Explore the codebase as needed
13842
- 3. Implement the required changes
13843
- 4. Test the changes
13839
+ 1. Use \`harmony_generate_prompt\` with the card ID to get role-based guidance
13840
+ 2. Follow the generated prompt to implement the solution
13841
+ 3. Test the changes
13844
13842
 
13845
13843
  **During implementation, update your progress periodically:**
13846
13844
  - Use \`harmony_update_agent_progress\` to report:
@@ -13960,7 +13958,7 @@ When given a card reference (e.g., #42 or a card name), follow this workflow:
13960
13958
  3. Add the "agent" label using \`harmony_add_label_to_card\`
13961
13959
  4. Start a session with \`harmony_start_agent_session\` (agentIdentifier: "codex", agentName: "OpenAI Codex")
13962
13960
  5. Show the card details to the user
13963
- 6. Implement the solution based on the card description
13961
+ 6. Use \`harmony_generate_prompt\` to get guidance, then implement the solution
13964
13962
  7. Update progress periodically with \`harmony_update_agent_progress\`
13965
13963
  8. When done, call \`harmony_end_agent_session\` and move to "Review"
13966
13964
 
@@ -13971,6 +13969,7 @@ When given a card reference (e.g., #42 or a card name), follow this workflow:
13971
13969
  - \`harmony_add_label_to_card\`, \`harmony_remove_label_from_card\` - Manage labels
13972
13970
  - \`harmony_start_agent_session\`, \`harmony_update_agent_progress\`, \`harmony_end_agent_session\` - Track work
13973
13971
  - \`harmony_get_board\` - Get board state
13972
+ - \`harmony_generate_prompt\` - Get role-based guidance and focus areas for the card
13974
13973
  `;
13975
13974
  const agentsPath = join(cwd, "AGENTS.md");
13976
13975
  const { created: agentsCreated, skipped: agentsSkipped } = writeFileIfNotExists(agentsPath, agentsContent, force);
package/dist/init.js CHANGED
@@ -77,11 +77,9 @@ Show the user:
77
77
 
78
78
  ## Step 6: Implement the Solution
79
79
 
80
- Based on the card's title and description:
81
- 1. Understand what needs to be done
82
- 2. Explore the codebase as needed
83
- 3. Implement the required changes
84
- 4. Test the changes
80
+ 1. Use \`harmony_generate_prompt\` with the card ID to get role-based guidance
81
+ 2. Follow the generated prompt to implement the solution
82
+ 3. Test the changes
85
83
 
86
84
  **During implementation, update your progress periodically:**
87
85
  - Use \`harmony_update_agent_progress\` to report:
@@ -201,7 +199,7 @@ When given a card reference (e.g., #42 or a card name), follow this workflow:
201
199
  3. Add the "agent" label using \`harmony_add_label_to_card\`
202
200
  4. Start a session with \`harmony_start_agent_session\` (agentIdentifier: "codex", agentName: "OpenAI Codex")
203
201
  5. Show the card details to the user
204
- 6. Implement the solution based on the card description
202
+ 6. Use \`harmony_generate_prompt\` to get guidance, then implement the solution
205
203
  7. Update progress periodically with \`harmony_update_agent_progress\`
206
204
  8. When done, call \`harmony_end_agent_session\` and move to "Review"
207
205
 
@@ -212,6 +210,7 @@ When given a card reference (e.g., #42 or a card name), follow this workflow:
212
210
  - \`harmony_add_label_to_card\`, \`harmony_remove_label_from_card\` - Manage labels
213
211
  - \`harmony_start_agent_session\`, \`harmony_update_agent_progress\`, \`harmony_end_agent_session\` - Track work
214
212
  - \`harmony_get_board\` - Get board state
213
+ - \`harmony_generate_prompt\` - Get role-based guidance and focus areas for the card
215
214
  `;
216
215
  const agentsPath = join(cwd, "AGENTS.md");
217
216
  const { created: agentsCreated, skipped: agentsSkipped } = writeFileIfNotExists(agentsPath, agentsContent, force);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harmony-mcp",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "description": "MCP server for Harmony Kanban board - enables AI coding agents to manage your boards",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",