worclaude 2.4.3 → 2.4.4
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/CHANGELOG.md +8 -0
- package/README.md +20 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to worclaude are documented in this file. Format loosely fol
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [2.4.4] — 2026-04-19
|
|
8
|
+
|
|
9
|
+
Docs-only patch. Adds an Acknowledgments section to the README crediting 13 community sources that informed Worclaude's design.
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- `README.md` — new `## Acknowledgments` section listing upstream inspirations (Boris Cherny's patterns, everything-claude-code, Karpathy's coding principles, pro-workflow, Anthropic Engineering Blog, awesome-claude-code, awesome-claude-code-toolkit, claude-skills-cli, SuperClaude, ccusage / claude-devtools, claude-flow, Vercel SkillKit, claude-code-templates). Footer line preserved.
|
|
14
|
+
|
|
7
15
|
## [2.4.3] — 2026-04-18
|
|
8
16
|
|
|
9
17
|
Hygiene patch closing three drifts surfaced by the 2026-04-18 anthropic-watch feed audit, plus a packaging fix. No user-facing CLI surface change; `worclaude init` / `upgrade` produce identical output to 2.4.1.
|
package/README.md
CHANGED
|
@@ -147,6 +147,26 @@ See the [full command reference](https://sefaertunc.github.io/Worclaude/referenc
|
|
|
147
147
|
|
|
148
148
|
---
|
|
149
149
|
|
|
150
|
+
## Acknowledgments
|
|
151
|
+
|
|
152
|
+
Worclaude draws from patterns and insights across the Claude Code ecosystem:
|
|
153
|
+
|
|
154
|
+
- [Boris Cherny's Claude Code tips](https://howborisusesclaudecode.com/) — The foundational workflow patterns: multi-terminal pipelines, plan-then-execute, CLAUDE.md as shared knowledge, verification-first development
|
|
155
|
+
- [everything-claude-code](https://github.com/affaan-m/everything-claude-code) by Affaan Mir (Anthropic hackathon winner) — Session persistence, hook profiles, confidence filtering, security scanning patterns
|
|
156
|
+
- [Andrej Karpathy's coding principles](https://github.com/multica-ai/andrej-karpathy-skills) — Think before coding, simplicity first, surgical changes ([original post](https://x.com/karpathy/status/2015883857489522876))
|
|
157
|
+
- [pro-workflow](https://github.com/peterHoburg/pro-workflow) — Correction detection, learning capture hooks, loop prevention patterns
|
|
158
|
+
- [Anthropic Engineering Blog](https://www.anthropic.com/engineering) — Agent design, context engineering, harness patterns
|
|
159
|
+
- [awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) by hesreallyhim — Community resource discovery and ecosystem awareness
|
|
160
|
+
- [awesome-claude-code-toolkit](https://github.com/rohitg00/awesome-claude-code-toolkit) by rohitg00 — Toolkit patterns and companion app references
|
|
161
|
+
- [claude-skills-cli](https://github.com/anthropics/skills) — Skill activation patterns and conditional loading insights
|
|
162
|
+
- [SuperClaude](https://github.com/andyholst/SuperClaude) — Persona and mode system analysis (informed what NOT to build)
|
|
163
|
+
- [ccusage](https://github.com/yashikota/ccusage) / [claude-devtools](https://github.com/nicobailey/claude-devtools) — Observability patterns (informed what NOT to build)
|
|
164
|
+
- [claude-flow](https://github.com/Ruflo/claude-flow) by Ruflo — Runtime orchestration patterns (informed the scaffolding-only philosophy)
|
|
165
|
+
- [Vercel SkillKit](https://github.com/vercel/skillkit) — Skill packaging and marketplace patterns
|
|
166
|
+
- [claude-code-templates](https://github.com/danielsalas/claude-code-templates) by Daniel Avila — Template gallery and component catalog reference
|
|
167
|
+
|
|
168
|
+
---
|
|
169
|
+
|
|
150
170
|
## Links
|
|
151
171
|
|
|
152
172
|
- [Full Documentation](https://sefaertunc.github.io/Worclaude/) — VitePress site with guides and reference
|