assemble

assemble is a skill for Claude Code, Codex from baldaworks/promptkitty. It costs 75 tokens per session (936 once invoked), scanned A, a copy of promptkitty-assemble, MIT.

A command-line tool for finding and assembling task-specific prompt templates from the PromptKit catalog. It can also guide an interactive requirements or design intake.

In plain words
What is it for?
Use it to search templates, inspect their required fields, assemble prompts, investigate bugs, review code, or create requirements and design documents.
Why use it?
It reduces the work of choosing a suitable starting prompt and filling in the information needed for an engineering task.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present. Also seen: mentions subagents.

Part of the promptkitty plugin — 2 skills shipped together

Good fit Use it to search templates, inspect their required fields, assemble prompts, investigate…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/baldaworks/promptkitty/assemble
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.

Any agent
npx skills add baldaworks/promptkitty --skill assemble
Clone the repo
git clone --depth 1 https://github.com/baldaworks/promptkitty

Made for: Claude Code, Codex.

Or install promptkitty, the plugin that ships this one along with the rest of its 2 skills.

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 assemble

README.md
[![agentmods](https://agentmods.dev/badge/skills/baldaworks/promptkitty/assemble.svg)](https://agentmods.dev/skills/baldaworks/promptkitty/assemble)
Your own site
<a href="https://agentmods.dev/skills/baldaworks/promptkitty/assemble"><img src="https://agentmods.dev/badge/skills/baldaworks/promptkitty/assemble.svg" alt="Measured on agentmods" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 936 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 97% copy Near-identical to another mod 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.1 $0.00075 $0.00936
Opus 5 $0.00037 $0.00468
Sonnet 5 $0.00015 $0.00187
Haiku 4.5 $0.00007 $0.00094

Measured 6d ago against content hash fc2754ee1416, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

assemble 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 6d ago.

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.

Origin

This is a copy

97% identical to promptkitty-assemble — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/promptkitty/skills/assemble/SKILL.md · 78 lines

How it starts

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

PromptKitty Assemble

Use promptkitty when installed. Otherwise use the pinned fallback npx --yes @baldaworks/[email protected] for every command in the task. Resolve this once and keep the same command form throughout the workflow.

Use only the public PromptKitty CLI. Do not read PromptKit component source files or fetch PromptKit from the network.

Discover and inspect

  1. Reduce the task to a short intent query and search templates:

    promptkitty search "<intent>" --type template --json
    

    Retry with fewer domain-specific words when needed. Use promptkitty list --type template --json only when search cannot identify a candidate.

  2. Select the best template from its name, description, and category. If two candidates imply materially different workflows, explain the difference briefly and ask the user to choose.

  3. Inspect the selected template:

    promptkitty show "<template>" --json
    

    Treat every key in metadata.params as required. Reuse values supplied by the user or available in task context. Ask for missing values; never invent them. An empty value is valid only when the user intentionally leaves that parameter empty.

Assemble the source

Use --param "<name>=<value>" for short values and --param-file "<name>=<path>" for files or long multiline input. Quote assignments so shell metacharacters remain data. Add composition flags only when the user requests or confirms them.

promptkitty assemble "<template>" \
  --param "<name>=<value>" \
  --param-file "<name>=<path>"

Interactive templates

When metadata.mode is interactive:

  1. Resolve every declared parameter and run a provisional assembly without writing it to the target project.
  2. Read the provisional prompt only far enough to identify its first questioning, validation, and user-confirmation gate.
  3. Perform that first phase with the user. Read-only inspection is allowed when already authorized and necessary to answer the phase. Do not edit files, generate deliverables, run side-effectful commands, commit, or continue past the first confirmation gate.
  4. Fold confirmed answers into the matching declared parameters. Append a concise preflight decision summary to context when that parameter exists; otherwise refine only semantically matching declared parameters. Never add undeclared parameters.
  5. Re-run assemble with the enriched values. This is the final source prompt. Do not execute its later phases.

Read the full file on GitHub · 78 lines

Files

What ships with it

1 file 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. 6d ago First seen · 78 lines · 75 tokens per session scan A fc2754ee1416

Subscribe to this mod's changes

assemble is a skill published in the GitHub repository baldaworks/promptkitty (5 stars, last pushed 1mo ago), licensed MIT. It adds 75 tokens to every session and 936 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to promptkitty-assemble, differing in 2 lines, and is treated as a copy.

Related

Other skills, from other repositories

prompt-improver

Transform vague prompts into precise, verifiable structured XML prompts that coding agents execute reliably. Modes: execute (default — generate then run) and plan (generate XML for review first). Use when the user says improve prompt, make this work better, prompt engineer, structure a request, plan a complex change…

owenob1/prompt-improver · 104 tokens

ai-wrapper-product

Expert in building products that wrap AI APIs (OpenAI, Anthropic, etc.) into focused tools people will pay for. Not just 'ChatGPT but different' - products that solve specific problems with AI. Covers prompt engineering for products, cost management, rate limiting, and building defensible AI businesses. Use when: AI…

Dokhacgiakhoa/Agent-Skills-4-Vibe-Coding-CLI · 84 tokens

ai-product

Every product will be AI-powered. The question is whether you'll build it right or ship a demo that falls apart in production. This skill covers LLM integration patterns, RAG architecture, prompt engineering that scales, AI UX that users trust, and cost optimization that doesn't bankrupt you. Use when: keywords…

Dokhacgiakhoa/Agent-Skills-4-Vibe-Coding-CLI · 71 tokens

ai-engineering-toolkit

6 production-ready AI engineering workflows: prompt evaluation (8-dimension scoring), context budget planning, RAG pipeline design, agent security audit (65-point checklist), eval harness building, and product sense coaching.

sickn33/agentic-awesome-skills · 47 tokens

guidance

Control LLM output with regex and grammars, guarantee valid JSON/XML/code generation, enforce structured formats, and build multi-step workflows with Guidance - Microsoft Research's constrained generation framework.

davila7/claude-code-templates · 38 tokens

outlines

Guarantee valid JSON/XML/code structure during generation, use Pydantic models for type-safe outputs, support local models (Transformers, vLLM), and maximize inference speed with Outlines - dottxt.ai's structured generation library.

davila7/claude-code-templates · 50 tokens