dot_agents/skills/fabric-patterns/SKILL.md
Access curated Fabric AI prompts for content processing, research, and writing.
npx skillsauth add nikiforovall/dotfiles2 fabric-patternsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Access curated Fabric AI prompts for content processing, research, and writing.
Primary Source: ~/.config/fabric/patterns/pattern_explanations.md
When users ask for patterns or need help finding the right pattern:
suggest_pattern for complex queriesKey Pattern: suggest_pattern - Meta-pattern that suggests appropriate fabric patterns based on user input
# Process content and save output
cat article.txt | fabric -p summarize | tee summary.md
# Extract wisdom from YouTube video
fabric -y "https://youtube.com/watch?v=..." -p extract_wisdom | tee notes.md
# Quick summary to decide if content is worth reading
curl -s "https://example.com/article" | fabric -p summarize_micro
# Meeting notes → action items
cat transcript.txt | fabric -p summarize_meeting | tee meeting-notes.md
# View raw system prompt for any pattern
echo "" | fabric --dry-run -p <pattern_name>
# Scrape website URL to markdown (using Jina Reader)
fabric -u "https://example.com/article" -p summarize
# Scrape Twitter/X posts
fabric -u "https://x.com/user/status/123456" -p summarize_micro
# Web search using Jina AI (search engine, not URL scraping)
fabric -q "your search query" -p summarize
# Use specific AI model
cat file.txt | fabric -p summarize -m claude-sonnet-4 | tee output.md
# Chain with other commands
curl -s https://example.com | fabric -p extract_ideas | tee ideas.md
# List all 230+ available patterns
fabric --listpatterns
-u, --scrape_url= - Scrapes any URL and converts to markdown using Jina Reader
-q, --scrape_question= - Web search using Jina AI search engine
-u (which scrapes specific URLs)For advanced reasoning wrappers (CoT, ToT, AoT, Reflexion, etc.), see:
data-ai
Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some waiting on outside answers, and others rolling into a later summary.
data-ai
Example TaskFlow authoring pattern for inbox triage. Use when messages need different treatment based on intent, with some routes notifying immediately, some waiting on outside answers, and others rolling into a later summary.
data-ai
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.
data-ai
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.