@codihaus/claude-skills 1.6.3 → 1.6.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codihaus/claude-skills",
3
- "version": "1.6.3",
3
+ "version": "1.6.5",
4
4
  "description": "Claude Code skills for software development workflow",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -20,6 +20,7 @@ Examples:
20
20
  > **Status**: Draft | Under Review | Approved | Rejected | Implemented
21
21
  > **Requestor**: {Customer name or internal}
22
22
  > **Priority**: Low | Medium | High | Critical
23
+ > **Affected Features**: [[feature-xxx]], [[feature-yyy]]
23
24
 
24
25
  ## Request Summary
25
26
  {One-line summary of what is being requested}
@@ -35,17 +36,17 @@ Examples:
35
36
  ### New Use Cases
36
37
  | ID | Title | Priority |
37
38
  |----|-------|----------|
38
- | [UC-XXX-NNN](../use-cases/UC-XXX-NNN-slug.md) | {Title} | Must/Should/Could |
39
+ | [[uc-xxx-nnn]] | {Title} | Must/Should/Could |
39
40
 
40
41
  ### Modified Use Cases
41
42
  | ID | Current | Proposed Change |
42
43
  |----|---------|-----------------|
43
- | [UC-XXX-001](../use-cases/UC-XXX-001-slug.md) | {Current behavior} | {New behavior} |
44
+ | [[uc-xxx-001]] | {Current behavior} | {New behavior} |
44
45
 
45
46
  ### Deprecated Use Cases
46
47
  | ID | Reason |
47
48
  |----|--------|
48
- | UC-XXX-NNN | {Why being removed} |
49
+ | [[uc-xxx-nnn]] | {Why being removed} |
49
50
 
50
51
  ### Affected Features
51
52
  | Feature | Impact |
@@ -99,8 +100,8 @@ When CR is created, add to BRD README.md:
99
100
 
100
101
  | CR | Title | Date | Status |
101
102
  |----|-------|------|--------|
102
- | [CR-001](./changes/CR-001-add-sso.md) | Add SSO | 2024-01-20 | Approved |
103
- | [CR-002](./changes/CR-002-update-tiers.md) | Update Tiers | 2024-01-25 | Draft |
103
+ | [[cr-001]] | Add SSO | 2024-01-20 | Approved |
104
+ | [[cr-002]] | Update Tiers | 2024-01-25 | Draft |
104
105
  ```
105
106
 
106
107
  ## Updating Changelog
@@ -109,9 +110,9 @@ When CR is implemented:
109
110
 
110
111
  ```markdown
111
112
  ## 2024-01-20 - CR-001 Implemented
112
- - Added SSO authentication ([CR-001](./changes/CR-001-add-sso.md))
113
- - New use cases: UC-AUTH-004, UC-AUTH-005
114
- - Modified: UC-AUTH-001 (added SSO option)
113
+ - Added SSO authentication ([[cr-001]])
114
+ - New use cases: [[uc-auth-004]], [[uc-auth-005]]
115
+ - Modified: [[uc-auth-001]] (added SSO option)
115
116
  ```
116
117
 
117
118
  ## Linking from Use Cases
@@ -120,5 +121,5 @@ In modified use cases, add reference:
120
121
 
121
122
  ```markdown
122
123
  ## Change History
123
- - [CR-001](../changes/CR-001-add-sso.md): Added SSO as login option
124
+ - [[cr-001]]: Added SSO as login option
124
125
  ```
@@ -15,8 +15,8 @@ Examples:
15
15
  ```markdown
16
16
  # UC-{GROUP}-{NNN}: {Title}
17
17
 
18
- > **Group**: [{Group Name}](../README.md#{group-anchor})
19
- > **Related**: [UC-XXX-NNN](./UC-XXX-NNN-slug.md)
18
+ > **Feature**: [[feature-{name}]]
19
+ > **Related**: [[uc-xxx-nnn]], [[uc-xxx-nnn]]
20
20
  > **Priority**: Must | Should | Could
21
21
  > **Status**: Draft | Confirmed | Updated
22
22
 
@@ -97,8 +97,8 @@ so that {benefit}.
97
97
  ```markdown
98
98
  # UC-PAY-001: Checkout
99
99
 
100
- > **Group**: [Payments](../README.md#payments)
101
- > **Related**: [UC-PAY-002](./UC-PAY-002-apply-coupon.md)
100
+ > **Feature**: [[feature-billing]]
101
+ > **Related**: [[uc-pay-002]], [[uc-cart-001]]
102
102
  > **Priority**: Must
103
103
  > **Status**: Draft
104
104
 
@@ -49,7 +49,7 @@ const DEFAULT_SETTINGS = {
49
49
  hooks: [
50
50
  {
51
51
  type: "command",
52
- command: "jq -r '.tool_input.file_path // empty' | xargs -I {} bash .claude/scripts/safe-graph-update.sh '{}'"
52
+ command: "jq -r '.tool_input.file_path // empty' | { read file_path; if [ -n \"$file_path\" ] && echo \"$file_path\" | grep -q 'plans/.*\\.md$'; then bash .claude/scripts/safe-graph-update.sh \"$file_path\" 2>/dev/null || true; fi; }"
53
53
  }
54
54
  ]
55
55
  }