oh-my-customcode 0.52.0 → 0.53.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/README.md +8 -0
- package/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/manifest.json +1 -1
package/README.md
CHANGED
|
@@ -52,6 +52,10 @@ oh-my-customcode is built on two ideas:
|
|
|
52
52
|
|
|
53
53
|
Skills are source. Agents are compiled output. Sauron verifies the build. This separation means skills evolve independently of agents, and agents can be recompiled from updated skills at any time.
|
|
54
54
|
|
|
55
|
+
<p align="center">
|
|
56
|
+
<img src="assets/diagrams/05-compilation-metaphor.png" alt="Compilation Metaphor" width="700" />
|
|
57
|
+
</p>
|
|
58
|
+
|
|
55
59
|
**2. If it can't be done, make it work.**
|
|
56
60
|
|
|
57
61
|
When no specialist exists for a task, oh-my-customcode does not fail. It creates one.
|
|
@@ -85,6 +89,10 @@ User (natural language)
|
|
|
85
89
|
|
|
86
90
|
Four routing skills cover the full domain:
|
|
87
91
|
|
|
92
|
+
<p align="center">
|
|
93
|
+
<img src="assets/diagrams/01-system-architecture.png" alt="System Architecture" width="700" />
|
|
94
|
+
</p>
|
|
95
|
+
|
|
88
96
|
| Routing Skill | Routes To |
|
|
89
97
|
|--------------|-----------|
|
|
90
98
|
| secretary-routing | Manager agents (mgr-*), system agents (sys-*) |
|
package/dist/cli/index.js
CHANGED
|
@@ -9323,7 +9323,7 @@ var init_package = __esm(() => {
|
|
|
9323
9323
|
package_default = {
|
|
9324
9324
|
name: "oh-my-customcode",
|
|
9325
9325
|
workspaces: ["packages/*"],
|
|
9326
|
-
version: "0.
|
|
9326
|
+
version: "0.53.1",
|
|
9327
9327
|
description: "Batteries-included agent harness for Claude Code",
|
|
9328
9328
|
type: "module",
|
|
9329
9329
|
bin: {
|
package/dist/index.js
CHANGED
|
@@ -1668,7 +1668,7 @@ import { join as join6 } from "node:path";
|
|
|
1668
1668
|
var package_default = {
|
|
1669
1669
|
name: "oh-my-customcode",
|
|
1670
1670
|
workspaces: ["packages/*"],
|
|
1671
|
-
version: "0.
|
|
1671
|
+
version: "0.53.1",
|
|
1672
1672
|
description: "Batteries-included agent harness for Claude Code",
|
|
1673
1673
|
type: "module",
|
|
1674
1674
|
bin: {
|
package/package.json
CHANGED
package/templates/manifest.json
CHANGED