adapt-copy
Adapt post copy for every target platform — character limits, hashtag counts and placement, tone, compliance, and the right CTA mechanism per platform…
Match indexed brand assets to calendar posts and assign each post its creative mode (anchor-compose, enhance-extend, style-referenced, pure-creative). Triggers on \"/match-assets\", \"match assets\", \"which photos for which posts\", \"assign creative modes\", \"pair assets to
$ npx -y skills add indranilbanerjee/socialforge --skill match-assets --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/match-assetsContext preview
The summary Claude sees to decide when to auto-load this skill.
Match indexed brand assets to calendar posts and assign each post its creative mode (anchor-compose, enhance-extend, style-referenced, pure-creative). Triggers on \"/match-assets\", \"match assets\", \"which photos for which posts\", \"assign creative modes\", \"pair assets to
name: match-assets description: "Match indexed brand assets to calendar posts and assign each post its creative mode (anchor-compose, enhance-extend, style-referenced, pure-creative). Triggers on \"/match-assets\", \"match assets\", \"which photos for which posts\", \"assign creative modes\", \"pair assets to the calendar\", or right after parse-calendar and before compose-creative. Reads the asset index; posts with no suitable asset are flagged rather than force-matched." argument-hint: "--brand <name> --month <YYYY-MM>" effort: high user-invocable: true
Match brand assets to parsed calendar posts using the multi-factor scoring algorithm. Assigns one of 4 creative modes per post.
Asset-heavy skill. **Grep before Read** the asset catalog (`${CLAUDE_PLUGIN_DATA}/socialforge/brands/<brand>/asset-index.json`) — never list the asset directory. Reference generated images / videos by path, not by loading metadata. Brand profile loads once per session.
If either is missing, prompt: "Run `/socialforge:parse-calendar` first, then `/socialforge:index-assets`."
For each post, calculate a multi-factor score against every indexed asset:
| Factor | Weight | What It Measures | |--------|--------|------------------| | Tag Overlap | 30% | Post keywords vs asset tags | | Suitability Match | 25% | Asset's "suitable_for" vs post context | | Content Bucket Match | 20% | Does asset suit this content bucket? | | Crop Feasibility | 15% | Can asset be cropped to all required platform ratios? | | Freshness | 10% | Favours assets not already used this month |
**Freshness factor:** scored as `1 - penalty` and weighted at 10% alongside the other four factors (the five weights sum to 1.00). Penalty by prior uses this month: 0 uses = 0.00 | 1 use = 0.15 | 2 uses = 0.40 | 3+ uses = 0.70. Reusing an asset within the same week adds a further 0.50 to the penalty (capped at 1.00).
| Score Range | Recommended Mode | |-------------|-----------------| | > 0.8 | ANCHOR_COMPOSE or ENHANCE_EXTEND | | 0.5 - 0.8 | ENHANCE_EXTEND or STYLE_REFERENCED | | 0.3 - 0.5 | STYLE_REFERENCED | | < 0.3 | PURE_CREATIVE |
Also selects 2-5 style reference images per post (always fed to AI generation alongside prompts).
1. Load calendar-data.json and asset-index.json 2. For each post: extract keywords → score all assets → rank → assign mode 3. Select style references per post 4. Generate coverage report
Asset Matching Complete: 28 posts ANCHOR_COMPOSE: 8 posts (direct brand asset matches) ENHANCE_EXTEND: 5 posts (asset needs enhancement) STYLE_REFERENCED: 9 posts (AI gen guided by brand DNA) PURE_CREATIVE: 4 posts (full AI generation) CAROUSEL_TEMPLATE: 2 posts (HTML template rendering) Asset gaps: 3 posts flagged — P07, P14, P22 Top used assets: asset_012 (3 posts), asset_005 (2 posts)
The gap flag is a boolean (`gap_flag`), raised when a HERO or HUB post's best asset scores below 0.3. It marks which posts need attention; it does not explain which kind of asset is missing — inspect the flagged posts to decide what to shoot or upload.
5. Present for user confirmation — user can override any match 6. Save to `output/{brand}/{YYYY-MM}/asset-matches.json`
Overrides are conversational, not flags — `match_assets.py` accepts only `--brand` and `--month`. Adjustments are made at the confirmation step (step 5) and written back to asset-matches.json.
For any post, user can:
Your client wants 30 days of social content across six platforms with brand-faithful imagery, AI-generated video, and provenance signed for EU markets. You have five days.
Adapt post copy for every target platform — character limits, hashtag counts and placement, tone, compliance, and the right CTA mechanism per platform…
Assemble the final month-end delivery manifest — every approved post with its copy, creative files, platform variants, and metadata in one structured JSON…
Set up and manage brand profiles — colors, fonts, logo, voice, pillars, platforms, hashtags, compliance rules, cta_keyword. Triggers on \"/brand-manager\",…
Build the interactive HTML review gallery showing every generated post — image, copy, platform, status — for team or client review in a browser. Triggers on…
Embed C2PA provenance manifests in AI-generated assets — the machine-readable AI disclosure EU AI Act Article 50 expects (enforceable since 2 Aug 2026), plus…
Core creative engine — turns a calendar post into finished images or video using 4 modes (anchor-compose, enhance-extend, style-referenced, pure-creative) with…