@sitar_fiercer4c/skills 0.1.2 → 0.1.3

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 CHANGED
@@ -58,6 +58,7 @@ npm skips the copy when the installed version is unchanged. To restore the skill
58
58
  - backend-code-review
59
59
  - be-brief
60
60
  - clarke-list-excel
61
+ - convo-only
61
62
  - datalab-api
62
63
  - find-test-seam
63
64
  - frontend-code-review
@@ -73,6 +74,16 @@ npm skips the copy when the installed version is unchanged. To restore the skill
73
74
 
74
75
  Each skill lives in `skills/<name>/` with a `SKILL.md`. `evals/` folders are kept in the repo but excluded from the published package.
75
76
 
77
+ ### Using the skills in this repo
78
+
79
+ `npm install` can't add the package to this repo, because npm refuses to install a package into a project with the same name. Instead, copy the skills from your working copy into this repo's `.claude/skills` (gitignored) by running this from the repo root:
80
+
81
+ ```sh
82
+ node bin/install.js
83
+ ```
84
+
85
+ Run the same command to refresh the copies after editing anything under `skills/`. Unlike the published package, this copy also brings in any `evals/` folders. Reload skills in Claude Code (`/reload-skills`) or start a new session to pick up the changes.
86
+
76
87
  ## Releasing
77
88
 
78
89
  Releases are automatic. When a PR that changes `skills/`, `bin/` or `package.json` merges into `main`, the [Publish workflow](.github/workflows/publish.yml):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sitar_fiercer4c/skills",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Claude Code agent skills, installed into the project's .claude/skills directory",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: convo-only
3
+ description: User invoked. Keep the session to conversation only, with brief answers and no file writes or edits.
4
+ ---
5
+
6
+ # Intent
7
+ User wants to talk something through, not change anything. Understand, discuss and problem solve in chat only. Be brief in your replies.
8
+
9
+ ## Be brief
10
+ To make an answer brief, write it as a 30-60 word sentence. For technical things, use 10-15 word bullet points.
11
+ ### User tech stack
12
+ #### Good proficiency
13
+ Python, SQL, Linux, relational database, NoSQL database, System design, data flow, ETL pipeline
14
+ #### Medium proficiency
15
+ Spark, Java, Bash, Infrastructure as Code, AWS, Claude code, CLI
16
+ #### Bad proficiency
17
+ Frontend, Full stack, JavaScript, Node, NPM, Vercel, Render
18
+
19
+ # Rules
20
+ Stay in this mode for the rest of the session, until the user explicitly says to write or edit files.
21
+
22
+ - Do not create, write, edit, move or delete files. This includes notes, plans, scratch files and memory files.
23
+ - Do not install anything
24
+ - Reading files and running read-only commands to answer a question is fine.
25
+ - Do not call ExitPlanMode or ask to leave plan mode. In auto mode, still do not write or edit files.
26
+ - If a code change is the answer, describe it or show a short snippet in chat. Don't apply it.
27
+ - If the user's request seems to need a file change, ask whether they want to leave convo-only mode first.
@@ -0,0 +1,74 @@
1
+ ---
2
+ name: skillify
3
+ description: User invoked. Creates a new skill in skills/ from the fixed Goal, Steps, Constraints, Allowed template.
4
+ ---
5
+
6
+ # Skillify
7
+
8
+ ## Goal
9
+
10
+ Write a new skill to `skills/<name>/SKILL.md` at the repo root, using the fixed template below, then
11
+ print the whole file in chat for the user to review. One skill per run, created from what the user
12
+ asks for in conversation.
13
+
14
+ ## Steps
15
+
16
+ 1. Ask the user what the new skill does and when it runs. Collect its trigger, its output, its
17
+ limits, and whether it is user invoked.
18
+ 2. Create `skills/<name>/SKILL.md` with the four sections in their fixed order. Derive the kebab-case
19
+ name from what the skill does, without asking.
20
+ 3. Write the one-line description, starting with `User invoked.` or `Model invoked.`. Default to user
21
+ invoked, and carry trigger words when the model invokes it.
22
+ 4. Write the Goal as one sentence of thirty to sixty words. Name the finished output and the exact
23
+ path or place it lands.
24
+ 5. Write the Steps as an ordered list of actions. Start each with an action verb, then two sentences:
25
+ what, then how.
26
+ 6. Write the Constraints and Allowed bullets, one short line for each rule. State what must never
27
+ happen, then what the skill may freely do.
28
+ 7. Print the whole SKILL.md in chat once the file is written. Ask the user to review it and say what
29
+ to change.
30
+
31
+ ## Constraints
32
+
33
+ - Use only the sections Goal, Steps, Constraints and Allowed, in that order.
34
+ - Keep frontmatter to `name` and `description`.
35
+ - Keep the description to one line, opening with `User invoked.` or `Model invoked.`.
36
+ - Start every step with an action verb, never a vague one.
37
+ - Keep each step to two sentences of ten to fifteen words: what, then how.
38
+ - Keep the first draft of a new skill under thirty lines.
39
+ - Never overwrite or edit an existing skill.
40
+ - Never invent steps or rules the user did not give; ask instead.
41
+
42
+ ## Allowed
43
+
44
+ - Read any skill under `skills/` for reference.
45
+ - Create the folder `skills/<name>/` and the file `SKILL.md` inside it.
46
+ - Ask the user brief questions when the purpose, steps or limits are unclear.
47
+ - Suggest wording for any section, as long as the user confirms it.
48
+
49
+ ## Template
50
+
51
+ ````markdown
52
+ ---
53
+ name: <kebab-case-name>
54
+ description: <User invoked.|Model invoked.> <What it does>, for <trigger words>.
55
+ ---
56
+
57
+ # <Title>
58
+
59
+ ## Goal
60
+
61
+ <One sentence of thirty to sixty words: what a finished run produces and where it lands.>
62
+
63
+ ## Steps
64
+
65
+ 1. <Action verb first. Two sentences of ten to fifteen words: what, then how.>
66
+
67
+ ## Constraints
68
+
69
+ - <One line each: what must never happen, or scope limits.>
70
+
71
+ ## Allowed
72
+
73
+ - <One line each: anything the skill is explicitly permitted to do.>
74
+ ````