sisyphi 1.1.0 → 1.1.8

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/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "sisyphi",
3
- "version": "1.1.0",
3
+ "version": "1.1.8",
4
4
  "description": "tmux-integrated orchestration daemon for Claude Code multi-agent workflows",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/silasrhyneer/sisyphi.git"
8
+ "url": "git+https://github.com/CaptainCrouton89/sisyphus.git"
9
9
  },
10
10
  "keywords": [
11
11
  "claude",
@@ -0,0 +1,22 @@
1
+ ---
2
+ description: Hand off a task to sisyphus multi-agent orchestration
3
+ ---
4
+
5
+ !`sisyphus -h`
6
+
7
+ Run `sisyphus start` with a concise task/goal and optional background context:
8
+
9
+ ```bash
10
+ sisyphus start "your task description" -c "background context"
11
+ ```
12
+
13
+ **Task description** — the goal. Keep it focused: what needs to be built or fixed and what done looks like. This is the persistent objective the orchestrator sees every cycle.
14
+
15
+ **Context (`-c`)** — background info that informs the work but isn't the goal itself: relevant file paths, constraints, specs, adjacent concerns, prior findings. Rendered separately so the orchestrator can reference it without confusing it with the task.
16
+
17
+ **Context should be factual, not diagnostic.** Point to relevant files, areas of the codebase, and constraints — don't speculate on root causes or solutions, which can bias the orchestrator down the wrong path.
18
+
19
+ **Example:**
20
+ ```bash
21
+ sisyphus start "Fix the JWT refresh bug — app shows blank screen on token expiry instead of redirecting to login" -c "Auth system lives in src/auth/. Key files: interceptor.ts (HTTP interceptor), token-store.ts (token persistence), refresh.ts (refresh flow). Tests in src/auth/__tests__/. Don't break the logout flow."
22
+ ```