oh-my-customcode 0.104.0 → 0.104.1
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/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -236,7 +236,7 @@ CC treats `.claude/` as a sensitive directory. The sensitive-path check runs **a
|
|
|
236
236
|
|
|
237
237
|
<!-- DETAIL: Artifact Output full spec
|
|
238
238
|
**Format**: Metadata header with `skill`, `date`, `query` fields, followed by skill output content.
|
|
239
|
-
**Rules**: Opt-in per skill, final subagent writes (R010 compliance),
|
|
239
|
+
**Rules**: Opt-in per skill, final subagent writes (R010 compliance), Write tool auto-creates parent directory (no Bash `mkdir` required — avoids `.claude/` sensitive-path prompt per #960/#961/#978), .claude/outputs/ is git-untracked, no indexing required.
|
|
240
240
|
-->
|
|
241
241
|
|
|
242
242
|
## Separation of Concerns
|
|
@@ -78,6 +78,16 @@ Each agent receives the full diff and returns findings as structured JSON:
|
|
|
78
78
|
- Performance sanity: no O(n^2) on large datasets, no missing indexes for new queries
|
|
79
79
|
- If any CONCERN or VIOLATION found: report for manual review before release
|
|
80
80
|
|
|
81
|
+
## Regression Guards
|
|
82
|
+
|
|
83
|
+
Run these checks before declaring release READY. Any match is a release blocker.
|
|
84
|
+
|
|
85
|
+
| Guard | Detection Command | Severity | Remediation |
|
|
86
|
+
|-------|-------------------|----------|-------------|
|
|
87
|
+
| Skill Bash sensitive-path | `grep -rnE 'mkdir\s+-p[^` + "`" + `\n]*\.claude/(outputs\|agent-memory\|agent-memory-local)' .claude/skills/ templates/.claude/skills/ .claude/rules/ templates/.claude/rules/ 2>/dev/null` | **BLOCK** | Remove `mkdir` directive; rely on Write tool auto-dir-create. See R006 "Sensitive Path Handling" + `feedback_sensitive_path.md` |
|
|
88
|
+
|
|
89
|
+
> **Why**: CC sensitive-path check runs above `bypassPermissions` and Bash allow rules (#960/#961/#978). Skills instructing directory creation via Bash on artifact paths trigger permission prompts during unattended auto-dev execution. Use Write tool instead (auto-creates parents).
|
|
90
|
+
|
|
81
91
|
## Output Format
|
|
82
92
|
|
|
83
93
|
```
|
package/templates/manifest.json
CHANGED