create-claude-workspace 1.1.46 → 1.1.48
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/index.js
CHANGED
|
@@ -144,7 +144,7 @@ function writeKitVersion(targetDir) {
|
|
|
144
144
|
}
|
|
145
145
|
function ensureGitignore(targetDir) {
|
|
146
146
|
const gitignorePath = join(targetDir, '.gitignore');
|
|
147
|
-
const entries = ['.npmrc', '.docker-compose.auth.yml', '.claude/autonomous.log', '.claude/autonomous.lock', '.claude/autonomous-state.json', '.claude/.kit-version', '.worktrees/'];
|
|
147
|
+
const entries = ['.npmrc', '.docker-compose.auth.yml', '.claude/autonomous.log', '.claude/autonomous.log.1', '.claude/autonomous.lock', '.claude/autonomous-state.json', '.claude/.kit-version', '.worktrees/'];
|
|
148
148
|
if (existsSync(gitignorePath)) {
|
|
149
149
|
let content = readFileSync(gitignorePath, 'utf-8');
|
|
150
150
|
const added = [];
|
|
@@ -54,7 +54,7 @@ Always prefer `@cibule/*` packages over custom implementations:
|
|
|
54
54
|
- Pre-generate UUIDs, prepare all statements before `execute()`
|
|
55
55
|
- Cannot read intermediate results
|
|
56
56
|
|
|
57
|
-
**Bug in
|
|
57
|
+
**Bug in third-party dependency**: If a bug is caused by a third-party package (not project code), recommend marking the task as BLOCKED. Do not work around the bug — the dependency freshness check will pick up fixes in new versions.
|
|
58
58
|
|
|
59
59
|
**Platform-Agnostic Backend (STRICT):**
|
|
60
60
|
- All business/domain/api code MUST run on both Node.js and Cloudflare Workers
|
|
@@ -732,10 +732,10 @@ When a tool, library, or process fails (e.g., `nx release`, `nx build`, a @cibul
|
|
|
732
732
|
2. You've confirmed the issue exists (checked docs, searched for known bugs) AND
|
|
733
733
|
3. The architect agent explicitly recommends the alternative
|
|
734
734
|
|
|
735
|
-
###
|
|
735
|
+
### Third-Party Dependency Bugs
|
|
736
736
|
|
|
737
|
-
If a bug is caused by a
|
|
738
|
-
1. Mark the current task as `[~] BLOCKED:
|
|
737
|
+
If a bug is caused by a third-party dependency (confirmed by isolating the issue to the package, not project code):
|
|
738
|
+
1. Mark the current task as `[~] BLOCKED: [package]@[version] — [brief bug description]` in TODO.md
|
|
739
739
|
2. Log full details in MEMORY.md Blockers section
|
|
740
740
|
3. **Continue with the next task** that doesn't depend on the blocked one
|
|
741
741
|
4. At the next dependency freshness check (phase transition or manual), check if a newer version of the package is available. If so, upgrade and re-attempt the blocked task.
|
|
@@ -174,7 +174,7 @@ nx g @cibule/devkit:preset myorg # Initialize workspace with onion layers
|
|
|
174
174
|
nx g @cibule/devkit:scope market --frontend # Create domain scope
|
|
175
175
|
```
|
|
176
176
|
|
|
177
|
-
**
|
|
177
|
+
**Dependency bug handling**: If a bug is caused by a third-party dependency (not by project code), mark the task as `[~] BLOCKED` with the bug details and the package version. Continue with other tasks. The dependency freshness check at phase transitions will detect new versions — re-attempt blocked tasks after the package is updated.
|
|
178
178
|
|
|
179
179
|
### Frontend Profile
|
|
180
180
|
|
|
@@ -554,7 +554,7 @@ The full development cycle is managed by the **`orchestrator` agent**. It handle
|
|
|
554
554
|
- CLAUDE.md is refreshed at every phase transition via `/revise-claude-md` to capture new patterns
|
|
555
555
|
- L-complexity tasks are auto-decomposed by `technical-planner` before implementation
|
|
556
556
|
- **No workarounds** — when a tool/library/process fails, fix the root cause. Do not bypass `nx release` with manual `npm publish`, do not replace generators with manual file creation, do not add `eslint-disable` instead of fixing code. Only use alternatives if the root cause is in a third-party package and the architect explicitly recommends it.
|
|
557
|
-
-
|
|
557
|
+
- **Dependency bugs** — if a bug is in a third-party package (not project code), mark the task as BLOCKED and continue with other tasks. Check for package updates at phase transitions.
|
|
558
558
|
|
|
559
559
|
### Key Agents in the Cycle
|
|
560
560
|
|