Skip to content

Instantly share code, notes, and snippets.

View MaTriXy's full-sized avatar

Yossi Elkrief MaTriXy

View GitHub Profile
---
name: viral-content-factory
description: Create viral social media content (TikTok/Instagram carousels and outfit-change videos) for app promotion. Generates AI characters, carousel image sets via Gemini, and animated mannequin videos via Kling 3/fal.ai. This skill should be used when the user wants to create new carousel content, mannequin videos, or expand the content library for any character.
tools: Read, Write, Edit, Bash, Glob, Grep, Agent
---
# Viral Content Factory
End-to-end system for generating viral TikTok/Instagram content promoting a product through AI-generated characters. Creates two content types:
1. **Carousels** — sets of 7-8 styled images per topic (Gemini image generation)
@MaTriXy
MaTriXy / gist:27658c9c2da9671b75084ffe79948963
Last active April 13, 2026 13:35
Sharing Claude Code Context Files Across a Team (Without Building Anything)
# Sharing Claude Code Context Files Across a Team (Without Building Anything)
## The Problem
You're a small team using Claude Code. Everyone keeps `.md` context files. Some are shared, some are private, and some should only be visible to part of the team. Git alone doesn't handle per-file access control, and Google Drive isn't dev-friendly. You need something in between.
## The Solution: GitHub Org + Teams + Submodules
No middleware. No new service. Just GitHub features you already have.
@MaTriXy
MaTriXy / llm-wiki.md
Created April 4, 2026 17:25 — forked from karpathy/llm-wiki.md
llm-wiki

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@MaTriXy
MaTriXy / SKILL.md
Created April 3, 2026 16:13 — forked from imaman/SKILL.md
regression-dog skill
name regression-dog
description Review code changes for regressions.

Review code changes for behavioral differences between the before and after code.

Important:

  • Do NOT run tests, typechecks, linters, or build commands. CI already handles those. Focus your context budget entirely on reasoning about the code changes and its implications on logic/behavior/data/etc.
#!/bin/bash
#
# find-axios-repos.sh
# Scans all repos in a GitHub org for axios dependency usage.
# Searches package.json files for axios in dependencies and devDependencies.
#
# Requirements: gh CLI (authenticated)
#
# Usage: ./find-axios-repos.sh <org-name>
@MaTriXy
MaTriXy / spaceinvaders.md
Created March 27, 2026 15:20 — forked from ivanfioravanti/spaceinvaders.md
Space Invaders Clone Prompt

Build a pixel-perfect Space Invaders arcade game in a single self-contained HTML file with inline CSS and JS. Replicate the original 1978 Taito arcade cabinet experience with full fidelity to the original rules, sprite designs, and mechanics.


CANVAS & DISPLAY

  • 800×600px canvas (or scaled 2× from original 224×256 logical resolution)
  • Black background, phosphor-green or white pixel aesthetic
# ============================================
# Ghostty Terminal - Complete Configuration
# ============================================
# File: ~/.config/ghostty/config
# Reload: Cmd+Shift+, (macOS)
# View options: ghostty +show-config --default --docs
# --- Typography ---
font-family = JetBrainsMonoNerdFont
font-size = 14
@MaTriXy
MaTriXy / TWITTER_BLOCKLIST_PUBLIC.md
Created March 9, 2026 06:52 — forked from steipete/TWITTER_BLOCKLIST_PUBLIC.md
Redacted Twitter mention blocklist policy

Twitter Mention Blocklist Policy

Public-safe version. Redacted. No handles, no links, no callouts.

Block immediately

  • Strongly derogatory replies
  • Crypto spam, token shills, wallet/contract junk
  • Clear AI slop or reply-bot behavior
  • Repetitive low-context spam
@MaTriXy
MaTriXy / prompts.md
Created February 25, 2026 04:52 — forked from mberman84/prompts.md
Prompts

OpenClaw: Extracted Prompts (Generalized)

22 copy/paste-ready prompts for building your own AI agent system. Each prompt builds a functional system or implements a proven best practice you can hand to an AI coding assistant.

Replace placeholders like <your-workspace>, <your-messaging-platform>, and <your-model> with your own values.


1. Personal CRM

@MaTriXy
MaTriXy / all_files.md
Created February 25, 2026 04:52 — forked from mberman84/all_files.md
Matt's Markdown Files

OpenClaw: System Prompt File Templates

Generalized versions of all root .md files used by OpenClaw. These files are loaded into the agent's system prompt on every request (except MEMORY.md which is conditional).

Copy these as starting points and customize for your own setup. Replace <placeholders> with your values.


AGENTS.md