sister-script
1
总安装量
1
周安装量
#55011
全站排名
安装命令
npx skills add https://github.com/simhacker/moollm --skill sister-script
Agent 安装分布
mcpjam
1
claude-code
1
windsurf
1
zencoder
1
cline
1
Skill 文档
Sister Script
Document-first development. Automate only what’s proven.
The document is the source of truth. Scripts are its children.
[!TIP] LIFT stage of play-learn-lift. Proven procedures become automation.
The Pattern
graph TD
D[ð Document] -->|manual test| C[ð» Commands]
C -->|document| P[ð Procedure]
P -->|automate| S[ð¤ Sister Script]
S -->|improve| D
- Start with natural language (PLAY)
- Add manual commands (PLAY/LEARN)
- Document working procedures (LEARN)
- Generate automation (LIFT)
Bidirectional Evolution
- Document â Script: Proven procedures become automated
- Script â Document: Automation insights improve docs
Contents
| File | Purpose |
|---|---|
| SKILL.md | Full methodology documentation |
| PROCEDURE.md.tmpl | Procedure template |
| SISTER.yml.tmpl | Sister relationship template |
The Intertwingularity
Sister-script is the LIFT stage of play-learn-lift â automate proven patterns.
graph LR
SS[ð¯ sister-script] -->|LIFT stage of| PLL[ð®ðð play-learn-lift]
SS -->|automates| DOC[ð documents]
SS -->|produces| CODE[ð¤ scripts]
RN[ð research-notebook] -->|feeds| SS
SL[ð session-log] -->|source for| SS
Sniffable Python: The Structure
Sister scripts should follow sniffable-python/ conventions:
#!/usr/bin/env python3
"""tool-name: One-line description.
Docstring becomes --help AND is visible to LLM.
"""
import argparse
def main():
"""CLI structure â sniff this to understand the tool."""
parser = argparse.ArgumentParser(description=__doc__.split('\n')[0])
# ... CLI tree here ...
args = parser.parse_args()
_dispatch(args)
# Implementation below the fold
Why sniffable Python for sister scripts?
- LLM can read
main()and understand the CLI - Human can run
--helpfor the same info - Single source of truth for documentation
- One sniff and you smell success
Dovetails With
Sister Skills
| Skill | Relationship |
|---|---|
| sniffable-python/ | The structure sister scripts should follow |
| play-learn-lift/ | Sister-script IS the LIFT stage |
| session-log/ | Source material for patterns |
| research-notebook/ | Documented procedures |
| plan-then-execute/ | Scripts can become plans |
Protocol Symbols
| Symbol | Link |
|---|---|
SISTER-SCRIPT |
PROTOCOLS.yml |
BUILD-COMMAND |
PROTOCOLS.yml |
PLAY-LEARN-LIFT |
PROTOCOLS.yml |
Navigation
| Direction | Destination |
|---|---|
| â¬ï¸ Up | skills/ |
| â¬ï¸â¬ï¸ Root | Project Root |
| ð® Sister | play-learn-lift/ |