AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Write New Skill

skill-dgilford-ai-science-toolkit-write-new-skill · by dgilford

Create new Claude Code skills with proper structure and progressive disclosure. Use when user wants to create, write, or build a new skill.

No reviews yet
0 installs
16 views
0.0% view→install

Install

$ agentstack add skill-dgilford-ai-science-toolkit-write-new-skill

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-dgilford-ai-science-toolkit-write-new-skill)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
23d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Write New Skill? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Writing Skills

Process

  1. Gather requirements - ask user about:
  • What task/domain does the skill cover?
  • What specific use cases should it handle?
  • Does it need executable scripts or just instructions?
  • Any reference materials to include?
  1. Draft the skill - create:
  • SKILL.md with concise instructions
  • Additional reference files if content exceeds 100 lines
  • Utility scripts if deterministic operations needed
  1. Review with user - present draft and ask:
  • Does this cover your use cases?
  • Anything missing or unclear?
  • Should any section be more/less detailed?

Skill Structure

skill-name/
├── SKILL.md           # Main instructions (required)
├── REFERENCE.md       # Detailed docs (if needed)
└── scripts/           # Utility scripts (if needed)

SKILL.md Template

Frontmatter fields: name, description, allowed-tools. Body: opening directive, optional live state injection, instructions, output template.

Optional sections: ## Anti-Rationalization (3–5 skill-specific rows: an excuse an agent uses to skip a key step, paired with a factual rebuttal — never generic filler) and ## Verification (exit-criteria checklist requiring observable evidence before claiming done).

Shell injection

To inject live state before Claude sees the skill, open a fenced code block with three backticks immediately followed by ! (no space). The command output replaces the block at skill load time. Always add || echo "(fallback)" for non-git repos.

Use for: git status, git log, git diff, environment checks — any context that must be current rather than recalled.

Description requirements

The description is what Claude scans to decide whether to auto-invoke the skill.

Format: Max 1024 chars. First sentence: what it does. Second: "Use when [specific triggers]."

Good: Create or update a durable project handoff. Use when ending a session, switching agents, or preparing context for the next Claude session.

Bad: Helps with project state.

When to split files

Split into separate files when SKILL.md exceeds ~100 lines or content has clearly distinct domains. Keep the split shallow — one level of references only. Dense routing or orchestration content that would lose coherence if split (e.g. a decision tree, a lane table) may justify running over — say so rather than splitting badly.

Review checklist

  • [ ] Description includes specific triggers ("Use when...")
  • [ ] SKILL.md under ~100 lines, or the overage justified (see "When to split files")
  • [ ] Shell injection added if skill needs live repo or git state
  • [ ] Output template uses `` not placeholder prose, to distinguish instructions from content
  • [ ] Skill handles missing files gracefully (no .ai/, no CLAUDE.md, not a git repo)
  • [ ] Scientific context section included if skill touches data, methods, or analysis
  • [ ] Facts, assumptions, and recommendations are distinguished where relevant
  • [ ] No time-sensitive information hardcoded
  • [ ] Anti-Rationalization table present if skill has skip-worthy judgment steps (3–5 rows, skill-specific, not generic)
  • [ ] Verification checklist present if skill has a completion state requiring observable evidence

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.