printkk-print-on-demand

printkk-print-on-demand is a skill for Claude Code, Codex from pizzzzzza/printkk-agent-skill. It costs 115 tokens per session (2,478 once invoked), scanned A, original, MIT.

API guidance for PrintKK, a print-on-demand service that makes and ships custom products after they are ordered. It covers images, designs, products, orders, payments, and tracking.

In plain words
What is it for?
Use it to browse the product catalogue, upload images, create or edit designs, place orders, make payments, and track shipments.
Why use it?
It helps developers work with PrintKK’s API without confusing internal order and design operations with publishing products to shops such as Shopify or Etsy.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to browse the product catalogue, upload images, create or edit designs, place orders, make payments, and track shipments.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pizzzzzza/printkk-agent-skill/printkk
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 pizzzzzza/printkk-agent-skill --skill printkk
Clone the repo
git clone --depth 1 https://github.com/pizzzzzza/printkk-agent-skill

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 printkk-print-on-demand

README.md
[![agentmods](https://agentmods.dev/badge/skills/pizzzzzza/printkk-agent-skill/printkk/github.svg)](https://agentmods.dev/skills/pizzzzzza/printkk-agent-skill/printkk)
Your own site
<a href="https://agentmods.dev/skills/pizzzzzza/printkk-agent-skill/printkk"><img src="https://agentmods.dev/badge/skills/pizzzzzza/printkk-agent-skill/printkk/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for printkk-print-on-demand

Your own site · 80×15
<a href="https://agentmods.dev/skills/pizzzzzza/printkk-agent-skill/printkk"><img src="https://agentmods.dev/badge/skills/pizzzzzza/printkk-agent-skill/printkk.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 115 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,478 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 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.1 $0.00115 $0.02478
Opus 5 $0.00057 $0.01239
Sonnet 5 $0.00023 $0.00496
Haiku 4.5 $0.00012 $0.00248

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

Security

Grade A, and why

printkk-print-on-demand 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 11d 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.

printkk/SKILL.md · 235 lines

How it starts

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

PrintKK

PrintKK is a print-on-demand platform that connects sellers with production and fulfillment for custom products — apparel, home decor, accessories, and more. Use the API to automate design creation, product browsing, order placement, and image management.

Base URL: https://api.printkk.com/pkk-openapi

API Scope & Limitations

The API covers internal PrintKK operations only:

  • ✅ Image upload & management
  • ✅ Design creation & editing
  • ✅ Order creation, payment, tracking
  • ✅ Product catalog browsing
  • No publishing — you cannot publish designs to external sales channels (Shopify, Etsy, etc.) via API. Publishing must be done through the PrintKK Dashboard.
  • No shop/store management — the API does not expose multi-shop operations. Although PrintKK accounts support multiple stores, the API operates at the account level without shop scoping.
  • No print provider selection — PrintKK uses its own production network. Unlike marketplace-model platforms, there is no API for choosing print providers. Production routing is handled internally by PrintKK.

Authentication

All requests require an Api-Key header.

  • Get your key: PrintKK Dashboard → SettingsApi Management
  • Keys expire — validity extends 90 days per renewal
  • Renewal only allowed when remaining validity ≤ 7 days
  • Expired keys cannot be renewed; generate a new one
Api-Key: <your-api-key>

Response Format

All responses follow this structure:

{
  "code": 200,
  "success": true,
  "msg": "OK",
  "data": { ... }
}

Check success field first, not just HTTP status code.

Data Model

Product (catalog)          Image (media library)
  ├── productCode             ├── imageId
  ├── printAreas[]            ├── folderId
  └── specifications[]        └── keywords
         │                         │
         ▼                         ▼
      Design ◄────────────── uses imageId per printArea
        ├── designCode
        ├── designSpecifications[]
        │     └── designSpecificationCode
        └── taskId (async creation)
                │
                ▼
            Order
              ├── orderId
              ├── designSpecificationCode + quantity
              ├── shippingAddress
              └── shippingType priority list
                      │
                      ▼
                  Payment (wallet)

Read the full file on GitHub · 235 lines

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. 11d ago First seen · 235 lines · 115 tokens per session scan A 14356b7a5fd6

Subscribe to this mod's changes

printkk-print-on-demand is a skill published in the GitHub repository pizzzzzza/printkk-agent-skill (9 stars, last pushed 4mo ago), licensed MIT. It adds 115 tokens to every session and 2,478 once invoked, about $0.0006 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-31.

Related

Other skills, from other repositories