# Send TikTok Packager to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "jk-archivist-tiktok-packager",
    "name": "TikTok Packager",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/JK-Archivist/jk-archivist-tiktok-packager",
    "canonicalUrl": "https://clawhub.ai/JK-Archivist/jk-archivist-tiktok-packager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/jk-archivist-tiktok-packager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=jk-archivist-tiktok-packager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "_meta.json",
      "requirements.txt",
      "CHANGELOG.md",
      "README.md",
      "package.json",
      "CONTRIBUTING.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/jk-archivist-tiktok-packager"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/jk-archivist-tiktok-packager",
    "downloadUrl": "https://openagent3.xyz/downloads/jk-archivist-tiktok-packager",
    "agentUrl": "https://openagent3.xyz/skills/jk-archivist-tiktok-packager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/jk-archivist-tiktok-packager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/jk-archivist-tiktok-packager/agent.md"
  }
}
```
## Documentation

### JK Archivist TikTok Skill

Generate deterministic, text-driven 6-slide portrait slideshow assets for TikTok-style content.

### What This Skill Is For

Use this skill when you want:

Repeatable 6-slide visual posts without external image generation
Consistent dimensions and readable layout for short-form platforms
A simple contract: input slide copy -> validated PNG outputs + caption text
A base that can later plug into draft upload workflows (for example via Postiz)

Typical use cases:

Brand or creator intro slides
Educational mini explainers
Product update snapshots
Story-driven announcement sequences

### Quick Start

Install dependencies:

python3 -m pip install -r requirements.txt


Optional font override:

export TIKTOK_FONT_PATH=/absolute/path/to/font.ttf


Run:

node scripts/tiktok-intro-draft.mjs

Custom input modes:

Use your own 6-slide copy file:

node scripts/tiktok-intro-draft.mjs --spec /absolute/path/to/spec.json


Ask the agent to generate copy from a topic:

node scripts/tiktok-intro-draft.mjs --topic "your topic"


Optional Postiz draft upload:

node scripts/tiktok-intro-draft.mjs --postiz

Advanced modes:

--template intro|educational|product-update|announcement
--style default|high-contrast|clean|midnight
--audience beginner|operator|expert
--cta-pack follow-focused|link-focused|engagement-focused
--hashtag-policy tcg-default|general
--locale en|es|fr
--ab-test caption-cta|style|template
--dry-run (write spec/review only, skip render/upload)
--postiz-only (reuse existing rendered slides, upload only)
--no-upload (force local-only even with --postiz)
--resume-upload (resume partially uploaded runs)
--max-retries <n>
--timeout-ms <n>
--verbose

Template options:

intro
educational
product-update
announcement

Style options:

default
high-contrast
clean
midnight

Audience options:

beginner
operator
expert

CTA pack options:

follow-focused
link-focused
engagement-focused

Hashtag policy options:

tcg-default
general

### Core Output Contract

Exactly 6 slides
1024x1536 portrait
PNG output format
Large readable text with safe margins

Expected layout:

outbox/tiktok/intro/YYYY-MM-DD/
  _slide_spec.json
  _render_metadata.json
  slides/slide_01.png ... slide_06.png
  caption.txt
  review/review.md
  review/contact_sheet.png
  run_log.json
  upload_state.json (optional)
  postiz_response.json (optional)

### What Can Be Customized

Slide text (any 6-line narrative)
Font via TIKTOK_FONT_PATH
Caption behavior via template + CTA + hashtags
Audience mode and localization
A/B variant strategy
Optional Postiz upload controls

To customize for your use case, change:

The slides array content (via --spec JSON or topic mode)
The caption template in src/node/write-caption.mjs
Hashtag/CTA policy in src/node/hashtags and src/node/cta
Audience adaptation in src/node/audience
Optional Postiz env vars if enabling --postiz

Spec format:

{
  "slides": [
    "Slide line 1",
    "Slide line 2",
    "Slide line 3",
    "Slide line 4",
    "Slide line 5",
    "Slide line 6"
  ],
  "caption": "Optional caption override",
  "template": "intro",
  "audience": "operator",
  "ctaPack": "follow-focused",
  "hashtagPolicy": "tcg-default",
  "hashtagOverrides": ["#customtag"],
  "locale": "en",
  "ab_test": {
    "strategy": "caption-cta"
  },
  "style": {
    "preset": "default"
  }
}

### Customization Matrix

NeedOptionUse your own exact slide copy--spec /path/spec.jsonGenerate deterministic copy from a topic--topic "your topic"Use a built-in narrative structure--template educational (or others)Change visual style--style high-contrastAdjust reading complexity for target viewers\`--audience beginnerChange CTA behavior--cta-pack ...Apply hashtag policy--hashtag-policy ...Add custom hashtags--hashtag #customtag (repeatable)Localize CTA text--locale esGenerate multiple candidates\`--ab-test caption-ctaKeep local-only outputrun without --postiz or add --no-uploadUpload optional draft via Postiz--postiz with required env varsResume partial uploads--postiz --resume-uploadTune network/upload behavior--max-retries N --timeout-ms NValidate pipeline without rendering/upload--dry-run

### Objective

Generate a deterministic 6-slide TikTok intro slideshow (PNG) + caption and (optionally) upload as a TikTok draft/private post using Postiz. Human publishes manually after selecting trending sound.

### Draft/Private Upload Rules (Optional)

privacy_level = SELF_ONLY
content_posting_method = UPLOAD

### Slide Copy (Exact)

The trading card market runs on messy data.
Prices fragment. Condition drifts. Signals lie.
Collectors make real decisions on incomplete info.
JK Index = market intelligence for TCGs.
Truth first. No guessing. Built in public.
Alpha today. Compounding weekly. Brick by brick. 👑🧱

### Caption Template (Exact)

TCG prices look certain — until you zoom in.
JK Index is building the truth layer: clean IDs, real comps, market signals.
Follow if you want collector-first market intelligence. 👑🧱

#pokemon #tcg #cardcollecting #marketdata #startup

### Safety / Never Do

No token mentions
No $
No buy/sell language
No predictions
No copyrighted character art
No unverified superlatives (e.g., "guaranteed", "most accurate")

### Required/Optional Environment Variables

Required for optional upload mode:

POSTIZ_API_KEY
POSTIZ_TIKTOK_INTEGRATION_ID

Optional:

POSTIZ_BASE_URL (defaults to https://api.postiz.com/public/v1)
TIKTOK_FONT_PATH (absolute .ttf path)

### References

references/setup.md
references/spec-schema.md
references/renderer-spec.md
references/outputs-and-validation.md
references/troubleshooting.md
references/publish-checklist.md
examples/sample-slide-spec.json
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JK-Archivist
- Version: 1.6.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/jk-archivist-tiktok-packager)
- [Send to Agent page](https://openagent3.xyz/skills/jk-archivist-tiktok-packager/agent)
- [JSON manifest](https://openagent3.xyz/skills/jk-archivist-tiktok-packager/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/jk-archivist-tiktok-packager/agent.md)
- [Download page](https://openagent3.xyz/downloads/jk-archivist-tiktok-packager)