@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
|
@@ -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
|
-
| [
|
|
39
|
+
| [[uc-xxx-nnn]] | {Title} | Must/Should/Could |
|
|
39
40
|
|
|
40
41
|
### Modified Use Cases
|
|
41
42
|
| ID | Current | Proposed Change |
|
|
42
43
|
|----|---------|-----------------|
|
|
43
|
-
| [
|
|
44
|
+
| [[uc-xxx-001]] | {Current behavior} | {New behavior} |
|
|
44
45
|
|
|
45
46
|
### Deprecated Use Cases
|
|
46
47
|
| ID | Reason |
|
|
47
48
|
|----|--------|
|
|
48
|
-
|
|
|
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
|
-
| [
|
|
103
|
-
| [
|
|
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 ([
|
|
113
|
-
- New use cases:
|
|
114
|
-
- Modified:
|
|
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
|
-
- [
|
|
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
|
-
> **
|
|
19
|
-
> **Related**: [
|
|
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
|
-
> **
|
|
101
|
-
> **Related**: [
|
|
100
|
+
> **Feature**: [[feature-billing]]
|
|
101
|
+
> **Related**: [[uc-pay-002]], [[uc-cart-001]]
|
|
102
102
|
> **Priority**: Must
|
|
103
103
|
> **Status**: Draft
|
|
104
104
|
|
package/src/utils/config.js
CHANGED
|
@@ -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' |
|
|
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
|
}
|