skillpack-creator

skillpack-creator is a skill for Claude Code, Codex from CreminiAI/skillpack. It costs 67 tokens per session (931 once invoked), scanned A, original, MIT.

A workflow for turning a completed task into a reusable SkillPack containing instructions, starter prompts, scripts, and optional packaging.

In plain words
What is it for?
Use it to define the task and its requirements, decide what belongs in local skills or scripts, create the SkillPack structure, and optionally produce a zip package.
Why use it?
It captures the repeatable parts of a successful workflow and separates them from temporary debugging or one-off decisions. This makes the process easier to run again and distribute.

Skill for Claude CodeCodex

About the project

SkillPack packages AI skills and tools into runnable local agents that teams can operate in their own environment. Teams use it to keep data local while accessing agents through Slack or Telegram, and the catalogue add-ons are agents and skills built for its workflow.

CreminiAI/skillpack · 1,197 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/creminiai/skillpack/skillpack-creator
Any agent
npx skills add CreminiAI/skillpack --skill skillpack-creator
Clone the repo
git clone --depth 1 https://github.com/CreminiAI/skillpack

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for skillpack-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/creminiai/skillpack/skillpack-creator.svg)](https://agentmods.dev/skills/creminiai/skillpack/skillpack-creator)
Your own site
<a href="https://agentmods.dev/skills/creminiai/skillpack/skillpack-creator"><img src="https://agentmods.dev/badge/skills/creminiai/skillpack/skillpack-creator.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 931 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00067 $0.00931
Opus 5 $0.00034 $0.00465
Sonnet 5 $0.00013 $0.00186
Haiku 4.5 $0.00007 $0.00093

Measured 5d ago against content hash bd4992fa65dc, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

skillpack-creator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/scaffold_skillpack.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/skillpack-creator/SKILL.md · 100 lines

How it starts

The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Skillpack Creator

Overview

Turn a successful task into a reusable SkillPack. Extract the stable workflow, decide what belongs in a local skill versus pack-level prompts, generate the pack structure, and package it only after the workflow is explicit and repeatable.

Workflow

1. Normalize the source task

Reduce the finished task into a clean execution spec:

  • Capture the user goal, concrete deliverable, and the final successful workflow (not the full exploratory transcript).
  • List required skills, tools, files, secrets, and environment assumptions.
  • Separate deterministic steps from heuristic steps; remove dead ends and debugging noise.
  • If the task is still too broad, narrow the scope instead of writing a vague mega-skill. If key success conditions depend on hidden human judgment, mark the pack as a best-effort assistant workflow.

Ask for missing stable facts or infer only the low-risk pieces.

2. Decide what the pack should contain

  • Local skill (skills/): reusable procedural knowledge. Keep scripts minimal unless reproducibility depends on exact file generation or repetitive shell steps.
  • Scripts (scripts/): repeated shell or file-generation logic where reliability matters.
  • References (references/): detailed schemas, API notes, or conventions that should not bloat SKILL.md.
  • Prompts (skillpack.json): 1–3 pack-level starter inputs for the UI — not a DAG or state machine. See references/skillpack-format.md for exact pack semantics.

3. Create the pack specification

Before writing files, define the pack spec. Prefer one local orchestrator skill plus a small number of external skills. Example minimal manifest:

{
  "name": "company-research",
  "description": "Research a company and produce a summary report",
  "version": "1.0.0",
  "prompts": ["Research {company} and create a report with financials and competitors"],
  "skills": [
    { "name": "research-orchestrator", "source": "./skills/research-orchestrator", "description": "Orchestrate company research across multiple sources" }
  ]
}

Read the full file on GitHub · 100 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 100 lines · 67 tokens per session scan A bd4992fa65dc

Subscribe to this mod's changes

skillpack-creator is a skill published in the GitHub repository CreminiAI/skillpack (1,197 stars, last pushed 23d ago), licensed MIT. It adds 67 tokens to every session and 931 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.