supered 0.1.3 → 0.2.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.
@@ -1,25 +1,93 @@
1
1
  ---
2
2
  name: using-supered
3
- description: Use when starting a Supered-guided coding session or when choosing which Supered workflow fits the user's request.
3
+ description: Use when a coding request is broad, ambiguous, multi-part, risky, or likely to benefit from a repeatable Supered skill.
4
4
  ---
5
5
 
6
6
  # Using Supered
7
7
 
8
- Supered keeps agent work small, explicit, and verifiable. Start here when a request could benefit from a workflow instead of immediate code.
8
+ Supered is a lightweight operating system for coding-agent work. Its job is to choose the smallest useful discipline for the situation, keep the user oriented, and prevent vague confidence from replacing evidence.
9
9
 
10
- ## When To Use
10
+ ## Trigger
11
11
 
12
- Use this skill for new features, bug fixes, code cleanup, public repo preparation, or any request where the agent needs to decide how much process is helpful.
12
+ Use this when a request involves new code, debugging, repo changes, publishing, unclear scope, multiple files, user-visible behavior, or any claim that will need proof. Also use it when the user explicitly mentions Supered, skills, workflow, process, hardening, launch, publish, ship, verify, or debug.
13
13
 
14
- ## Steps
14
+ ## Do Not Use When
15
15
 
16
- 1. Identify the user's desired outcome in one sentence.
17
- 2. Pick the narrowest matching Supered skill.
18
- 3. State the skill choice briefly before doing the work.
19
- 4. Keep progress visible with short updates.
20
- 5. Finish with evidence, not vibes.
16
+ Do not use Supered to slow down a tiny factual answer, a pure status report, or a harmless single-command lookup. Do not force every request through every skill. Never announce a skill and then ignore it; if the body is loaded, follow it.
21
17
 
22
- ## Skill Map
18
+ ## Required Inputs
19
+
20
+ - User request, including any newest correction or interruption.
21
+ - Current repo or task context.
22
+ - Known constraints: deadline, target host, test commands, publish target, or user preference.
23
+ - Any evidence already gathered.
24
+
25
+ If these are missing, inspect local context first. Ask the user only when guessing would change the outcome or risk unwanted work.
26
+
27
+ ## Operating Procedure
28
+
29
+ 1. Restate the outcome in one concrete sentence: "We are trying to..."
30
+ 2. Classify the request by risk and ambiguity:
31
+ - unclear idea: use `shape-the-task`
32
+ - approved direction needing a plan: use `make-a-map`
33
+ - implementation work: use `build-in-slices`
34
+ - failing or confusing behavior: use `trace-the-fault`
35
+ - completion or correctness claim: use `prove-the-change`
36
+ - commit, release, publish, or public handoff: use `ship-the-work`
37
+ 3. Pick the narrowest skill that covers the next move. Chain skills only when the task naturally advances.
38
+ 4. Tell the user the skill choice in one short sentence when the work is substantial.
39
+ 5. Keep updates factual: what you are inspecting, what you learned, and what you will change next.
40
+ 6. Before final response, use `prove-the-change` if you will claim success, and `ship-the-work` if anything was pushed, released, or published.
41
+
42
+ ## Output Contract
43
+
44
+ When routing work, produce:
45
+
46
+ ```text
47
+ Outcome:
48
+ Selected skill:
49
+ Why this skill:
50
+ Next action:
51
+ Evidence needed:
52
+ ```
53
+
54
+ For tiny tasks, compress this into a sentence. For larger tasks, maintain a visible checklist and update it as work changes.
55
+
56
+ ## Guardrails
57
+
58
+ - Stop if the newest user message contradicts the current direction; re-route from the newest request.
59
+ - Do not choose a heavyweight path because it feels impressive. Pick the least process that controls the real risk.
60
+ - Do not hide uncertainty. Name it, gather evidence, or ask.
61
+ - Never treat tests, builds, browser checks, or publishes as implied by code changes.
62
+ - Do not copy other skill libraries. Use original procedures and local repo patterns.
63
+
64
+ ## Failure Modes
65
+
66
+ - **Over-routing:** The agent invokes every skill and burns time. Fix by selecting only the next needed skill.
67
+ - **Under-routing:** The agent jumps into code on ambiguous work. Fix by using `shape-the-task`.
68
+ - **Ceremonial updates:** The agent says "using X" but does not follow the steps. Fix by rereading the chosen skill.
69
+ - **Stale objective:** The agent continues an older plan after the user redirects. Fix by restating the newest outcome.
70
+
71
+ ## Quality Gates
72
+
73
+ - The chosen skill matches the current risk.
74
+ - The next action is concrete and local.
75
+ - The user can see what is happening without reading hidden reasoning.
76
+ - Any final claim is backed by fresh evidence.
77
+
78
+ ## Example
79
+
80
+ Good:
81
+
82
+ ```text
83
+ Outcome: Harden the skill library.
84
+ Selected skill: shape-the-task, then build-in-slices.
85
+ Why this skill: the user is asking for product-quality behavior, not just packaging.
86
+ Next action: add tests that define a robust skill.
87
+ Evidence needed: failing tests before rewrite, passing tests after rewrite.
88
+ ```
89
+
90
+ Bad: "I'll improve the skills" followed by a large untested rewrite with no criteria.
23
91
 
24
92
  - `shape-the-task`: rough idea, unclear scope, or multiple possible products.
25
93
  - `make-a-map`: approved direction that needs an execution plan.