specweave 0.10.0 → 0.11.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.
Files changed (28) hide show
  1. package/.claude-plugin/marketplace.json +2 -2
  2. package/CLAUDE.md +55 -93
  3. package/dist/cli/commands/init.d.ts.map +1 -1
  4. package/dist/cli/commands/init.js +98 -59
  5. package/dist/cli/commands/init.js.map +1 -1
  6. package/dist/cli/helpers/issue-tracker/index.d.ts.map +1 -1
  7. package/dist/cli/helpers/issue-tracker/index.js +39 -0
  8. package/dist/cli/helpers/issue-tracker/index.js.map +1 -1
  9. package/dist/cli/helpers/issue-tracker/jira.d.ts.map +1 -1
  10. package/dist/cli/helpers/issue-tracker/jira.js +2 -9
  11. package/dist/cli/helpers/issue-tracker/jira.js.map +1 -1
  12. package/dist/utils/external-resource-validator.d.ts.map +1 -1
  13. package/dist/utils/external-resource-validator.js +44 -25
  14. package/dist/utils/external-resource-validator.js.map +1 -1
  15. package/package.json +1 -1
  16. package/plugins/specweave/skills/SKILLS-INDEX.md +23 -2
  17. package/plugins/specweave/skills/increment-planner/SKILL.md +13 -92
  18. package/plugins/specweave/skills/plugin-installer/SKILL.md +355 -0
  19. package/plugins/specweave-ado/agents/ado-manager/AGENT.md +2 -0
  20. package/plugins/specweave-ado/commands/specweave-ado-sync.md +102 -9
  21. package/plugins/specweave-ado/skills/ado-sync/SKILL.md +7 -3
  22. package/plugins/specweave-github/agents/github-manager/AGENT.md +14 -4
  23. package/plugins/specweave-github/commands/specweave-github-sync.md +60 -11
  24. package/plugins/specweave-github/skills/github-sync/SKILL.md +3 -1
  25. package/plugins/specweave-jira/agents/jira-manager/AGENT.md +18 -8
  26. package/plugins/specweave-jira/commands/specweave-jira-sync.md +62 -19
  27. package/plugins/specweave-jira/skills/jira-resource-validator/SKILL.md +120 -57
  28. package/plugins/specweave-jira/skills/jira-sync/SKILL.md +5 -3
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: jira-sync
3
- description: Sync SpecWeave increments with JIRA epics/stories. Activates for JIRA sync, create JIRA issue, import from JIRA, sync to JIRA. Coordinates with specweave-jira-mapper agent.
3
+ description: Bidirectional sync between SpecWeave increments and JIRA epics/stories (two-way sync by default). Activates for JIRA sync, create JIRA issue, import from JIRA, sync to JIRA, bidirectional JIRA sync. Coordinates with specweave-jira-mapper agent.
4
4
  allowed-tools: Read, Write, Edit, Task, Bash
5
5
  ---
6
6
 
@@ -8,11 +8,13 @@ allowed-tools: Read, Write, Edit, Task, Bash
8
8
 
9
9
  Coordinates JIRA synchronization by delegating to `specweave-jira-mapper` agent.
10
10
 
11
+ **Default Behavior**: **Bidirectional (two-way) sync** - Changes synchronized in both directions automatically
12
+
11
13
  ## Responsibilities
12
14
 
13
- 1. Detect sync requests (export, import, bidirectional)
15
+ 1. Detect sync requests (bidirectional by default, or export/import if specified)
14
16
  2. Validate prerequisites (JIRA credentials, increment structure)
15
- 3. Invoke `specweave-jira-mapper` agent
17
+ 3. Invoke `specweave-jira-mapper` agent with sync direction
16
18
  4. Handle errors gracefully
17
19
 
18
20
  ---