last30days-2
Research any topic across Reddit, X/Twitter, and the web from the last 30 days. Synthesizes findings into actionable insights or copy-paste prompts.
What this skill does
# last30days ๐ Research any topic using recent (last 30 days) discussions from Reddit, X/Twitter, and the web. Returns synthesized insights and actionable prompts. ## Overview The AI world reinvents itself monthly. This skill keeps you current by researching what people are actually saying *right now* - not what worked six months ago. **What it does:** - Searches the web, Reddit, and X/Twitter with freshness filters (last 30 days) - Finds real practitioner experiences, not just SEO content - Synthesizes findings into actionable insights - Generates copy-paste prompts based on current best practices **Best for:** - Prompt research (what techniques actually work for ChatGPT, Midjourney, Claude, etc.) - Trend discovery (what's viral, what people are recommending) - Product feedback (what do real users think about X?) - Fast-moving topics where recency matters **Requirements:** - Brave Search (built into Clawdbot) - `bird` CLI for X/Twitter (optional but recommended) - No extra API keys needed ## Usage When user asks for recent info on a topic, or uses "/last30days [topic]": ### Step 1: Web Search (Brave with freshness) ``` web_search(query="[topic]", freshness="pm", count=5) ``` - `pm` = past month - Also try: `pd` (24h), `pw` (week) ### Step 2: Reddit Search ``` web_search(query="site:reddit.com [topic]", freshness="pm", count=5) ``` Focus on r/ClaudeAI, r/ChatGPT, r/LocalLLaMA, r/MachineLearning, r/StableDiffusion, etc. ### Step 3: X/Twitter Search ```bash bird search "[topic]" -n 10 --plain ``` Look for practitioners sharing real experiences, not just engagement bait. ### Step 4: Deep Dive (optional) For promising URLs, use `web_fetch` to get full content: ``` web_fetch(url="https://reddit.com/...", maxChars=10000) ``` ### Step 5: Synthesize Combine findings into: 1. **Key patterns** - What are people actually doing that works? 2. **Common mistakes** - What should be avoided? 3. **Tools/techniques** - Specific methods mentioned 4. **Copy-paste prompt** (if applicable) - Ready-to-use prompt incorporating best practices ## Output Format ```markdown ## ๐ Last 30 Days: [Topic] ### What's Working - [Pattern 1] - [Pattern 2] ### Common Mistakes - [Mistake 1] ### Key Techniques - [Technique with source] ### Sources - [URL 1] - [brief description] - [URL 2] - [brief description] ### Ready-to-Use Prompt (if applicable) ``` [Generated prompt based on findings] ``` ``` ## Examples - `/last30days Midjourney v7 prompting` - `/last30days Claude Code best practices` - `/last30days what are people saying about M4 MacBook` - `/last30days Suno music prompts that actually work` ## Notes - No extra API keys needed (uses Brave + bird) - Bird requires X/Twitter cookies (already configured) - Focus on signal over noise - prioritize upvoted content and verified practitioners
Related in Writing & Docs
jax-development
IncludedUse this skill when the user is writing, debugging, profiling, refactoring, reviewing, benchmarking, parallelising, exporting, or explaining JAX code, or when they mention JAX, jax.numpy, jit, grad, value_and_grad, vmap, scan, lax, random keys, pytrees, jax.Array, sharding, Mesh, PartitionSpec, NamedSharding, pmap, shard_map, Pallas, XLA, StableHLO, checkify, profiler, or the JAX repo. It helps turn NumPy or PyTorch-style code into pure functional JAX, fix tracer/control-flow/shape/PRNG bugs, remove recompiles and host-device syncs, choose transforms and sharding strategies, inspect jaxpr/lowering/IR, and benchmark compiled code correctly.
nature-article-writer
IncludedDrafts, rewrites, diagnostically critiques, and style-calibrates primary research manuscripts for Nature and Nature Portfolio journals. Use when the user wants a Nature-style title, summary paragraph or abstract, introduction, results, discussion, methods, figure legends, presubmission enquiry, cover letter, reviewer response, or when a scientific draft sounds generic, jargon-heavy, structurally weak, or AI-ish and needs precise, broad-reader-friendly prose without inventing data, analyses, or references. Best for primary research articles and letters rather than reviews or press releases unless explicitly adapting one.
deckrd
IncludedDocument-driven framework that derives requirements, specifications, implementation plans, and executable tasks from goals through structured AI dialogue. Use when user says "write requirements", "create spec", "plan implementation", "derive tasks", "structure this feature", "break down into tasks", or "document this module". Also use for reverse engineering existing code into docs (/deckrd rev). Do NOT use for direct code writing โ use /deckrd-coder after tasks are generated. Do NOT use when the user only wants to run or fix existing code without planning.
clinical-decision-support
IncludedGenerate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading, statistical analysis (hazard ratios, survival curves, waterfall plots), biomarker integration, and regulatory compliance. Outputs publication-ready LaTeX/PDF format optimized for drug development, clinical research, and evidence synthesis.
handling-sf-data
IncludedSalesforce data operations with 130-point scoring. Use this skill to create, update, delete, bulk import/export, generate test data, and clean up org records using sf CLI and anonymous Apex. TRIGGER when: user creates test data, performs bulk import/export, uses sf data CLI commands, needs data factory patterns for Apex tests, or needs to seed/clean records in a Salesforce org. DO NOT TRIGGER when: SOQL query writing only (use querying-soql), Apex test execution (use running-apex-tests), or metadata deployment (use deploying-metadata).
accelint-ac-to-playwright
IncludedConvert and validate acceptance criteria for Playwright test automation. Use when user asks to (1) review/evaluate/check if AC are ready for automation, (2) assess if AC can be converted as-is, (3) validate AC quality for Playwright, (4) turn AC into tests, (5) generate tests from acceptance criteria, (6) convert .md bullets or .feature Gherkin files to Playwright specs, (7) create test automation from requirements. Handles both bullet-style markdown and Gherkin syntax with JSON test plan generation and validation.