@horizon_works/banto 0.7.0 → 0.8.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/gate_core.js +220 -1
- package/license/client.js +20 -1
- package/package.json +1 -2
- package/server.js +110 -36
- package/payload/compliance/SKILL.md +0 -113
- package/payload/compliance/dict/00_/345/213/225/344/275/234/347/242/272/350/252/215.json +0 -14
- package/payload/compliance/dict/06_house_rules.json +0 -16
- package/payload/compliance/dict/_sample/04_common_keihyo.json +0 -270
- package/payload/compliance/dict/_sample/README.md +0 -72
- package/payload/compliance/lint.js +0 -265
- package/payload/disciplines//347/225/252/351/240/255/343/201/256/344/275/234/346/263/225.md +0 -64
- package/payload/disciplines//350/207/252/345/267/261/345/201/245/350/250/272.md +0 -74
- package/payload/disciplines//351/200/261/346/254/241/343/203/241/343/203/263/343/203/206.md +0 -60
- package/payload/migration/protocol.md +0 -35
- package/payload/skill-maker/SKILL_base_anthropic.md +0 -357
- package/payload/skill-maker/skill-maker-v1.0.md +0 -305
- package/payload/skills/_/343/201/202/343/201/250/343/201/247/350/266/263/343/201/233/343/202/213/343/202/202/343/201/256.md +0 -47
- package/payload/skills/image-gen/SKILL.md +0 -147
- package/payload/skills/image-gen/gen.js +0 -225
- package/payload/skills/remember/SETUP_Google/351/200/243/346/220/272.md +0 -106
- package/payload/skills/remember/SKILL.md +0 -158
- package/payload/skills/remember/handoff.js +0 -149
- package/payload/skills/remember/tasks.js +0 -320
- package/payload/skills/slide-deck/SKILL.md +0 -160
- package/payload/skills/transcribe/README.md +0 -182
- package/payload/skills/transcribe/dict.json +0 -10
- package/payload/skills/transcribe/enroll_speaker.py +0 -76
- package/payload/skills/transcribe/identify_speakers.py +0 -153
- package/payload/skills/transcribe/transcribe.py +0 -126
|
@@ -1,357 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: skill-creator
|
|
3
|
-
description: Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
|
|
4
|
-
license: Complete terms in LICENSE.txt
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Skill Creator
|
|
8
|
-
|
|
9
|
-
This skill provides guidance for creating effective skills.
|
|
10
|
-
|
|
11
|
-
## About Skills
|
|
12
|
-
|
|
13
|
-
Skills are modular, self-contained packages that extend Claude's capabilities by providing
|
|
14
|
-
specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific
|
|
15
|
-
domains or tasks—they transform Claude from a general-purpose agent into a specialized agent
|
|
16
|
-
equipped with procedural knowledge that no model can fully possess.
|
|
17
|
-
|
|
18
|
-
### What Skills Provide
|
|
19
|
-
|
|
20
|
-
1. Specialized workflows - Multi-step procedures for specific domains
|
|
21
|
-
2. Tool integrations - Instructions for working with specific file formats or APIs
|
|
22
|
-
3. Domain expertise - Company-specific knowledge, schemas, business logic
|
|
23
|
-
4. Bundled resources - Scripts, references, and assets for complex and repetitive tasks
|
|
24
|
-
|
|
25
|
-
## Core Principles
|
|
26
|
-
|
|
27
|
-
### Concise is Key
|
|
28
|
-
|
|
29
|
-
The context window is a public good. Skills share the context window with everything else Claude needs: system prompt, conversation history, other Skills' metadata, and the actual user request.
|
|
30
|
-
|
|
31
|
-
**Default assumption: Claude is already very smart.** Only add context Claude doesn't already have. Challenge each piece of information: "Does Claude really need this explanation?" and "Does this paragraph justify its token cost?"
|
|
32
|
-
|
|
33
|
-
Prefer concise examples over verbose explanations.
|
|
34
|
-
|
|
35
|
-
### Set Appropriate Degrees of Freedom
|
|
36
|
-
|
|
37
|
-
Match the level of specificity to the task's fragility and variability:
|
|
38
|
-
|
|
39
|
-
**High freedom (text-based instructions)**: Use when multiple approaches are valid, decisions depend on context, or heuristics guide the approach.
|
|
40
|
-
|
|
41
|
-
**Medium freedom (pseudocode or scripts with parameters)**: Use when a preferred pattern exists, some variation is acceptable, or configuration affects behavior.
|
|
42
|
-
|
|
43
|
-
**Low freedom (specific scripts, few parameters)**: Use when operations are fragile and error-prone, consistency is critical, or a specific sequence must be followed.
|
|
44
|
-
|
|
45
|
-
Think of Claude as exploring a path: a narrow bridge with cliffs needs specific guardrails (low freedom), while an open field allows many routes (high freedom).
|
|
46
|
-
|
|
47
|
-
### Anatomy of a Skill
|
|
48
|
-
|
|
49
|
-
Every skill consists of a required SKILL.md file and optional bundled resources:
|
|
50
|
-
|
|
51
|
-
```
|
|
52
|
-
skill-name/
|
|
53
|
-
├── SKILL.md (required)
|
|
54
|
-
│ ├── YAML frontmatter metadata (required)
|
|
55
|
-
│ │ ├── name: (required)
|
|
56
|
-
│ │ ├── description: (required)
|
|
57
|
-
│ │ └── compatibility: (optional, rarely needed)
|
|
58
|
-
│ └── Markdown instructions (required)
|
|
59
|
-
└── Bundled Resources (optional)
|
|
60
|
-
├── scripts/ - Executable code (Python/Bash/etc.)
|
|
61
|
-
├── references/ - Documentation intended to be loaded into context as needed
|
|
62
|
-
└── assets/ - Files used in output (templates, icons, fonts, etc.)
|
|
63
|
-
```
|
|
64
|
-
|
|
65
|
-
#### SKILL.md (required)
|
|
66
|
-
|
|
67
|
-
Every SKILL.md consists of:
|
|
68
|
-
|
|
69
|
-
- **Frontmatter** (YAML): Contains `name` and `description` fields (required), plus optional fields like `license`, `metadata`, and `compatibility`. Only `name` and `description` are read by Claude to determine when the skill triggers, so be clear and comprehensive about what the skill is and when it should be used. The `compatibility` field is for noting environment requirements (target product, system packages, etc.) but most skills don't need it.
|
|
70
|
-
- **Body** (Markdown): Instructions and guidance for using the skill. Only loaded AFTER the skill triggers (if at all).
|
|
71
|
-
|
|
72
|
-
#### Bundled Resources (optional)
|
|
73
|
-
|
|
74
|
-
##### Scripts (`scripts/`)
|
|
75
|
-
|
|
76
|
-
Executable code (Python/Bash/etc.) for tasks that require deterministic reliability or are repeatedly rewritten.
|
|
77
|
-
|
|
78
|
-
- **When to include**: When the same code is being rewritten repeatedly or deterministic reliability is needed
|
|
79
|
-
- **Example**: `scripts/rotate_pdf.py` for PDF rotation tasks
|
|
80
|
-
- **Benefits**: Token efficient, deterministic, may be executed without loading into context
|
|
81
|
-
- **Note**: Scripts may still need to be read by Claude for patching or environment-specific adjustments
|
|
82
|
-
|
|
83
|
-
##### References (`references/`)
|
|
84
|
-
|
|
85
|
-
Documentation and reference material intended to be loaded as needed into context to inform Claude's process and thinking.
|
|
86
|
-
|
|
87
|
-
- **When to include**: For documentation that Claude should reference while working
|
|
88
|
-
- **Examples**: `references/finance.md` for financial schemas, `references/mnda.md` for company NDA template, `references/policies.md` for company policies, `references/api_docs.md` for API specifications
|
|
89
|
-
- **Use cases**: Database schemas, API documentation, domain knowledge, company policies, detailed workflow guides
|
|
90
|
-
- **Benefits**: Keeps SKILL.md lean, loaded only when Claude determines it's needed
|
|
91
|
-
- **Best practice**: If files are large (>10k words), include grep search patterns in SKILL.md
|
|
92
|
-
- **Avoid duplication**: Information should live in either SKILL.md or references files, not both. Prefer references files for detailed information unless it's truly core to the skill—this keeps SKILL.md lean while making information discoverable without hogging the context window. Keep only essential procedural instructions and workflow guidance in SKILL.md; move detailed reference material, schemas, and examples to references files.
|
|
93
|
-
|
|
94
|
-
##### Assets (`assets/`)
|
|
95
|
-
|
|
96
|
-
Files not intended to be loaded into context, but rather used within the output Claude produces.
|
|
97
|
-
|
|
98
|
-
- **When to include**: When the skill needs files that will be used in the final output
|
|
99
|
-
- **Examples**: `assets/logo.png` for brand assets, `assets/slides.pptx` for PowerPoint templates, `assets/frontend-template/` for HTML/React boilerplate, `assets/font.ttf` for typography
|
|
100
|
-
- **Use cases**: Templates, images, icons, boilerplate code, fonts, sample documents that get copied or modified
|
|
101
|
-
- **Benefits**: Separates output resources from documentation, enables Claude to use files without loading them into context
|
|
102
|
-
|
|
103
|
-
#### What to Not Include in a Skill
|
|
104
|
-
|
|
105
|
-
A skill should only contain essential files that directly support its functionality. Do NOT create extraneous documentation or auxiliary files, including:
|
|
106
|
-
|
|
107
|
-
- README.md
|
|
108
|
-
- INSTALLATION_GUIDE.md
|
|
109
|
-
- QUICK_REFERENCE.md
|
|
110
|
-
- CHANGELOG.md
|
|
111
|
-
- etc.
|
|
112
|
-
|
|
113
|
-
The skill should only contain the information needed for an AI agent to do the job at hand. It should not contain auxilary context about the process that went into creating it, setup and testing procedures, user-facing documentation, etc. Creating additional documentation files just adds clutter and confusion.
|
|
114
|
-
|
|
115
|
-
### Progressive Disclosure Design Principle
|
|
116
|
-
|
|
117
|
-
Skills use a three-level loading system to manage context efficiently:
|
|
118
|
-
|
|
119
|
-
1. **Metadata (name + description)** - Always in context (~100 words)
|
|
120
|
-
2. **SKILL.md body** - When skill triggers (<5k words)
|
|
121
|
-
3. **Bundled resources** - As needed by Claude (Unlimited because scripts can be executed without reading into context window)
|
|
122
|
-
|
|
123
|
-
#### Progressive Disclosure Patterns
|
|
124
|
-
|
|
125
|
-
Keep SKILL.md body to the essentials and under 500 lines to minimize context bloat. Split content into separate files when approaching this limit. When splitting out content into other files, it is very important to reference them from SKILL.md and describe clearly when to read them, to ensure the reader of the skill knows they exist and when to use them.
|
|
126
|
-
|
|
127
|
-
**Key principle:** When a skill supports multiple variations, frameworks, or options, keep only the core workflow and selection guidance in SKILL.md. Move variant-specific details (patterns, examples, configuration) into separate reference files.
|
|
128
|
-
|
|
129
|
-
**Pattern 1: High-level guide with references**
|
|
130
|
-
|
|
131
|
-
```markdown
|
|
132
|
-
# PDF Processing
|
|
133
|
-
|
|
134
|
-
## Quick start
|
|
135
|
-
|
|
136
|
-
Extract text with pdfplumber:
|
|
137
|
-
[code example]
|
|
138
|
-
|
|
139
|
-
## Advanced features
|
|
140
|
-
|
|
141
|
-
- **Form filling**: See [FORMS.md](FORMS.md) for complete guide
|
|
142
|
-
- **API reference**: See [REFERENCE.md](REFERENCE.md) for all methods
|
|
143
|
-
- **Examples**: See [EXAMPLES.md](EXAMPLES.md) for common patterns
|
|
144
|
-
```
|
|
145
|
-
|
|
146
|
-
Claude loads FORMS.md, REFERENCE.md, or EXAMPLES.md only when needed.
|
|
147
|
-
|
|
148
|
-
**Pattern 2: Domain-specific organization**
|
|
149
|
-
|
|
150
|
-
For Skills with multiple domains, organize content by domain to avoid loading irrelevant context:
|
|
151
|
-
|
|
152
|
-
```
|
|
153
|
-
bigquery-skill/
|
|
154
|
-
├── SKILL.md (overview and navigation)
|
|
155
|
-
└── reference/
|
|
156
|
-
├── finance.md (revenue, billing metrics)
|
|
157
|
-
├── sales.md (opportunities, pipeline)
|
|
158
|
-
├── product.md (API usage, features)
|
|
159
|
-
└── marketing.md (campaigns, attribution)
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
When a user asks about sales metrics, Claude only reads sales.md.
|
|
163
|
-
|
|
164
|
-
Similarly, for skills supporting multiple frameworks or variants, organize by variant:
|
|
165
|
-
|
|
166
|
-
```
|
|
167
|
-
cloud-deploy/
|
|
168
|
-
├── SKILL.md (workflow + provider selection)
|
|
169
|
-
└── references/
|
|
170
|
-
├── aws.md (AWS deployment patterns)
|
|
171
|
-
├── gcp.md (GCP deployment patterns)
|
|
172
|
-
└── azure.md (Azure deployment patterns)
|
|
173
|
-
```
|
|
174
|
-
|
|
175
|
-
When the user chooses AWS, Claude only reads aws.md.
|
|
176
|
-
|
|
177
|
-
**Pattern 3: Conditional details**
|
|
178
|
-
|
|
179
|
-
Show basic content, link to advanced content:
|
|
180
|
-
|
|
181
|
-
```markdown
|
|
182
|
-
# DOCX Processing
|
|
183
|
-
|
|
184
|
-
## Creating documents
|
|
185
|
-
|
|
186
|
-
Use docx-js for new documents. See [DOCX-JS.md](DOCX-JS.md).
|
|
187
|
-
|
|
188
|
-
## Editing documents
|
|
189
|
-
|
|
190
|
-
For simple edits, modify the XML directly.
|
|
191
|
-
|
|
192
|
-
**For tracked changes**: See [REDLINING.md](REDLINING.md)
|
|
193
|
-
**For OOXML details**: See [OOXML.md](OOXML.md)
|
|
194
|
-
```
|
|
195
|
-
|
|
196
|
-
Claude reads REDLINING.md or OOXML.md only when the user needs those features.
|
|
197
|
-
|
|
198
|
-
**Important guidelines:**
|
|
199
|
-
|
|
200
|
-
- **Avoid deeply nested references** - Keep references one level deep from SKILL.md. All reference files should link directly from SKILL.md.
|
|
201
|
-
- **Structure longer reference files** - For files longer than 100 lines, include a table of contents at the top so Claude can see the full scope when previewing.
|
|
202
|
-
|
|
203
|
-
## Skill Creation Process
|
|
204
|
-
|
|
205
|
-
Skill creation involves these steps:
|
|
206
|
-
|
|
207
|
-
1. Understand the skill with concrete examples
|
|
208
|
-
2. Plan reusable skill contents (scripts, references, assets)
|
|
209
|
-
3. Initialize the skill (run init_skill.py)
|
|
210
|
-
4. Edit the skill (implement resources and write SKILL.md)
|
|
211
|
-
5. Package the skill (run package_skill.py)
|
|
212
|
-
6. Iterate based on real usage
|
|
213
|
-
|
|
214
|
-
Follow these steps in order, skipping only if there is a clear reason why they are not applicable.
|
|
215
|
-
|
|
216
|
-
### Step 1: Understanding the Skill with Concrete Examples
|
|
217
|
-
|
|
218
|
-
Skip this step only when the skill's usage patterns are already clearly understood. It remains valuable even when working with an existing skill.
|
|
219
|
-
|
|
220
|
-
To create an effective skill, clearly understand concrete examples of how the skill will be used. This understanding can come from either direct user examples or generated examples that are validated with user feedback.
|
|
221
|
-
|
|
222
|
-
For example, when building an image-editor skill, relevant questions include:
|
|
223
|
-
|
|
224
|
-
- "What functionality should the image-editor skill support? Editing, rotating, anything else?"
|
|
225
|
-
- "Can you give some examples of how this skill would be used?"
|
|
226
|
-
- "I can imagine users asking for things like 'Remove the red-eye from this image' or 'Rotate this image'. Are there other ways you imagine this skill being used?"
|
|
227
|
-
- "What would a user say that should trigger this skill?"
|
|
228
|
-
|
|
229
|
-
To avoid overwhelming users, avoid asking too many questions in a single message. Start with the most important questions and follow up as needed for better effectiveness.
|
|
230
|
-
|
|
231
|
-
Conclude this step when there is a clear sense of the functionality the skill should support.
|
|
232
|
-
|
|
233
|
-
### Step 2: Planning the Reusable Skill Contents
|
|
234
|
-
|
|
235
|
-
To turn concrete examples into an effective skill, analyze each example by:
|
|
236
|
-
|
|
237
|
-
1. Considering how to execute on the example from scratch
|
|
238
|
-
2. Identifying what scripts, references, and assets would be helpful when executing these workflows repeatedly
|
|
239
|
-
|
|
240
|
-
Example: When building a `pdf-editor` skill to handle queries like "Help me rotate this PDF," the analysis shows:
|
|
241
|
-
|
|
242
|
-
1. Rotating a PDF requires re-writing the same code each time
|
|
243
|
-
2. A `scripts/rotate_pdf.py` script would be helpful to store in the skill
|
|
244
|
-
|
|
245
|
-
Example: When designing a `frontend-webapp-builder` skill for queries like "Build me a todo app" or "Build me a dashboard to track my steps," the analysis shows:
|
|
246
|
-
|
|
247
|
-
1. Writing a frontend webapp requires the same boilerplate HTML/React each time
|
|
248
|
-
2. An `assets/hello-world/` template containing the boilerplate HTML/React project files would be helpful to store in the skill
|
|
249
|
-
|
|
250
|
-
Example: When building a `big-query` skill to handle queries like "How many users have logged in today?" the analysis shows:
|
|
251
|
-
|
|
252
|
-
1. Querying BigQuery requires re-discovering the table schemas and relationships each time
|
|
253
|
-
2. A `references/schema.md` file documenting the table schemas would be helpful to store in the skill
|
|
254
|
-
|
|
255
|
-
To establish the skill's contents, analyze each concrete example to create a list of the reusable resources to include: scripts, references, and assets.
|
|
256
|
-
|
|
257
|
-
### Step 3: Initializing the Skill
|
|
258
|
-
|
|
259
|
-
At this point, it is time to actually create the skill.
|
|
260
|
-
|
|
261
|
-
Skip this step only if the skill being developed already exists, and iteration or packaging is needed. In this case, continue to the next step.
|
|
262
|
-
|
|
263
|
-
When creating a new skill from scratch, always run the `init_skill.py` script. The script conveniently generates a new template skill directory that automatically includes everything a skill requires, making the skill creation process much more efficient and reliable.
|
|
264
|
-
|
|
265
|
-
Usage:
|
|
266
|
-
|
|
267
|
-
```bash
|
|
268
|
-
scripts/init_skill.py <skill-name> --path <output-directory>
|
|
269
|
-
```
|
|
270
|
-
|
|
271
|
-
The script:
|
|
272
|
-
|
|
273
|
-
- Creates the skill directory at the specified path
|
|
274
|
-
- Generates a SKILL.md template with proper frontmatter and TODO placeholders
|
|
275
|
-
- Creates example resource directories: `scripts/`, `references/`, and `assets/`
|
|
276
|
-
- Adds example files in each directory that can be customized or deleted
|
|
277
|
-
|
|
278
|
-
After initialization, customize or remove the generated SKILL.md and example files as needed.
|
|
279
|
-
|
|
280
|
-
### Step 4: Edit the Skill
|
|
281
|
-
|
|
282
|
-
When editing the (newly-generated or existing) skill, remember that the skill is being created for another instance of Claude to use. Include information that would be beneficial and non-obvious to Claude. Consider what procedural knowledge, domain-specific details, or reusable assets would help another Claude instance execute these tasks more effectively.
|
|
283
|
-
|
|
284
|
-
#### Learn Proven Design Patterns
|
|
285
|
-
|
|
286
|
-
Consult these helpful guides based on your skill's needs:
|
|
287
|
-
|
|
288
|
-
- **Multi-step processes**: See references/workflows.md for sequential workflows and conditional logic
|
|
289
|
-
- **Specific output formats or quality standards**: See references/output-patterns.md for template and example patterns
|
|
290
|
-
|
|
291
|
-
These files contain established best practices for effective skill design.
|
|
292
|
-
|
|
293
|
-
#### Start with Reusable Skill Contents
|
|
294
|
-
|
|
295
|
-
To begin implementation, start with the reusable resources identified above: `scripts/`, `references/`, and `assets/` files. Note that this step may require user input. For example, when implementing a `brand-guidelines` skill, the user may need to provide brand assets or templates to store in `assets/`, or documentation to store in `references/`.
|
|
296
|
-
|
|
297
|
-
Added scripts must be tested by actually running them to ensure there are no bugs and that the output matches what is expected. If there are many similar scripts, only a representative sample needs to be tested to ensure confidence that they all work while balancing time to completion.
|
|
298
|
-
|
|
299
|
-
Any example files and directories not needed for the skill should be deleted. The initialization script creates example files in `scripts/`, `references/`, and `assets/` to demonstrate structure, but most skills won't need all of them.
|
|
300
|
-
|
|
301
|
-
#### Update SKILL.md
|
|
302
|
-
|
|
303
|
-
**Writing Guidelines:** Always use imperative/infinitive form.
|
|
304
|
-
|
|
305
|
-
##### Frontmatter
|
|
306
|
-
|
|
307
|
-
Write the YAML frontmatter with `name` and `description`:
|
|
308
|
-
|
|
309
|
-
- `name`: The skill name
|
|
310
|
-
- `description`: This is the primary triggering mechanism for your skill, and helps Claude understand when to use the skill.
|
|
311
|
-
- Include both what the Skill does and specific triggers/contexts for when to use it.
|
|
312
|
-
- Include all "when to use" information here - Not in the body. The body is only loaded after triggering, so "When to Use This Skill" sections in the body are not helpful to Claude.
|
|
313
|
-
- Example description for a `docx` skill: "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. Use when Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks"
|
|
314
|
-
|
|
315
|
-
Do not include any other fields in YAML frontmatter.
|
|
316
|
-
|
|
317
|
-
##### Body
|
|
318
|
-
|
|
319
|
-
Write instructions for using the skill and its bundled resources.
|
|
320
|
-
|
|
321
|
-
### Step 5: Packaging a Skill
|
|
322
|
-
|
|
323
|
-
Once development of the skill is complete, it must be packaged into a distributable .skill file that gets shared with the user. The packaging process automatically validates the skill first to ensure it meets all requirements:
|
|
324
|
-
|
|
325
|
-
```bash
|
|
326
|
-
scripts/package_skill.py <path/to/skill-folder>
|
|
327
|
-
```
|
|
328
|
-
|
|
329
|
-
Optional output directory specification:
|
|
330
|
-
|
|
331
|
-
```bash
|
|
332
|
-
scripts/package_skill.py <path/to/skill-folder> ./dist
|
|
333
|
-
```
|
|
334
|
-
|
|
335
|
-
The packaging script will:
|
|
336
|
-
|
|
337
|
-
1. **Validate** the skill automatically, checking:
|
|
338
|
-
|
|
339
|
-
- YAML frontmatter format and required fields
|
|
340
|
-
- Skill naming conventions and directory structure
|
|
341
|
-
- Description completeness and quality
|
|
342
|
-
- File organization and resource references
|
|
343
|
-
|
|
344
|
-
2. **Package** the skill if validation passes, creating a .skill file named after the skill (e.g., `my-skill.skill`) that includes all files and maintains the proper directory structure for distribution. The .skill file is a zip file with a .skill extension.
|
|
345
|
-
|
|
346
|
-
If validation fails, the script will report the errors and exit without creating a package. Fix any validation errors and run the packaging command again.
|
|
347
|
-
|
|
348
|
-
### Step 6: Iterate
|
|
349
|
-
|
|
350
|
-
After testing the skill, users may request improvements. Often this happens right after using the skill, with fresh context of how the skill performed.
|
|
351
|
-
|
|
352
|
-
**Iteration workflow:**
|
|
353
|
-
|
|
354
|
-
1. Use the skill on real tasks
|
|
355
|
-
2. Notice struggles or inefficiencies
|
|
356
|
-
3. Identify how SKILL.md or bundled resources should be updated
|
|
357
|
-
4. Implement changes and test again
|
|
@@ -1,305 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: skill-maker
|
|
3
|
-
version: 1.0
|
|
4
|
-
description: |
|
|
5
|
-
あなた専用のスキル(AIの得意技)を作るサプリ。
|
|
6
|
-
士業の日常業務パターンを内蔵し、「これスキルにして」と言うだけで
|
|
7
|
-
正しいフォーマット(SKILL.md)のスキルをAIが生成する。
|
|
8
|
-
サプリで満たせない「自分の事務所ならではの困りごと」をスキルで自作できるようになる。
|
|
9
|
-
layer: system
|
|
10
|
-
depends_on: [freudian-land]
|
|
11
|
-
rls_lens: Utility
|
|
12
|
-
supplement_meta:
|
|
13
|
-
brand: "💊 スキル作成サプリ"
|
|
14
|
-
effect: "自分専用のスキルを正しい形式で作れるようになる。士業向けテンプレート内蔵"
|
|
15
|
-
dosage: "困りごとが出てきたタイミングで処方(繰り返し使う作業があるとき)"
|
|
16
|
-
prerequisite: "Freudian-Land導入済みであること"
|
|
17
|
-
side_effects: "スキルを作りすぎると管理が大変になる。3ヶ月使わなかったスキルは整理することを推奨。"
|
|
18
|
-
interop:
|
|
19
|
-
data_path: skills/
|
|
20
|
-
keys: [スキル名]
|
|
21
|
-
provides: [カスタムスキル生成機能]
|
|
22
|
-
---
|
|
23
|
-
|
|
24
|
-
# 💊 スキル作成サプリ v1.0
|
|
25
|
-
|
|
26
|
-
> **このファイル1枚をAIに「読んでセットアップして」と依頼するだけで完了します。**
|
|
27
|
-
> AIに「○○のスキル作って」と言うだけで、正しい形式のスキルが出来上がります。
|
|
28
|
-
|
|
29
|
-
---
|
|
30
|
-
|
|
31
|
-
## 効能
|
|
32
|
-
|
|
33
|
-
- ✅ 「これスキルにして」でAIが**正しいフォーマット**のスキルを自動生成
|
|
34
|
-
- ✅ 士業の業務パターンを内蔵(手続き/給与/助成金/コンサル/顧客対応)
|
|
35
|
-
- ✅ SKILL.md + 関連ファイル構造をワンセットで作成
|
|
36
|
-
- ✅ スキル vs サプリの判断フローで「どっちで作るべきか」が分かる
|
|
37
|
-
- ✅ 作ったスキルはAntigravityから即 `/` コマンドで使える
|
|
38
|
-
|
|
39
|
-
## サプリとスキルの違い
|
|
40
|
-
|
|
41
|
-
| | サプリ | スキル |
|
|
42
|
-
|---|--------|--------|
|
|
43
|
-
| 位置づけ | **既製品の処方箋** | **事務所専用の自家製薬** |
|
|
44
|
-
| 配布元 | 薬局(Drive)から降ってくる | 自分で作って自分で使う |
|
|
45
|
-
| 共通性 | 多くの事務所で効く汎用機能 | 特定事務所の困りごとに特化 |
|
|
46
|
-
| 作る頻度 | 増えるのを待つだけ | 必要なときに自分で作る |
|
|
47
|
-
| 例 | 36協定ウォッチャー、顧客台帳 | 「うちの経審報告書テンプレ」「○○建設様専用チェックリスト」 |
|
|
48
|
-
|
|
49
|
-
> 💡 **サプリで済むなら薬局を探す。なければスキルを自作する。**
|
|
50
|
-
|
|
51
|
-
---
|
|
52
|
-
|
|
53
|
-
## 用法・用量
|
|
54
|
-
|
|
55
|
-
困りごとが出てきたタイミングで、AIに声をかけるだけ:
|
|
56
|
-
|
|
57
|
-
```
|
|
58
|
-
繰り返しやってる作業があるんだけど、スキルにできる?
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
AIが以下を確認しながらスキルを組み立てます:
|
|
62
|
-
|
|
63
|
-
1. その作業はどんな困りごとを解決する?
|
|
64
|
-
2. 使うタイミング・頻度は?
|
|
65
|
-
3. インプットは何?(顧問先情報・数値・テンプレ等)
|
|
66
|
-
4. アウトプットは何?(文書・リスト・判定結果等)
|
|
67
|
-
5. 同じ作業をする他の人(事務所内)も使う?
|
|
68
|
-
|
|
69
|
-
---
|
|
70
|
-
|
|
71
|
-
## セットアップ手順(AIが自動実行)
|
|
72
|
-
|
|
73
|
-
AIに以下を依頼してください:
|
|
74
|
-
|
|
75
|
-
```
|
|
76
|
-
skill-maker-v1.0.md を読んでサプリメントとしてセットアップしてください
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
AIが自動で以下を実行します:
|
|
80
|
-
|
|
81
|
-
### Step A: フォルダ生成
|
|
82
|
-
|
|
83
|
-
```
|
|
84
|
-
skills/ ← 既にあれば触らない
|
|
85
|
-
└── _skill_templates/ ← スキル作成用テンプレート集
|
|
86
|
-
├── categories.md ← 士業業務カテゴリ別の雛形
|
|
87
|
-
└── skill_md_template.md ← SKILL.md の基本テンプレ
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
### Step B: カテゴリ別雛形の配置
|
|
91
|
-
|
|
92
|
-
`skills/_skill_templates/categories.md` を配置:
|
|
93
|
-
|
|
94
|
-
```markdown
|
|
95
|
-
# 士業業務のスキル化パターン
|
|
96
|
-
|
|
97
|
-
## 手続き系(提出書類の作成)
|
|
98
|
-
例:36協定届、資格取得/喪失届、離職票、産育休、労災
|
|
99
|
-
- 必要書類チェックリスト
|
|
100
|
-
- ヒアリング項目
|
|
101
|
-
- 提出フロー
|
|
102
|
-
- 控えの保管ルール
|
|
103
|
-
|
|
104
|
-
## 給与系
|
|
105
|
-
例:月次給与計算、賞与計算、年末調整
|
|
106
|
-
- インプット確認リスト
|
|
107
|
-
- 計算ルール
|
|
108
|
-
- 顧問先確認フロー
|
|
109
|
-
- 明細書発行
|
|
110
|
-
|
|
111
|
-
## 助成金系
|
|
112
|
-
例:キャリアアップ、両立支援、人材開発
|
|
113
|
-
- 要件確認チェックリスト
|
|
114
|
-
- 必要書類リスト
|
|
115
|
-
- 申請スケジュール
|
|
116
|
-
- 支給要件達成の監視項目
|
|
117
|
-
|
|
118
|
-
## コンサル系
|
|
119
|
-
例:就業規則作成/改定、人事制度設計、評価制度
|
|
120
|
-
- ヒアリング項目
|
|
121
|
-
- 提案書テンプレ
|
|
122
|
-
- 作業段階(案作成→レビュー→修正→確定)
|
|
123
|
-
- 納品フォーマット
|
|
124
|
-
|
|
125
|
-
## 顧客対応系
|
|
126
|
-
例:月次レター、面談議事録、問い合わせ対応
|
|
127
|
-
- 対応トーン(顧問先別)
|
|
128
|
-
- テンプレート
|
|
129
|
-
- 返信の型
|
|
130
|
-
|
|
131
|
-
## 特定顧問先特化系
|
|
132
|
-
例:○○建設様の経審報告、××商事様の賞与計算
|
|
133
|
-
- その顧問先ならではのルール
|
|
134
|
-
- 担当者の好み
|
|
135
|
-
- 過去のやり取り参照
|
|
136
|
-
```
|
|
137
|
-
|
|
138
|
-
### Step C: SKILL.md基本テンプレの配置
|
|
139
|
-
|
|
140
|
-
`skills/_skill_templates/skill_md_template.md` を配置:
|
|
141
|
-
|
|
142
|
-
```markdown
|
|
143
|
-
---
|
|
144
|
-
name: スキル名(英数字・ハイフン区切り、例:k36-agreement-drafter)
|
|
145
|
-
version: 1.0
|
|
146
|
-
description: |
|
|
147
|
-
このスキルが何をするかを1-2行で。
|
|
148
|
-
次のような場面で使用する:
|
|
149
|
-
・「○○と言われたとき」
|
|
150
|
-
・「△△のファイルを開いたとき」
|
|
151
|
-
・「□□の業務に取り掛かるとき」
|
|
152
|
-
---
|
|
153
|
-
|
|
154
|
-
# {スキル名の読みやすいタイトル}
|
|
155
|
-
|
|
156
|
-
## 目的・効能
|
|
157
|
-
|
|
158
|
-
このスキルが解決する困りごとを書く。
|
|
159
|
-
|
|
160
|
-
## 発火タイミング
|
|
161
|
-
|
|
162
|
-
以下のときに発動する:
|
|
163
|
-
- 「○○して」「○○お願い」
|
|
164
|
-
- 特定ファイルを開いたとき
|
|
165
|
-
- 特定の時期(月初・年度末など)
|
|
166
|
-
|
|
167
|
-
## 動作フロー
|
|
168
|
-
|
|
169
|
-
1. インプット確認:
|
|
170
|
-
- 必須項目
|
|
171
|
-
- 任意項目
|
|
172
|
-
2. 処理:
|
|
173
|
-
- 何をするか段階的に
|
|
174
|
-
3. アウトプット:
|
|
175
|
-
- 何を出力するか
|
|
176
|
-
- どこに保存するか
|
|
177
|
-
|
|
178
|
-
## テンプレート・参照ファイル
|
|
179
|
-
|
|
180
|
-
(必要なら)
|
|
181
|
-
|
|
182
|
-
## 注意事項
|
|
183
|
-
|
|
184
|
-
- 機密情報の扱い
|
|
185
|
-
- 確認ポイント
|
|
186
|
-
```
|
|
187
|
-
|
|
188
|
-
### Step D: AIの動作ルールを `.claude/rules/skill_maker.md` に配置
|
|
189
|
-
|
|
190
|
-
```markdown
|
|
191
|
-
# スキル作成サプリ 動作ルール
|
|
192
|
-
|
|
193
|
-
## 「○○のスキル作って」「これスキルにして」と言われたら
|
|
194
|
-
|
|
195
|
-
1. サプリで代替できないか確認する:
|
|
196
|
-
- 薬局(INTEROP.md)のサプリ一覧を参照
|
|
197
|
-
- 似たサプリがあれば「💊○○サプリで代替できますが、使いますか?」と提案
|
|
198
|
-
- どうしても特化したいなら → スキル作成に進む
|
|
199
|
-
|
|
200
|
-
2. ヒアリング(5つ聞く):
|
|
201
|
-
- どんな困りごと?(1行で)
|
|
202
|
-
- いつ使う?(発火タイミング)
|
|
203
|
-
- インプットは?(ファイル/情報/顧問先など)
|
|
204
|
-
- アウトプットは?(何が出来上がる?)
|
|
205
|
-
- 業務カテゴリは?(categories.md から選択)
|
|
206
|
-
|
|
207
|
-
3. スキルを組み立てる:
|
|
208
|
-
- `skills/_skill_templates/skill_md_template.md` をベースに
|
|
209
|
-
- カテゴリ別雛形(`categories.md`)の該当パターンを参照
|
|
210
|
-
- `skills/{skill-name}/SKILL.md` に保存
|
|
211
|
-
- 必要ならテンプレートファイルも `skills/{skill-name}/templates/` に配置
|
|
212
|
-
|
|
213
|
-
4. 動作確認:
|
|
214
|
-
- 「試しに動かしてみましょうか?」と提案
|
|
215
|
-
- サンプル入力で動作確認
|
|
216
|
-
- 不具合があればSKILL.mdを調整
|
|
217
|
-
|
|
218
|
-
5. 記録:
|
|
219
|
-
- `subconscious.md` に「新しいスキル○○を作成」を軽く記録
|
|
220
|
-
|
|
221
|
-
## スキルの良し悪し判定
|
|
222
|
-
|
|
223
|
-
良いスキルの条件:
|
|
224
|
-
- **1つの困りごとに絞られている**(多機能は避ける)
|
|
225
|
-
- **発火タイミングが明確**(いつ使うか一発で分かる)
|
|
226
|
-
- **インプット・アウトプットが明示されている**
|
|
227
|
-
- **士業の実務と結びついている**(抽象的すぎない)
|
|
228
|
-
|
|
229
|
-
悪いスキルの兆候:
|
|
230
|
-
- 「何でもやる」スキル(スコープ過大)
|
|
231
|
-
- 「使うとき明示しないと動かない」スキル(発火が不明瞭)
|
|
232
|
-
- 他のスキル・サプリと機能が被る
|
|
233
|
-
```
|
|
234
|
-
|
|
235
|
-
### Step E: 動作確認
|
|
236
|
-
|
|
237
|
-
試しに以下のように聞いてください:
|
|
238
|
-
|
|
239
|
-
```
|
|
240
|
-
月次給与計算で、毎回の確認項目をスキルにしたい
|
|
241
|
-
```
|
|
242
|
-
|
|
243
|
-
AIが5つの質問をしながらスキルを組み立てます。
|
|
244
|
-
完成したら `skills/{スキル名}/SKILL.md` が生成されます。
|
|
245
|
-
|
|
246
|
-
---
|
|
247
|
-
|
|
248
|
-
## 📘 スキル作成のコツ
|
|
249
|
-
|
|
250
|
-
### 1. 「固有名詞が入るスキル」はスキル向き、「誰でも使えるもの」はサプリ向き
|
|
251
|
-
|
|
252
|
-
- スキル向き:「○○建設様の経審報告書作成」(固有)
|
|
253
|
-
- サプリ向き:「36協定の届出管理」(汎用)
|
|
254
|
-
|
|
255
|
-
### 2. チェックリストがあるならスキルにしやすい
|
|
256
|
-
|
|
257
|
-
繰り返し作業でチェックリストを作っていたら、そのままスキルに入れる。
|
|
258
|
-
AIが毎回リストを展開してくれる。
|
|
259
|
-
|
|
260
|
-
### 3. 「前に誰かに教えた手順」はスキルの宝庫
|
|
261
|
-
|
|
262
|
-
新人指導で説明した手順は、スキルにすれば一生繰り返し説明しなくてよくなる。
|
|
263
|
-
|
|
264
|
-
### 4. プロンプトを貯めているならスキルにする
|
|
265
|
-
|
|
266
|
-
「このプロンプト便利」を貯めていたら、スキル化で `/` コマンドから即呼び出せる。
|
|
267
|
-
|
|
268
|
-
---
|
|
269
|
-
|
|
270
|
-
## 他のサプリとの相性
|
|
271
|
-
|
|
272
|
-
- **AIシートベルト:** スキル作成時の前提確認・固有名詞ロックが効く
|
|
273
|
-
- **是々非々サプリ:** 「このスキル作って」に対し、AIが妥当性を問い返してくれる(多機能化の防止)
|
|
274
|
-
- **記憶向上サプリ:** 「明日続き作る」でスキル作成の続きが翌日も追える
|
|
275
|
-
- **顧客台帳サプリ:** 特定顧問先向けスキルを作るとき、顧問先プロファイルを参照してトーン統一
|
|
276
|
-
|
|
277
|
-
---
|
|
278
|
-
|
|
279
|
-
## 注意事項
|
|
280
|
-
|
|
281
|
-
- **機密情報(マイナンバー、口座情報等)はスキルに書かない。** テンプレだけにする
|
|
282
|
-
- **固有名詞が入るスキルはローカルに留める。** 共有・サプリ化の対象にしない
|
|
283
|
-
- **3ヶ月使わないスキルは棚卸し。** 増えすぎると管理負担になる
|
|
284
|
-
|
|
285
|
-
---
|
|
286
|
-
|
|
287
|
-
## アンインストール
|
|
288
|
-
|
|
289
|
-
以下を削除すれば完全にアンインストール:
|
|
290
|
-
- `skills/_skill_templates/`
|
|
291
|
-
- `.claude/rules/skill_maker.md`
|
|
292
|
-
|
|
293
|
-
自作したスキル本体(`skills/{自分の作ったスキル}/`)は残ります。不要なら個別に削除してください。
|
|
294
|
-
|
|
295
|
-
---
|
|
296
|
-
|
|
297
|
-
## 提供元
|
|
298
|
-
|
|
299
|
-
配布元 / AI番頭 伴走支援プログラム
|
|
300
|
-
|
|
301
|
-
---
|
|
302
|
-
|
|
303
|
-
## 更新履歴
|
|
304
|
-
|
|
305
|
-
- v1.0 (2026-04-18): 初回リリース。士業業務カテゴリ6種内蔵・動作ルール統合。
|