clew-code 0.2.28 → 0.2.29
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 +38 -28
- package/dist/main.js +2318 -2331
- package/docs/architecture.html +90 -91
- package/docs/changelog.html +141 -150
- package/docs/cli-reference.html +89 -90
- package/docs/commands.html +10 -9
- package/docs/daemon.html +62 -62
- package/docs/generated/providers.html +625 -0
- package/docs/generated/tools.html +559 -0
- package/docs/index.html +10 -13
- package/docs/personal-profile.html +3 -3
- package/docs/providers.html +625 -87
- package/docs/quick-start.html +81 -81
- package/docs/tools.html +551 -175
- package/docs/troubleshooting.html +86 -86
- package/package.json +162 -165
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<h2 id="capabilities">Key Capabilities</h2>
|
|
32
32
|
|
|
33
33
|
<h3>Delegation</h3>
|
|
34
|
-
<p>In personal profile, coding work is <strong>delegated</strong> — not done directly. Use the built-in <code>/delegate</code> skill (aliases: <code>/code</code>, <code>/worker</code>) to spawn a Codex worker via <code>
|
|
34
|
+
<p>In personal profile, coding work is <strong>delegated</strong> — not done directly. Use the built-in <code>/delegate</code> skill (aliases: <code>/code</code>, <code>/worker</code>) to spawn a Codex worker via <code>process_peer</code> with a structured task description.</p>
|
|
35
35
|
<p>The delegate handles the implementation; you review the results and report back to the user.</p>
|
|
36
36
|
|
|
37
37
|
<h3>Memory-Driven Learning</h3>
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
<li><strong>User asks for something</strong> (code, research, planning, automation)</li>
|
|
66
66
|
<li><strong>Personal profile classifies the request</strong> — coding or non-coding?</li>
|
|
67
67
|
<li><strong>Non-coding</strong> — handle directly (plan, research, answer, configure)</li>
|
|
68
|
-
<li><strong>Coding</strong> — use <code>
|
|
68
|
+
<li><strong>Coding</strong> — use <code>process_peer</code> to delegate to a Codex worker with a clear task brief</li>
|
|
69
69
|
<li><strong>Review results</strong> — summarize what the worker did, what passed, what failed</li>
|
|
70
70
|
<li><strong>Learn</strong> — if the process was repeatable, create a skill</li>
|
|
71
71
|
<li><strong>Remember</strong> — save any preferences or decisions to memory</li>
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
<ul>
|
|
77
77
|
<li>Understand the requirement and plan the approach</li>
|
|
78
78
|
<li>Create a structured task with goal, scope, files, constraints</li>
|
|
79
|
-
<li>Spawn a Codex worker via <code>
|
|
79
|
+
<li>Spawn a Codex worker via <code>process_peer</code> with appropriate timeout</li>
|
|
80
80
|
<li>Report results back: changes, pass/fail, blockers, next steps</li>
|
|
81
81
|
</ul>
|
|
82
82
|
|