Install
$ agentstack add skill-gentleman-programming-gentle-pi-skill-creator ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
Activation Contract
Use this skill when creating or updating a reusable AI skill for Pi or another agent runtime.
Create a skill when:
- a workflow or convention is reused across sessions;
- generic agent behavior needs project-specific constraints;
- a decision tree helps the agent choose safely;
- examples, templates, or references would make future execution more reliable.
Do not create a skill for a one-off task, generic documentation, or rules that belong in code/tests.
Hard Rules
- Follow
docs/skill-style-guide.mdas the normative source for skill structure and style. - A skill is an LLM runtime contract, not human-facing docs.
- Keep
SKILL.mdconcise: target 180–450 tokens, max 1000. - Use imperative instructions and concrete gates; avoid tutorials and background prose.
- Frontmatter
descriptionmust be one physical YAML-safe line and include trigger words first. - Do not add a
Keywordssection; put essential trigger words indescription. - Put templates, schemas, and generated examples in
assets/. - Put longer rationale or local doc links in
references/. - After changing project skills, refresh the registry with
/skill-registry:refreshwhen available.
Decision Gates
| Need | Action | | --- | --- | | Small reusable behavior | Create skills/{skill-name}/SKILL.md only | | Templates, schemas, fixtures | Add skills/{skill-name}/assets/ | | Longer explanation or edge cases | Add skills/{skill-name}/references/ | | Existing skill covers it | Update the existing skill instead | | Skill affects delegation discovery | Ensure trigger words appear in description |
Execution Steps
- Read
docs/skill-style-guide.mdbefore creating or updating skills. - Inspect existing skills and confirm the new skill does not duplicate one.
- Choose a kebab-case skill name that matches the user-facing trigger.
- Create or update this structure:
skills/{skill-name}/
├── SKILL.md
├── assets/ # optional
└── references/ # optional
- Use this frontmatter shape:
---
name: {skill-name}
description: "Trigger: {phrases users or agents will say}. {What this skill does}."
license: Apache-2.0
metadata:
author: gentleman-programming
version: "1.0"
---
- Write sections in this order: Activation Contract, Hard Rules, Decision Gates, Execution Steps, Output Contract, References.
- If this is a packaged
gentle-piskill, add it toscripts/verify-package-files.mjs. - Refresh or document the skill registry update path.
Output Contract
Return:
- Files created or modified.
- Whether this created a new skill or updated an existing one.
- Any supporting
assets/orreferences/files added. - Whether package verification or skill registry refresh is needed.
References
docs/skill-style-guide.md— normative LLM-first skill style guide.skills/skill-registry/SKILL.md— registry refresh and indexing contract.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Gentleman-Programming
- Source: Gentleman-Programming/gentle-pi
- License: MIT
- Homepage: https://gentle-ai.gentlemanprogramming.com/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.