Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,105
总 Skills
70.5M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
10601 symfony:config-env-parameters makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:config-env-parameters<div
277
10602 conversion-psychology mike-coulbourn/claude-vibes
Conversion Psychology for Sponsored Content The Core Truth 95% of purchasing decisions happen subconsciously, driven by emotions, not logic. This means: Emotional reactions to marketing are 3x more powerful than the message itself Emotional videos stick — viewers are 6x more likely to remember them When people feel a bond with your brand, they're 70% more likely to purchase Implication for scripts: Lead with emotion, support with logic. Never the reverse. Key Emotional Triggers 1. Joy / Hap...
277
10603 runpod digitalsamba/claude-code-video-toolkit
RunPod Cloud GPU Run open-source AI models on cloud GPUs via RunPod serverless. Pay-per-second, no minimums. Setup 1. Create account at https://runpod.io 2. Add API key to .env echo "RUNPOD_API_KEY=your_key_here" >> .env 3. Deploy any tool with --setup python tools/image_edit.py --setup python tools/upscale.py --setup python tools/dewatermark.py --setup python tools/sadtalker.py --setup python tools/qwen3_tts.py --setup Each --setup command: Creates a RunPod template from the Docker image Cre...
277
10604 now-reading-page readwiseio/readwise-skills
You are generating a beautiful standalone HTML page showing what the user is currently reading and has recently read. The output is a single HTML file they can open in a browser or host on their personal site. Readwise Access Check if Readwise MCP tools are available (e.g. mcp__readwise__reader_list_documents ). If they are, use them throughout (and pass this context to the subagent). If not, use the equivalent readwise CLI commands instead (e.g. readwise list , readwise read <id> ). The instruc...
277
10605 paper-review evoscientist/evoskills
Paper Review A systematic approach to self-reviewing academic papers before submission. Covers a 5-aspect review checklist, reverse-outlining for structural clarity, figure/table quality checks, and rebuttal preparation. When to Use This Skill User wants to review or check a paper draft before submission User asks for feedback on paper quality or completeness User wants to prepare for potential reviewer criticism User mentions "review paper", "check my draft", "self-review" If the user has alrea...
277
10606 spl-to-apl axiomhq/skills
Type safety: Fields like status are often stored as strings. Always cast before numeric comparison: toint(status) >= 500, not status >= 500. Critical Differences - Time is explicit in APL: SPL time pickers don't translate — add `where _time between (ago(1h) .. now())` - Structure: SPL `index=... | command` → APL `['dataset'] | operator` - Join is preview: limited to 50k rows, inner/innerunique/leftouter only - cidrmatch args reversed: SPL `cidrmatch(cidr, ip)` → APL `ipv4_is_in_range(ip, c...
277
10607 alicloud-ai-search-opensearch cinience/alicloud-skills
Category: provider OpenSearch Vector Search Edition Use the ha3engine SDK to push documents and execute HA/SQL searches. This skill focuses on API/SDK usage only (no console steps). Prerequisites Install SDK (recommended in a venv to avoid PEP 668 limits): python3 -m venv .venv . .venv/bin/activate python -m pip install alibabacloud-ha3engine Provide connection config via environment variables: OPENSEARCH_ENDPOINT (API domain) OPENSEARCH_INSTANCE_ID OPENSEARCH_USERNAME OPENSEARCH_PASSWORD OPENSE...
276
10608 settlement kazukinagata/shinkoku
決算整理・決算書作成(Year-End Settlement) 会計年度末の決算整理仕訳を登録し、残高試算表・損益計算書・貸借対照表を確認するスキル。 journal スキルで日常仕訳の入力が完了していることを前提とする。 設定の読み込み(最初に実行) shinkoku.config.yaml を Read ツールで読み込む ファイルが存在しない場合は /setup スキルの実行を案内して終了する 設定値を把握し、相対パスは CWD を基準に絶対パスに変換する: db_path : CLI スクリプトの --db-path 引数に使用 output_dir : 進捗ファイル等の出力先ベースディレクトリ 各ディレクトリ: ファイル参照時に使用 パス解決の例 config の db_path が ./shinkoku.db 、 output_dir が ./output で CWD が /home/user/tax-2025/ の場合: ledger.py trial-balance --db-path /home/user/tax-2025/shinkoku.db --input que...
276
10609 reading-receipt kazukinagata/shinkoku
レシート・領収書・ふるさと納税受領証明書 画像読み取り レシート・領収書・ふるさと納税受領証明書の画像を読み取り、構造化データとして返すスキル。 PDF ファイルの場合 ファイルが PDF( .pdf )の場合、画像 OCR の前にテキスト抽出を試みる。 shinkoku pdf extract-text --file-path <path> を実行する 抽出テキストに必要な情報(金額・日付・店舗名等)が含まれていれば、テキストから構造化データを生成する テキストが不十分(スキャン PDF 等)の場合は shinkoku pdf to-image --file-path <path> --output-dir <dir> で PNG に変換し、以下の画像読み取りフローに進む 画像読み取り方法 推奨: デュアル検証(並列2コンテキスト) 精度を高めるため、同じ画像を2つの独立したコンテキストで並列に読み取り、結果を照合する。 2つの独立した読み取りを実行する: サブエージェントが使える環境では、2つのサブエージェントを並列で起動し、それぞれ独立に画像を読み取る。 各サブエージェントには以...
276
10610 service-mesh-implementation aj-geddes/useful-ai-prompts
Service Mesh Implementation Overview Deploy and configure a service mesh to manage microservice communication, enable advanced traffic management, implement security policies, and provide comprehensive observability across distributed systems. When to Use Microservice communication management Cross-cutting security policies Traffic splitting and canary deployments Service-to-service authentication Request routing and retries Distributed tracing integration Circuit breaker patterns Mutual TLS b...
276
10611 survival analysis aj-geddes/useful-ai-prompts
Survival Analysis Overview Survival analysis studies time until an event occurs, handling censored data where events haven't happened for some subjects, enabling prediction of lifetimes and risk assessment. Key Concepts Survival Time : Time until event Censoring : Event not observed (subject dropped out) Hazard : Instantaneous risk at time t Survival Curve : Probability of surviving past time t Hazard Ratio : Relative risk between groups Common Models Kaplan-Meier : Non-parametric survival curve...
276
10612 correlation analysis aj-geddes/useful-ai-prompts
Correlation Analysis Overview Correlation analysis measures the strength and direction of relationships between variables, helping identify which features are related and detect multicollinearity. When to Use Identifying relationships between numerical variables Detecting multicollinearity before regression modeling Exploratory data analysis to understand feature dependencies Feature selection and dimensionality reduction Validating assumptions about variable relationships Comparing linear and n...
276
10613 error-diagnostics-error-trace sickn33/antigravity-awesome-skills
Error Tracking and Monitoring You are an error tracking and observability expert specializing in implementing comprehensive error monitoring solutions. Set up error tracking systems, configure alerts, implement structured logging, and ensure teams can quickly identify and resolve production issues. Use this skill when Working on error tracking and monitoring tasks or workflows Needing guidance, best practices, or checklists for error tracking and monitoring Do not use this skill when The task is...
276
10614 railway-domain davila7/claude-code-templates
Railway Domain Management Add, view, or remove domains for Railway services. When to Use User asks to "add a domain", "generate a domain", "get a URL" User wants to add a custom domain User asks "what's the URL for my service" User wants to remove a domain Add Railway Domain Generate a railway-provided domain (max 1 per service): railway domain --json For a specific service: railway domain --json --service backend Response Returns the generated domain URL. Service must have a deployment...
276
10615 railway-metrics davila7/claude-code-templates
Railway Service Metrics Query resource usage metrics for Railway services. When to Use User asks "how much memory is my service using?" User asks about CPU usage, network traffic, disk usage User wants to debug performance issues User asks "is my service healthy?" (combine with railway-service skill) Prerequisites Get environmentId and serviceId from linked project: railway status --json Extract: environment.id → environmentId service.id → serviceId (optional - omit to get all services) M...
276
10616 synthetic-monitoring aj-geddes/useful-ai-prompts
Synthetic Monitoring Overview Set up synthetic monitoring to automatically simulate real user journeys, API workflows, and critical business transactions to detect issues and validate performance. When to Use End-to-end workflow validation API flow testing User journey simulation Transaction monitoring Critical path validation Instructions 1. Synthetic Tests with Playwright // synthetic-tests.js const { chromium } = require('playwright'); class SyntheticMonitor { constructor(config = {}) { ...
276
10617 alicloud-platform-openapi-product-api-discovery cinience/alicloud-skills
Alibaba Cloud Product + API Discovery Follow this workflow to collect products, resolve API metadata, and build summaries for skill planning. Workflow Fetch product lists from the three sources Ticket System (ListProducts) Support & Service (ListProductByGroup) BSS OpenAPI (QueryProductList) Run the bundled scripts (from this skill folder): python scripts/products_from_ticket_system.py python scripts/products_from_support_service.py python scripts/products_from_bssopenapi.py Provide required env...
275
10618 axiom-swiftui-architecture charleswiltgen/axiom
SwiftUI Architecture When to Use This Skill Use this skill when: You have logic in your SwiftUI view files and want to extract it Choosing between MVVM, TCA, vanilla SwiftUI patterns, or Coordinator Refactoring views to separate concerns Making SwiftUI code testable Asking "where should this code go?" Deciding which property wrapper to use (@State, @Environment, @Bindable) Organizing a SwiftUI codebase for team development Example Prompts What You Might Ask Why This Skill Helps "There's quite ...
275
10619 motion-designer ncklrs/startup-os-skills
Motion Designer: Visual Animation Craft You are a motion designer creating expressive, purposeful movement. Apply Disney's 12 principles to craft animations that communicate and delight. The 12 Principles for Motion Design 1. Squash and Stretch The soul of organic movement. Compress on impact, elongate during speed. Preserve volume—wider means shorter. Use for characters, UI elements with personality, brand mascots. 2. Anticipation Wind-up before action. A button recoils before launching na...
275
10620 code-review-security hieutrtr/ai1-skills
Code Review Security When to Use Activate this skill when: Reviewing pull requests for security vulnerabilities Auditing authentication or authorization code changes Reviewing code that handles user input, file uploads, or external data Checking for OWASP Top 10 vulnerabilities in new features Validating that secrets are not committed to the repository Scanning dependencies for known vulnerabilities Reviewing API endpoints that expose sensitive data Output: Write findings to security-review.md w...
275
10621 book-marketing jwynia/agent-skills
Book Marketing: Diagnostic and Generative Skill You diagnose book marketing copy problems and generate effective marketing copy across platforms. Your role is to help authors translate their books into compelling marketing materials. Core Principle Marketing copy promises an experience. It doesn't summarize a story—it creates desire for one. Writers who excel at novels often struggle with descriptions because they're different skills. A 200-word blurb must make readers feel they'll miss out ...
275
10622 nansen-trading nansen-ai/nansen-cli
Trade Two-step flow: quote then execute. Trades are irreversible once on-chain. Prerequisite: You need a wallet first. Run nansen wallet create before trading. Quote nansen trade quote \ --chain solana \ --from SOL \ --to USDC \ --amount 1000000000 Symbols resolve automatically: SOL , ETH , USDC , USDT , WETH . Raw addresses also work. Note: at least one side must be USDC or the native token — see Constraints below. Constraints Swap constraint: At least one side of every swap must be USDC or the...
275
10623 design-patterns-expert rysweet/amplihack
Gang of Four Design Patterns Expert You are a specialized knowledge skill providing comprehensive, philosophy-aligned guidance on all 23 Gang of Four design patterns. Navigation Guide This skill uses progressive disclosure with supporting files for deep knowledge. reference-patterns.md - Complete pattern specifications, decision frameworks, and how to use this skill effectively examples.md - 10 production-ready code examples with real-world scenarios antipatterns.md - Common mistakes and w...
275
10624 nansen-polymarket-insider-scan nansen-ai/nansen-cli
PM Suspicious Wallet Scanner Answers: "Are there wallets with suspicious trading patterns in this Polymarket market?" 1. Find the resolved market nansen research prediction-market market-screener --query "<market name>" --status closed --limit 5 → market_id, question, volume, last_trade_price 2. Get top winners (positive PnL) — paginate if needed, keep per_page <= 10 MID = < market_id > nansen research prediction-market pnl-by-market --market-id $MID --limit 10 → address (proxy), owner_addre...
275
10625 spec-driven-development jasonkneen/kiro
Spec-Driven Development Overview Write a structured specification before writing any code. The spec is the shared source of truth between you and the human engineer — it defines what we're building, why, and how we'll know it's done. Code without a spec is guessing. When to Use Starting a new project or feature Requirements are ambiguous or incomplete The change touches multiple files or modules You're about to make an architectural decision The task would take more than 30 minutes to implement ...
275
10626 tiptap-editor xiaolai/vmark
Tiptap Editor API Patterns Overview This skill documents proper Tiptap API usage patterns for vmark development. It helps distinguish when to use Tiptap's high-level API vs direct ProseMirror access. When to Use Tiptap API Always prefer Tiptap API for: Format commands (bold, italic, underline, etc.) Block type changes (heading, paragraph, code block) List operations (bullet, ordered, toggle, indent/outdent) Table operations via Tiptap table extension Content insertion and replacement Editor stat...
275
10627 cohort analysis aj-geddes/useful-ai-prompts
Cohort Analysis Overview Cohort analysis tracks groups of users with shared characteristics over time, revealing patterns in retention, engagement, and lifetime value. When to Use Measuring user retention rates and identifying when users churn Analyzing customer lifetime value (LTV) and payback periods Comparing performance across different user acquisition channels or campaigns Understanding how product changes affect different user groups over time Tracking engagement patterns and identifying ...
275
10628 scene-structure-techniques wordflowlab/novel-writer-skills
场景结构写作技巧 什么是场景? 场景是实时发生的冲突单元,角色追求目标并面对障碍。 不是场景:说明、背景故事、旅行、时间流逝 是场景:争论、谈判、追逐、揭露 场景-续场模型 每个场景都应该遵循这个模式: 场景(行动) 续场(反应) ├── 目标 ├── 情绪 ├── 冲突 ├── 困境 └── 灾难/成功 └── 决定 场景结构(行动) 1. 目标 POV角色在这个场景想要什么? 必须是: 具体的:"拿到钥匙" 而非 "搞清楚事情" 可实现的:可能在这个场景成功或失败 紧迫的:现在重要,不是最终 你的角色的场景目标: [明确、具体、紧迫] 他们为什么现在想要这个?: [情境/紧迫性] 2. 冲突 什么阻止他们得到想要的? 冲突类型: 外部:另一个角色反对他们 环境:物理障碍 内部:他们自己的恐惧或犹豫 时间:时间不够 信息:缺少关键知识 最好的场景结合 2-3 种冲突类型。 你的场景冲突: [主要障碍] [次要障碍] [可选第三个] 3. 灾难或成功 ...
275
10629 find-bugs sickn33/antigravity-awesome-skills
Find Bugs Review changes on this branch for bugs, security vulnerabilities, and code quality issues. Phase 1: Complete Input Gathering Get the FULL diff: git diff $(gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name')...HEAD If output is truncated, read each changed file individually until you have seen every changed line List all files modified in this branch before proceeding Phase 2: Attack Surface Mapping For each changed file, identify and list: All user inputs (request param...
275
10630 nansen-smart-alerts nansen-ai/nansen-cli
Smart Alerts CRUD management for smart alerts. Alerts are internal-only (requires Nansen internal API key). Quick Reference nansen alerts list --table nansen alerts create --name < name > --type < type > --chains < chains > --telegram < chatId > nansen alerts update < id > [ --name < name > ] [ --chains < chains > ] nansen alerts toggle < id > --enabled | --disabled nansen alerts delete < id > Options Reference Flag Create Update Toggle Delete <id> (positional) required required required --name ...
274
10631 nansen-polymarket-trader-profile nansen-ai/nansen-cli
Polymarket Wallet Activity Answers: "What is this Polymarket trader betting on? Are they profitable?" Finding an active trader address: Source from trades-by-market (guarantees trade history) rather than top-holders (position holders may have no recorded trades): Step 1: find active traders from a market nansen research pm trades-by-market --market-id < market_id > --limit 5 → seller/buyer addresses with confirmed trade history — use one as ADDR below ADDR = < polymarket_address > nansen resea...
274
10632 database-migrations-migration-observability sickn33/antigravity-awesome-skills
Migration Observability and Real-time Monitoring You are a database observability expert specializing in Change Data Capture, real-time migration monitoring, and enterprise-grade observability infrastructure. Create comprehensive monitoring solutions for database migrations with CDC pipelines, anomaly detection, and automated alerting. Use this skill when Working on migration observability and real-time monitoring tasks or workflows Needing guidance, best practices, or checklists for migration o...
274
10633 angular-best-practices-signalstore alfredoperez/angular-best-practices
Angular SignalStore Best Practices NgRx SignalStore rules for signal-based local and feature state management. Use with the core angular-best-practices skill for comprehensive Angular coverage. Links Core Skill: angular-best-practices Browse All Skills GitHub Repository When to Apply Creating or modifying SignalStore-based state management Integrating RxJS side effects with rxMethod Managing collections with withEntities Rules Rule Impact Description Use rxMethod for RxJS Integration MEDIUM Debo...
274
10634 oxlint delexw/claude-code-misc
Oxlint — High-Performance JS/TS Linter Oxlint is 50-100x faster than ESLint. It ships with 690+ rules covering ESLint core, TypeScript, React, Jest, Unicorn, jsx-a11y, and more. It prioritizes high-signal correctness checks by default — things that are incorrect, unsafe, or useless — so teams can adopt it without drowning in false positives. Detection Before linting, confirm the project uses oxlint by checking for any of: oxlint in package.json devDependencies/dependencies An .oxlintrc.json file...
274
10635 license-keys dodopayments/skills
Reference: [docs.dodopayments.com/features/license-keys](https://docs.dodopayments.com/features/license-keys) License keys authorize access to your digital products. Use them for software licensing, per-seat controls, and gating premium features. Overview License keys are unique tokens that: - Authorize access to software, plugins, CLIs - Limit activations per user or device - Gate downloads, updates, or premium features - Can be linked to subscriptions or one-time purchases Creating L...
274
10636 presentation-design-enhancer onewave-ai/claude-skills
Presentation Design Enhancer Transform text-heavy slides into visual storytelling. Suggest layout improvements, icon usage, and data visualization. Instructions You are an expert at presentation design and visual communication. Transform dense content into engaging visuals using design principles and best practices. Output Format Presentation Design Enhancer Output Generated: {timestamp} --- Results [Your formatted output here] --- Recommendations [Actionable next steps] Best Pra...
274
10637 ml-engineer sickn33/antigravity-awesome-skills
Use this skill when Working on ml engineer tasks or workflows Needing guidance, best practices, or checklists for ml engineer Do not use this skill when The task is unrelated to ml engineer You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You are an ML engi...
274
10638 alicloud-security-content-moderation-green cinience/alicloud-skills
Category: service Content Moderation (Green) Use Alibaba Cloud OpenAPI (RPC) with official SDKs or OpenAPI Explorer to manage resources for Content Moderation. Workflow Confirm region, resource identifiers, and desired action. Discover API list and required parameters (see references). Call API with SDK or OpenAPI Explorer. Verify results with describe/list APIs. AccessKey priority (must follow) Environment variables: ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID Regio...
273
10639 alicloud-media-video-translation cinience/alicloud-skills
Category: service IMS Video Translation (OpenAPI) Submit video translation jobs via OpenAPI and poll results for subtitle-level, voice-level, and face-level processing. Prerequisites Prepare OSS input/output URIs (recommended to match API region). Configure AK: ALICLOUD_ACCESS_KEY_ID / ALICLOUD_ACCESS_KEY_SECRET / ALICLOUD_REGION_ID ( ALICLOUD_REGION_ID can be used as the default region; if unset, choose the most reasonable region and ask when unclear). Workflow Prepare source file and output OS...
273
10640 alicloud-compute-fc-agentrun cinience/alicloud-skills
Category: service Function Compute AgentRun (OpenAPI) Use AgentRun OpenAPI (ROA) to manage runtimes, sandboxes, model services, memory, and credentials. Prerequisites AccessKey via RAM user (least privilege). Select the correct regional endpoint (see references/endpoints.md ). If unsure, choose the most reasonable region for the task or ask the user. Use OpenAPI Explorer or official SDK to avoid manual signing (ROA requires SignatureV1). Workflow Choose region endpoint ( agentrun.cn-<region>.ali...
273
10641 solution-architect 404kidwiz/claude-supercode-skills
Solution Architect Purpose Provides expertise in designing enterprise-scale solutions that align technology with business objectives. Specializes in architecture frameworks, trade-off analysis, technology selection, and ensuring solutions meet functional and non-functional requirements. When to Use Designing end-to-end solution architecture for new initiatives Evaluating technology options and making selection decisions Creating architecture decision records (ADRs) Ensuring solutions meet enterp...
273
10642 antigravity-design-expert sickn33/antigravity-awesome-skills
name: antigravity-design-expert description: Core UI/UX engineering skill for building highly interactive, spatial, weightless, and glassmorphism-based web interfaces using GSAP and 3D CSS. risk: safe source: community date_added: "2026-03-07" Antigravity UI & Motion Design Expert 🎯 Role Overview You are a world-class UI/UX Engineer specializing in "Antigravity Design." Your primary skill is building highly interactive, spatial, and weightless web interfaces. You excel at creating isometric grid...
273
10643 kafka-engineer 404kidwiz/claude-supercode-skills
Kafka Engineer Purpose Provides Apache Kafka and event streaming expertise specializing in scalable event-driven architectures and real-time data pipelines. Builds fault-tolerant streaming platforms with exactly-once processing, Kafka Connect, and Schema Registry management. When to Use Designing event-driven microservices architectures Setting up Kafka Connect pipelines (CDC, S3 Sink) Writing stream processing apps (Kafka Streams / ksqlDB) Debugging consumer lag, rebalancing storms, or broker...
273
10644 consumption-tax kazukinagata/shinkoku
消費税計算(Consumption Tax Calculation) 課税売上・課税仕入から消費税額を計算するスキル。 assess スキルで消費税の課税事業者と判定され、settlement スキルで決算が完了していることを前提とする。 計算結果は /e-tax スキル(Claude in Chrome)で確定申告書等作成コーナーに入力する。 設定の読み込み(最初に実行) shinkoku.config.yaml を Read ツールで読み込む ファイルが存在しない場合は /setup スキルの実行を案内して終了する 設定値を把握し、相対パスは CWD を基準に絶対パスに変換する: db_path : CLI スクリプトの --db-path 引数に使用 output_dir : 進捗ファイル等の出力先ベースディレクトリ 各ディレクトリ: ファイル参照時に使用 パス解決の例 config の db_path が ./shinkoku.db で CWD が /home/user/tax-2025/ の場合: shinkoku tax calc-consumption --input /...
273
10645 setup kazukinagata/shinkoku
Parallel Plugin Setup Install CLI See https://docs.parallel.ai/integrations/cli for the supported install methods (pipx, Homebrew, npm, native binary). Walk the user through whichever they pick. Authenticate parallel-cli login Verify parallel-cli auth If parallel-cli not found, add ~/.local/bin to PATH. Show more
273
10646 create-colleague titanwings/colleague-skill
Language / 语言 : This skill supports both English and Chinese. Detect the user's language from their first message and respond in the same language throughout. Below are instructions in both languages — follow the one matching the user's language. 本 Skill 支持中英文。根据用户第一条消息的语言,全程使用同一语言回复。下方提供了两种语言的指令,按用户语言选择对应版本执行。 同事.skill 创建器(Claude Code 版) 触发条件 当用户说以下任意内容时启动: /create-colleague "帮我创建一个同事 skill" "我想蒸馏一个同事" "新建同事" "给我做一个 XX 的 skill" 当用户对已有同事 Skill 说以下内容时,进入进化模式: "我有新文件" / "追加" "这不对" / "他不会这样" / "他应该...
273
10647 scene-sequencing jwynia/agent-skills
Scene Sequencing: Pacing Skill You help writers structure scenes and control narrative pacing using the scene-sequel rhythm. Core Principle The fundamental unit of pacing is not the scene alone, but the scene-sequel pair. Scenes create tension; sequels process it. The alternation creates peaks and valleys that make stories readable. Scene Structure: Goal → Conflict → Disaster Goal What does the POV character want in this scene? Specific and concrete Achievable within the scene Connected to...
273
10648 goal-planner recallnet/goal-planner
Goal Planner Help users think clearly about what they want, then file it as well-scoped GitHub issues. Your job You are a thinking partner, not an issue factory. Your job is to help the user clarify what they want — the outcome, not the implementation — and file it so that someone (or something) else can figure out how to build it. Goals describe outcomes. Features describe work. These are different steps that happen at different times. Do not collapse them. How to think about goals A goal is an...
273
10649 nansen-token-transfer-analysis nansen-ai/nansen-cli
Token Forensics Answers: "Where is this token moving? Who is sending it and where?" TOKEN = < address > CHAIN = ethereum Examples: UNI on ethereum (0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984) BONK on solana (DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263) Note: token flows does NOT support stablecoins (USDC, USDT, etc.) — use non-stablecoin tokens nansen research token transfers --token $TOKEN --chain $CHAIN --days 7 --limit 20 → from_address_label, to_address_label, transfer_amount,...
273
10650 settlement-design jwynia/agent-skills
Settlement Design: Urban Development Skill You help writers create realistic settlements by applying the ten core principles that govern how real cities and towns form, grow, and evolve. This produces urban environments that feel lived-in rather than designed-for-plot. Core Principles Geographic Determinism: Natural features profoundly shape settlement patterns and growth Functional Necessity: Settlements develop to fulfill specific economic, defensive, or social needs Network Emergence: Settl...
273