@caseyharalson/orrery 0.14.4 → 0.15.0
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/agent/skills/discovery/SKILL.md +5 -3
- package/agent/skills/orrery-execute/SKILL.md +4 -1
- package/agent/skills/orrery-report/SKILL.md +5 -3
- package/agent/skills/orrery-review/SKILL.md +4 -1
- package/agent/skills/orrery-verify/SKILL.md +5 -3
- package/agent/skills/refine-plan/SKILL.md +6 -4
- package/agent/skills/simulate-plan/SKILL.md +6 -4
- package/package.json +1 -1
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: discovery
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
Author an orrery plan — a YAML file under the orrery plans directory that
|
|
5
|
+
the orrery CLI executes step-by-step. Use ONLY when the user explicitly
|
|
6
|
+
asks to create an orrery plan (e.g., "make an orrery plan", "use orrery
|
|
7
|
+
discovery", "/discovery"). Do NOT use for general planning, architectural
|
|
8
|
+
discussion, or decomposing ideas unless the output is an orrery plan file.
|
|
7
9
|
hooks:
|
|
8
10
|
PostToolUse:
|
|
9
11
|
- matcher: "Write"
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: orrery-execute
|
|
3
3
|
description: >
|
|
4
|
-
|
|
4
|
+
Implement a single step from an orrery plan (YAML file under the orrery
|
|
5
|
+
plans directory) when invoked by the orrery orchestrator. Do NOT use for
|
|
6
|
+
general coding, bug fixes, or implementation work outside of an orrery
|
|
7
|
+
plan run.
|
|
5
8
|
user-invocable: false
|
|
6
9
|
---
|
|
7
10
|
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: orrery-report
|
|
3
3
|
description: >
|
|
4
|
-
Final reporting phase for
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
Final reporting phase for a single step of an orrery plan, invoked by the
|
|
5
|
+
orrery orchestrator after orrery-verify completes (or when reporting blocked
|
|
6
|
+
status). Outputs structured JSON consumed by the orrery orchestrator. Do
|
|
7
|
+
NOT use for general status summaries or reports outside of an orrery plan
|
|
8
|
+
run.
|
|
7
9
|
user-invocable: false
|
|
8
10
|
---
|
|
9
11
|
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: orrery-review
|
|
3
3
|
description: >
|
|
4
|
-
Review
|
|
4
|
+
Review changes made for a single step of an orrery plan (YAML file under
|
|
5
|
+
the orrery plans directory) when invoked by the orrery orchestrator, and
|
|
6
|
+
produce structured feedback for the editor agent. Do NOT use for general
|
|
7
|
+
code review outside of an orrery plan run.
|
|
5
8
|
user-invocable: false
|
|
6
9
|
---
|
|
7
10
|
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: orrery-verify
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
and
|
|
4
|
+
Verify a single step from an orrery plan (YAML file under the orrery plans
|
|
5
|
+
directory) when invoked by the orrery orchestrator after orrery-execute.
|
|
6
|
+
Runs the plan step's acceptance criteria, tests, and linting. Do NOT use
|
|
7
|
+
for general test runs, linting, or verification work outside of an orrery
|
|
8
|
+
plan run.
|
|
7
9
|
user-invocable: false
|
|
8
10
|
---
|
|
9
11
|
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: refine-plan
|
|
3
3
|
description: >
|
|
4
|
-
Analyze and improve an existing plan file
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
Analyze and improve an existing orrery plan (YAML file under the orrery
|
|
5
|
+
plans directory). Reviews plan structure, dependencies, context quality,
|
|
6
|
+
and acceptance criteria, then edits the plan file directly. Use ONLY when
|
|
7
|
+
the user explicitly asks to refine an orrery plan and provides a plan file
|
|
8
|
+
argument (e.g., /refine-plan my-plan.yaml). Run `orrery plans-dir` to find
|
|
9
|
+
the plans directory. Do NOT use for general plan or design-doc review.
|
|
8
10
|
hooks:
|
|
9
11
|
PostToolUse:
|
|
10
12
|
- matcher: "Write"
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: simulate-plan
|
|
3
3
|
description: >
|
|
4
|
-
Explore
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
Explore an existing orrery plan (YAML file under the orrery plans directory)
|
|
5
|
+
through conversational dialogue before committing to execution. Use ONLY
|
|
6
|
+
when the user explicitly asks to simulate an orrery plan and provides a
|
|
7
|
+
plan file argument (e.g., /simulate-plan my-plan.yaml, /simulate-plan
|
|
8
|
+
my-plan). Run `orrery plans-dir` to find the plans directory. Do NOT use
|
|
9
|
+
for general "what if" brainstorming outside of an orrery plan.
|
|
8
10
|
---
|
|
9
11
|
|
|
10
12
|
# Simulate Skill
|