| name | editing-video |
|---|---|
| description | Use for turning raw video footage into more polished and publishable content. |
Pipeline order (steps in brackets are optional and cost money):
| #!/usr/bin/env python3 | |
| """Build an interactive workflow graph from GitHub issues across one or more repos. | |
| Fetches open issues, groups them by label hierarchy, draws blocking dependencies, | |
| and renders either a Graphviz DOT file or a Cytoscape preset page for browsing. | |
| **Why:** The graph helps teams coordinate—see what blocks what, pick work that | |
| unblocks others, and focus on different areas of the codebase in parallel without | |
| overlap. |
| """ | |
| Run repo commands in Modal with streamed logs and optional synthetic timeout. | |
| Usage: | |
| uv run modal run runner.py --cmd '<bash command>' | |
| Examples: | |
| # Run the main export command remotely | |
| uv run modal run runner.py --cmd \ | |
| 'uv run -m src.compute_heavy_entrypoint' |
| name | analyzing-sec-filings |
|---|---|
| description | Retrieves and parses SEC EDGAR filings (10-K, 10-Q, 8-K, DEF 14A) into markdown or structured financial data using the edgartools Python library. Use when working with SEC filings, EDGAR data, XBRL financials, or company fundamental analysis. |
Use edgartools for all SEC filing work. Do not use curl, manual HTML parsing, or filing.full_text_submission().
| import os | |
| import sys | |
| from typing import Any, Dict, List | |
| from openai import OpenAI | |
| def ensure_api_key() -> None: | |
| if not os.getenv("OPENAI_API_KEY"): | |
| print("ERROR: Please set OPENAI_API_KEY in your environment.") |
Twitter allows you to download your archive of tweets. You can do this by going to your account settings and requesting your archive. Once you receive the email with the download link, you can download the zip file.
Top-level keys of twitter_archive.json (via jq 'keys' twitter_archive.json):
| #!/usr/bin/env bun | |
| // @bun-dependencies: puppeteer@latest puppeteer-extra@latest puppeteer-extra-plugin-stealth@latest | |
| import puppeteer from 'puppeteer'; | |
| async function scrapeXTweet(url, metadata) { | |
| // Launch browser with stealth options | |
| const browser = await puppeteer.launch({ | |
| headless: true, // or 'new' for new headless mode | |
| executablePath: '/usr/bin/google-chrome', |
| #!/bin/bash | |
| # create-nl-tool.sh - Programmatically create natural language interfaces | |
| # for CLI tools | |
| # Usage: ./create-nl-tool.sh <tool-name> | |
| # Example: ./create-nl-tool.sh repomix | |
| set -e | |
| if [ $# -eq 0 ]; then |