Mimiq memory
πͺ Claude skills that capture your writing voice and ghostwrite social media posts that sound exactly like you.
npx -y skills add slayerman420/mimiq --skill mimiq-memoryAssembled 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 author says it does
Copied from the file, not written here
Persistent memory and feedback system for Mimiq. Stores all scrapes, style fingerprints, audits, ghostwritten posts, and user feedback in a local database at ~/.claude/mimiq-memory/. Links multiple social media profiles to a single user identity. ALWAYS trigger this skill at the START of every Mimiq session to load existing memory, and at the END of every session to save new data. Trigger on: "remember this", "save my fingerprint", "log this post", "show my history", "what did you find last time", "rate this post", "give feedback", "what posts have I written", "show my past audits", "update my profile", "which profiles are mine", "link my accounts", "show community insights", "opt into sharing", or any reference to past Mimiq sessions. Also trigger automatically after voice-capture, content-audit, or post-strategist completes β always save results without being asked.
SKILL.md
7.1 KB, ~1.6k tokens by cl100k_base, as published. Nobody here has run it
Mimiq Memory
Persistent memory, multi-profile identity, and feedback system for Mimiq.
All data is stored locally at ~/.claude/mimiq-memory/ β never sent anywhere.
Database Structure
~/.claude/mimiq-memory/
βββ profiles.json # User identity + platform map
βββ fingerprints.json # Style fingerprint versions + feedback deltas
βββ posts.db # Every post written, rated, published
βββ audits.db # Every audit run + corrections
βββ shared_patterns.json # Opt-in community intelligence (anonymized)
All reads/writes go through the scripts in this skill's scripts/ directory.
Always run python3 scripts/init_db.py first to ensure the database exists.
Step 1 β Session Start: Load Memory
At the start of any Mimiq session, run:
python3 ~/.claude/skills/mimiq-memory/scripts/load_memory.py
This returns:
- The user's profile map (all linked platforms + handles)
- The latest style fingerprint
- Summary of past audits
- Any pending feedback requests
If no memory exists yet, initialize with:
python3 ~/.claude/skills/mimiq-memory/scripts/init_db.py
Then prompt the user to set up their profile (see Step 2).
Step 2 β Profile Setup (First Time)
If no profile exists, ask:
"Let's set up your Mimiq profile. What's your name or handle? And which platforms are you on? I'll link them all to one identity."
Collect:
- Display name / preferred handle
- Platform handles (LinkedIn, X, Reddit, Medium, Substack, Instagram, Facebook)
Save with:
python3 ~/.claude/skills/mimiq-memory/scripts/save_profile.py \
--name "Salman" \
--linkedin "m-salman-shahid" \
--twitter "slayerman420" \
--reddit "slayerman420" \
--medium "msalman"
Multi-profile linking: If the user mentions a new handle during any session, run:
python3 ~/.claude/skills/mimiq-memory/scripts/link_platform.py \
--platform "substack" \
--handle "salman-writes"
Mimiq will automatically treat all linked handles as the same person across all skills.
Step 3 β Auto-Save After Each Skill
After any Mimiq skill completes, save the output automatically:
After voice-capture:
python3 ~/.claude/skills/mimiq-memory/scripts/save_fingerprint.py \
--data '<fingerprint JSON>'
After content-audit:
python3 ~/.claude/skills/mimiq-memory/scripts/save_audit.py \
--platform "linkedin" \
--data '<audit JSON>'
After post-strategist writes a post:
python3 ~/.claude/skills/mimiq-memory/scripts/save_post.py \
--platform "linkedin" \
--topic "product launch" \
--content '<post text>'
Each saved item gets a unique ID that can be used for feedback later.
Step 4 β Feedback System
Post Feedback
After every ghostwritten post, ask:
"How did this feel? (1) Sounds exactly like me (2) Pretty close (3) Off β here's why: ___"
Save feedback with:
python3 ~/.claude/skills/mimiq-memory/scripts/save_feedback.py \
--type post \
--id <post_id> \
--rating <1-3> \
--notes "too formal in the opening"
Audit Feedback
After every audit, ask:
"Does this audit feel accurate? Anything missing or wrong?"
Save with:
python3 ~/.claude/skills/mimiq-memory/scripts/save_feedback.py \
--type audit \
--id <audit_id> \
--notes "missed my Substack β handle is different"
Fingerprint Feedback
If the user says "that doesn't sound like me" at any point:
python3 ~/.claude/skills/mimiq-memory/scripts/save_feedback.py \
--type fingerprint \
--id <fingerprint_id> \
--notes "I never use rhetorical questions"
Fingerprint feedback automatically updates the active fingerprint rules.
Step 5 β Memory Queries
Users can query their history at any time:
| User says | Action |
|---|---|
| "Show my past posts" | Run query_posts.py --limit 10 |
| "What did my last audit say?" | Run query_audits.py --latest |
| "Show posts I rated highly" | Run query_posts.py --rating 1 |
| "What feedback have I given?" | Run query_feedback.py |
| "What's in my fingerprint?" | Run query_fingerprint.py |
| "Show all my linked profiles" | Run query_profile.py |
| "What posts did I actually publish?" | Run query_posts.py --published true |
Step 6 β Community Intelligence (Opt-In)
Ask the user once:
"Would you like to contribute anonymized patterns to the Mimiq community? This helps surface insights like 'posts under 100 words get 3x more engagement on LinkedIn' β validated across real users. Your personal data is never shared, only aggregated patterns. (Yes / No / Ask me later)"
If yes, save opted-in status and begin contributing anonymized engagement patterns after audits.
View community insights:
python3 ~/.claude/skills/mimiq-memory/scripts/community_insights.py
This surfaces patterns like:
- "LinkedIn posts published Tuesday 8β10am average 40% more engagement (n=127 users)"
- "Posts with personal stories get 2.8x more comments than tips-only posts (n=89 users)"
Step 7 β Session End: Save State
At the end of every session, run:
python3 ~/.claude/skills/mimiq-memory/scripts/save_session.py
This snapshots the current fingerprint version, logs what was done, and flags any pending feedback items for the next session.
Reference Files
references/schema.mdβ Full database schema for all tablesscripts/init_db.pyβ Initialize databasescripts/load_memory.pyβ Load full memory statescripts/save_profile.pyβ Save/update user profilescripts/link_platform.pyβ Link new platform handle to existing profilescripts/save_fingerprint.pyβ Save new fingerprint versionscripts/save_audit.pyβ Save audit resultscripts/save_post.pyβ Log a ghostwritten postscripts/save_feedback.pyβ Save feedback on any itemscripts/save_session.pyβ Save end-of-session snapshotscripts/query_posts.pyβ Query post historyscripts/query_audits.pyβ Query audit historyscripts/query_feedback.pyβ Query feedback historyscripts/query_fingerprint.pyβ Query current fingerprintscripts/query_profile.pyβ Query user profilescripts/community_insights.pyβ Show community patterns