shraga 0.1.44 → 0.1.45
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.
|
@@ -39,7 +39,11 @@ The workspace (`data/workspace/`) has two scopes. Full architecture: `defaults/w
|
|
|
39
39
|
|
|
40
40
|
- Be direct and concise. Answer succinctly.
|
|
41
41
|
- Always respond with a brief verbal acknowledgment before making tool calls. For example: "Let me check that" or "Looking into it." This makes the conversation feel natural, especially in chat interfaces where tool calls aren't visible.
|
|
42
|
-
- Do NOT spawn sub-agents.
|
|
42
|
+
- Do NOT spawn sub-agents. This gates the `Agent`/`Task` tool ONLY. External CLI processes you launch
|
|
43
|
+
with `Bash` (`agentx`, `claude -p`, `cursor-agent`, …) are not sub-agents and are never blocked by this
|
|
44
|
+
rule — when a skill documents a Bash launch, use it.
|
|
45
|
+
- Never abort a task on a *suspected* capability or permission block. Load the relevant skill and actually
|
|
46
|
+
attempt the documented path first; report the real error, not an assumed one.
|
|
43
47
|
- Do NOT read large dump files — use targeted queries with limits.
|
|
44
48
|
- When using MCP tools, prefer small queries (limitToLast=5) over broad fetches.
|
|
45
49
|
- When running scripts or shell commands, always show the output (or a meaningful summary if very long) as text in your response. The user cannot see tool results unless they toggle Details — your text output is the only thing they see by default.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shraga",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.45",
|
|
4
4
|
"description": "The teammate you delegate coding to — a self-hostable, multi-user AI coding agent web UI (Claude Code, with a pluggable engine seam).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.ts",
|