agentsclimarketplace

Case 02779

Skill knownasnaffy/prompthound/dataset/case_02779

Content atom library builder for social media creators. Scans a directory of your past content (markdown, text files) and extracts reusable "content atoms" — claims, data points, anecdotes, frameworks, contrarian takes, and questions. Tags each with topic keywords and source attribution. When given a new topic, retrieves the most relevant atoms from your personal library and generates a post outline. Like Zettelkasten but automated — every post you write makes the next one easier. Solves the 77% creator burnout problem by eliminating "blank page" starts. Research-backed (Zettelkasten serendipity effect, Justin Welsh 730-day content library, content atomization hub-and-spoke model). Zero external dependencies.From its SKILL.md

Install
npx -y skills add knownasnaffy/prompthound --skill case_02779

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

6.8 KB, ~1.5k tokens by cl100k_base, as published. Nobody here has run it

phy-content-compound — Content Atom Library Builder

77% of social media creators report burnout. The #1 cause: starting from a blank page every time. You've already written the best version of your ideas — in past posts, comments, threads. The problem is you can't find and recombine them.

This tool scans your past content, extracts reusable "content atoms," and retrieves the most relevant ones when you need to write about a new topic. Every post you write makes the next one easier.

Quick Start

# Build atom library from your content directory
python3 ~/.claude/skills/phy-content-compound/scripts/content_compound.py ~/Desktop/content-ideas/

# Build library + query for a topic
python3 ~/.claude/skills/phy-content-compound/scripts/content_compound.py ~/posts/ --topic "developer tools"

# Query specific atom type
python3 ~/.claude/skills/phy-content-compound/scripts/content_compound.py ~/posts/ --topic "AI" --type data_point

# Get top 10 results
python3 ~/.claude/skills/phy-content-compound/scripts/content_compound.py ~/posts/ --topic "security" --top 10

# JSON output
python3 ~/.claude/skills/phy-content-compound/scripts/content_compound.py ~/posts/ --topic "growth" --format json

The 6 Atom Types

TypeIconWhat It CapturesDetection Pattern
data_point📊Specific numbers, percentages, metricsSentences with digits + units (%, $, K, M, x)
claim💡Strong assertions, thesis statements"The key insight is...", "Turns out...", "The reality is..."
anecdote📖Personal stories and experiences"I built...", "We shipped...", "Last month I..."
framework🔧Structured lists, step-by-step models3+ consecutive bullet points or numbered items
contrarian🔥Challenges to conventional wisdom"Stop...", "Don't...", "Everyone is wrong about..."
questionThought-provoking discussion driversSentences ending with "?" (>25 chars)

How It Works

Your content files (.md, .txt)
    ↓
[Extract atoms] — regex-based sentence classification
    ↓
[Tag keywords] — context-window keyword extraction
    ↓
[Build library] — 6 atom types, source attribution, line numbers
    ↓
[Query topic] — keyword overlap scoring + text presence matching
    ↓
[Generate outline] — Hook (contrarian/data) → Body (claims+data+proof) → CTA (question)

Example Output

==================================================================
  phy-content-compound — Content Atom Library
==================================================================
  Files scanned  : 14
  Total atoms    : 591
==================================================================

📊  Atoms by Type:

  📊 data_point      485 atoms
  🔧 framework        90 atoms
  ❓ question           7 atoms
  📖 anecdote           4 atoms
  💡 claim              3 atoms
  🔥 contrarian         2 atoms

🔍  Top atoms for: "developer tools security"

  1. 📊 [data_point] (relevance: 5.0)
     "55 automated audit checks, maps to OWASP Agentic Top 10"
     — Source: skills-marketplace-guide.md:112

  2. 📖 [anecdote] (relevance: 3.5)
     "I spent a week mapping every platform, scanning for security"
     — Source: skills-marketplace-guide.md:7

📝  Suggested Outline for: "developer tools security"

  1. HOOK: Lead with data (55 automated audit checks...)
  2. BODY: Core argument + supporting data + personal proof
  3. CTA: Close with a genuine question

The Compounding Effect

Library SizeSerendipityWriting Speed
0-50 atomsLow — still buildingSame as blank page
50-100 atomsEmerging — old atoms surface relevant connections15-20% faster
100-500 atomsStrong — most new topics have 3-5 relevant atoms30-50% faster
500+ atomsCompound — new posts are mostly recombination50-70% faster

Based on Zettelkasten research: the "serendipity effect" kicks in at 50-100 well-connected notes.

Content Pipeline Integration

This tool is the final piece of the social media flywheel:

COMPOUND (find your best past atoms)
    → Write draft
    → HUMANIZER (remove AI signals)
    → RULES ENGINE (pre-flight platform check)
    → Post
    → FORENSICS (analyze what worked)
    → feedback into COMPOUND (grows your atom library)

Each cycle makes the next one better. The library grows, retrieval improves, writing gets faster.

Research Basis

SourceKey InsightHow We Use It
Zettelkasten methodAtomic notes + serendipity at 50-100 notes6 atom types, keyword linking
Justin Welsh 730-day library5 styles × 5 topics = 75+ ideas; performance gradingEngagement hint tagging
Content atomization (MarTech)Hub-and-spoke: 1 idea → dozens of derivativesAtom extraction + recombination
NLP text segmentationRegex-based sentence classification + entity extractionAtom type detection patterns

Technical Notes

  • Zero external dependencies — pure Python 3.7+ stdlib
  • Supported file types: .md, .txt (recursive scan)
  • Skips: .git/, node_modules/, __pycache__/, venv/
  • Keyword extraction: Context-window TF approach (no external NLP library)
  • Scoring: Keyword overlap × 2 + text presence × 1.5 + engagement bonus
  • Engagement hints: Inferred from filename patterns (e.g., "viral", "top", "hit")

Companion Skills

SkillRelationship
phy-content-humanizer-auditCheck AI signature before publishing atom-based posts
phy-post-forensicsAnalyze which atom combinations drove engagement → feed back into library
phy-platform-rules-enginePre-flight check before posting on any platform

What ships with it: 1 file

19.4 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 326,422. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.