worclaude 2.2.5 → 2.2.6
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/README.md +1 -50
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,10 +5,7 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/worclaude)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
<!--  -->
|
|
10
|
-
|
|
11
|
-
[Full Documentation](https://sefaertunc.github.io/Worclaude/) · [Interactive Demo](https://sefaertunc.github.io/Worclaude/demo/) · [npm](https://www.npmjs.com/package/worclaude)
|
|
8
|
+
[Full Documentation](https://sefaertunc.github.io/Worclaude/) · [npm](https://www.npmjs.com/package/worclaude)
|
|
12
9
|
|
|
13
10
|
Worclaude scaffolds a complete Claude Code workflow into any project in seconds. It implements all [tips by Boris Cherny](https://www.howborisusesclaudecode.com/) — the creator of Claude Code at Anthropic — as a reusable, upgradable scaffold. One `init` command gives you 25 agents, 16 slash commands, 15 skills, hooks, permissions, and a CLAUDE.md template tuned for your tech stack. Whether you're starting fresh or adding structure to an existing project, Worclaude handles the setup so you can focus on building.
|
|
14
11
|
|
|
@@ -48,51 +45,6 @@ Worclaude scaffolds a complete Claude Code workflow into any project in seconds.
|
|
|
48
45
|
|
|
49
46
|
---
|
|
50
47
|
|
|
51
|
-
## What's New in v2.x
|
|
52
|
-
|
|
53
|
-
The v2.x series introduced Claude Code runtime integration and continues to refine the workflow.
|
|
54
|
-
|
|
55
|
-
**Claude Code Runtime Integration**
|
|
56
|
-
|
|
57
|
-
- Skills use directory format (`skill-name/SKILL.md`) and register with `/skills`
|
|
58
|
-
- Agents include `description` frontmatter and register with `/agents`
|
|
59
|
-
- Run `worclaude doctor` to verify everything is wired up correctly
|
|
60
|
-
|
|
61
|
-
**Conditional Skills**
|
|
62
|
-
|
|
63
|
-
- 6 skills activate only when relevant files are touched (testing, security, frontend, backend, verification, project-patterns)
|
|
64
|
-
- 8 skills stay always-loaded for cross-cutting guidance
|
|
65
|
-
- Saves context window budget by keeping domain-specific guidance out of unrelated work
|
|
66
|
-
|
|
67
|
-
**Agent Enhancements**
|
|
68
|
-
|
|
69
|
-
- Read-only agents blocked from file modifications via `disallowedTools`
|
|
70
|
-
- Background execution for long-running agents (verify-app, build-validator, e2e-runner)
|
|
71
|
-
- Turn limits (`maxTurns`) prevent runaway token consumption
|
|
72
|
-
- Persistent memory for agents that learn across sessions (test-writer, security-reviewer, doc-writer)
|
|
73
|
-
|
|
74
|
-
**New Content**
|
|
75
|
-
|
|
76
|
-
- Coordinator-mode skill for multi-agent orchestration patterns
|
|
77
|
-
- Agents with `memory: project` leverage Claude Code's native memory system
|
|
78
|
-
- Enhanced verify-app agent with structured verdicts and adversarial probe requirements
|
|
79
|
-
- Per-tech-stack permission presets (16 languages)
|
|
80
|
-
|
|
81
|
-
**Upgrade Migration**
|
|
82
|
-
|
|
83
|
-
- `worclaude upgrade` auto-migrates v1.x projects: flat skills → directory format, agents get required frontmatter
|
|
84
|
-
- `worclaude doctor` detects old formats and missing fields
|
|
85
|
-
|
|
86
|
-
**v2.2.0 — Leaner Defaults, Richer Skills**
|
|
87
|
-
|
|
88
|
-
- Removed project-root MEMORY.md scaffolding — Claude Code's native memory system handles this automatically
|
|
89
|
-
- Expanded context-management, claude-md-maintenance, and coordinator-mode skills with deeper guidance
|
|
90
|
-
- Enhanced verify-app agent with mobile, database migration, and data/ML pipeline verification patterns
|
|
91
|
-
|
|
92
|
-
See the [Claude Code Integration guide](https://sefaertunc.github.io/Worclaude/guide/claude-code-integration) for technical details.
|
|
93
|
-
|
|
94
|
-
---
|
|
95
|
-
|
|
96
48
|
## Quick Start
|
|
97
49
|
|
|
98
50
|
```bash
|
|
@@ -129,6 +81,5 @@ See the [full command reference](https://sefaertunc.github.io/Worclaude/referenc
|
|
|
129
81
|
## Links
|
|
130
82
|
|
|
131
83
|
- [Full Documentation](https://sefaertunc.github.io/Worclaude/)
|
|
132
|
-
- [Interactive Demo](https://sefaertunc.github.io/Worclaude/demo/)
|
|
133
84
|
- [Contributing](CONTRIBUTING.md)
|
|
134
85
|
- [License: MIT](LICENSE)
|