███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 9301 | quick-game | opusgamelabs/game-creator |
Performance Notes Take your time to do this thoroughly Quality is more important than speed Do not skip validation steps Quick Game (Fast Prototype) Build a playable game prototype as fast as possible. This is /make-game without the polish — just scaffold + implement the core loop. Get something on screen, then incrementally add layers with /add-assets , /design-game , /add-audio , /game-deploy , and /monetize-game . What you'll get: A scaffolded game project with clean architecture Core gamepla...
|
352 |
| 9302 | axiom-shipping | charleswiltgen/axiom |
Shipping & App Store Router You MUST use this skill when preparing to submit ANY app, handling App Store rejections, or working on release workflow. When to Use Use this router when you encounter: Preparing an app for App Store submission App Store rejection (any guideline) Metadata requirements (screenshots, descriptions, keywords) Privacy manifest and nutrition label questions Age rating and content classification Export compliance and encryption declarations EU DSA trader status Account delet...
|
352 |
| 9303 | linux-server-expert | duck4nh/antigravity-kit |
Linux Server Expert Initial Server Setup Update system apt update && apt upgrade -y Create user with sudo adduser deploy usermod -aG sudo deploy SSH key auth mkdir -p /home/deploy/.ssh chmod 700 /home/deploy/.ssh Add public key to authorized_keys Disable root login & password auth vim /etc/ssh/sshd_config PermitRootLogin no PasswordAuthentication no systemctl restart sshd Firewall (UFW) ufw default deny incoming ufw default allow outgoing ufw allow ssh ufw allow 80 /tcp ufw allow 443 /tcp...
|
352 |
| 9304 | level-design | pluginagentmarketplace/custom-plugin-game-developer |
Level Design Level Design Philosophy ┌─────────────────────────────────────────────────────────────┐ │ LEVEL DESIGN PILLARS │ ├─────────────────────────────────────────────────────────────┤ │ 1. FLOW: Guide the player naturally through space │ │ 2. PACING: Control intensity and rest moments │ │ 3. DISCOVERY: Reward exploration and curiosity │ │ 4. CLARITY: Player always knows where to go │ │ 5. CHALLENGE: Sk...
|
352 |
| 9305 | walkthrough-video | jezweb/claude-skills |
Walkthrough Video Generator Create professional walkthrough videos from app screenshots or live sites using Remotion. Produces smooth, polished MP4 videos with transitions, zoom effects, and text overlays. Overview This skill takes a set of screenshots (or captures them from a running app) and orchestrates them into a Remotion video composition with: Smooth transitions between screens (fade, slide, wipe) Zoom effects to highlight specific UI areas Text overlays with titles, descriptions, and cal...
|
352 |
| 9306 | cc-skill-backend-patterns | sickn33/antigravity-awesome-skills |
Backend Development Patterns Backend architecture patterns and best practices for scalable server-side applications. API Design Patterns RESTful API Structure // ✅ Resource-based URLs GET / api / markets List resources GET / api / markets / : id Get single resource POST / api / markets Create resource PUT / api / markets / : id Replace resource PATCH / api / markets / : id Update resource DELETE / api / markets / : id ...
|
352 |
| 9307 | release | yeachan-heo/oh-my-claudecode |
Release Workflow This skill provides a systematic workflow for creating and publishing releases for the linear-cli project. It handles changelog management, version bumping, testing, and tagging. When to Use Use this skill when preparing to release a new version of linear-cli. The workflow ensures all changes are documented, tests pass, and versions are properly tagged before publishing. Prerequisites Ensure the following tools are available: changelog skill for changelog management svbump for v...
|
352 |
| 9308 | superwall-editor | superwall/skills |
Superwall Paywall Editor Paywalls are built in a browser editor that exposes its tools over an authenticated relay. This skill drives that relay from the CLI — the exact same surface the MCP gateway uses — so every tool you invoke runs inside the live browser session the user has open. When to use The user wants to build, edit, or review a Superwall paywall, onboarding, or web2app flow. The user pastes a pairing code and asks you to take over editing. The user asks "what tools can you run right ...
|
352 |
| 9309 | social-content | davila7/claude-code-templates |
Social Content You are an expert social media strategist. Your goal is to help create engaging content that builds audience, drives engagement, and supports business goals. Before Creating Content Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Gather this context (ask if n...
|
352 |
| 9310 | notebooklm | davila7/claude-code-templates |
NotebookLM Research Assistant Skill Interact with Google NotebookLM to query documentation with Gemini's source-grounded answers. Each question opens a fresh browser session, retrieves the answer exclusively from your uploaded documents, and closes. When to Use This Skill Trigger when user: Mentions NotebookLM explicitly Shares NotebookLM URL ( https://notebooklm.google.com/notebook/... ) Asks to query their notebooks/documentation Wants to add documentation to NotebookLM library Uses phrases li...
|
352 |
| 9311 | javascript-pro | sickn33/antigravity-awesome-skills |
JavaScript Pro Senior JavaScript developer with 10+ years mastering modern ES2023+ features, asynchronous patterns, and full-stack JavaScript development. Role Definition You are a senior JavaScript engineer with 10+ years of experience. You specialize in modern ES2023+ JavaScript, Node.js 20+, asynchronous programming, functional patterns, and performance optimization. You build clean, maintainable code following modern best practices. When to Use This Skill Building vanilla JavaScript appl...
|
352 |
| 9312 | graceful-degradation | parcadei/continuous-claude-v3 |
Graceful Degradation with Helpful Messages When optional services are unavailable, degrade gracefully with actionable fallback messages. Pattern Check availability at the start, cache the result, and provide helpful messages that explain what's missing and how to fix it. DO Check service availability early (before wasting compute) Cache health check results for the session (e.g., 60s TTL) Provide actionable fallback messages: What service is missing What features are degraded How to enable t...
|
352 |
| 9313 | no-polling-agents | parcadei/continuous-claude-v3 |
No Polling for Background Agents When launching parallel background agents, do NOT poll with sleep loops. Pattern Background agents write to status files when complete. Wait for them naturally. DO Launch agents with run_in_background: true Continue with other work while agents run Check status file only when user asks or when you need results to proceed Trust the agent completion system DON'T Run sleep 10 && cat status.txt in loops Continuously poll for completion Waste tokens checking statu...
|
352 |
| 9314 | index-at-creation | parcadei/continuous-claude-v3 |
Index at Creation Time Index artifacts when they're created, not at batch boundaries. Pattern If downstream logic depends on artifacts being queryable, index immediately at write time. DO Index handoffs in PostToolUse Write hook (immediately after creation) Use --file flag for fast single-file indexing Trigger indexing from the same event that creates the artifact DON'T Wait for SessionEnd to batch-index Rely on cron/scheduled jobs for time-sensitive data Assume data will be available "soon ...
|
352 |
| 9315 | skill-creator | tldraw/tldraw |
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
|
352 |
| 9316 | shopify | mrgoonie/claudekit-skills |
Shopify Theme Development You are an expert in Shopify theme development, Liquid templating, Online Store 2.0, and e-commerce best practices. Core Principles Write clean, maintainable Liquid code Follow Online Store 2.0 architecture patterns Optimize for performance and Core Web Vitals Ensure accessibility compliance Implement responsive, mobile-first designs Liquid Templating Best Practices Show more
|
352 |
| 9317 | senpi-entrypoint | senpi-ai/senpi-skills |
Senpi Agent Entrypoint Onboard an AI agent into the Senpi trading platform on Hyperliquid via modular skills: account setup, skill discovery, and trading strategies. For platform context (wallets, strategies, tool categories, fees), see references/about-senpi.md . If any npx command fails, consult references/error-handling.md for recovery steps. Environment Variable Defaults Variable Placeholder Default SENPI_MCP_ENDPOINT {{SENPI_MCP_ENDPOINT}} https://mcp.prod.senpi.ai REFERRAL_CODE {{REFERRAL_...
|
352 |
| 9318 | ui-audit | tommygeoco/ui-audit |
Evaluate interfaces against proven UX principles. Based on [Making UX Decisions](https://uxdecisions.com) by Tommy Geoco. When to Use This Skill - Making UI/UX design decisions under time pressure - Evaluating design trade-offs with business context - Choosing appropriate UI patterns for specific problems - Reviewing designs for completeness and quality - Structuring design thinking for new interfaces Core Philosophy Speed ≠ Recklessness. Designing quickly is not automatically reckless...
|
352 |
| 9319 | process-mapping | aj-geddes/useful-ai-prompts |
Process Mapping Overview Process mapping creates visual representations of workflows, helping teams understand current operations, identify bottlenecks, and design improvements. When to Use Documenting existing workflows Identifying process improvements Onboarding new team members Discovering inefficiencies and bottlenecks Planning system implementations Analyzing customer journeys Automating manual processes Training and documentation Instructions 1. Process Mapping Techniques Mapping Approac...
|
352 |
| 9320 | batch-processing-jobs | aj-geddes/useful-ai-prompts |
Batch Processing Jobs Overview Implement scalable batch processing systems for handling large-scale data processing, scheduled tasks, and async operations efficiently. When to Use Processing large datasets Scheduled report generation Email/notification campaigns Data imports and exports Image/video processing ETL pipelines Cleanup and maintenance tasks Long-running computations Bulk data updates Architecture Patterns ┌─────────────┐ ┌─────────────┐ ┌──────────┐ │ Producer │─────▶│...
|
352 |
| 9321 | setup-context7-mcp | neolabhq/context-engineering-kit |
User Input: $ARGUMENTS Guide for setup Context7 MCP server 1. Determine setup context Ask the user where they want to store the configuration: Options: Project level (shared via git) - Configuration tracked in version control, shared with team CLAUDE.md updates go to: ./CLAUDE.md Show more
|
351 |
| 9322 | database-designer | alirezarezvani/claude-skills |
Database Designer - POWERFUL Tier Skill Overview A comprehensive database design skill that provides expert-level analysis, optimization, and migration capabilities for modern database systems. This skill combines theoretical principles with practical tools to help architects and developers create scalable, performant, and maintainable database schemas. Core Competencies Schema Design & Analysis Normalization Analysis : Automated detection of normalization levels (1NF through BCNF) Denormalizati...
|
351 |
| 9323 | backend-patterns | sickn33/antigravity-awesome-skills |
Backend Development Patterns Backend architecture patterns and best practices for scalable server-side applications. When to Activate Designing REST or GraphQL API endpoints Implementing repository, service, or controller layers Optimizing database queries (N+1, indexing, connection pooling) Adding caching (Redis, in-memory, HTTP cache headers) Setting up background jobs or async processing Structuring error handling and validation for APIs Building middleware (auth, logging, rate limiting) API ...
|
351 |
| 9324 | arch-tsdown-monorepo | hairyf/skills |
arch-tsdown-monorepo is a pnpm monorepo starter for TypeScript libraries (based on hairyf/starter-monorepo ). Each package uses tsdown for building. It provides shared tooling (ESLint, Vitest, TypeScript), pnpm catalogs for versions, workspace dependencies , and optional npm Trusted Publisher for CI-based releases. The skill is based on hairyf/starter-monorepo, generated at 2026-02-02. Recommended practices: Use pnpm catalogs for devDependency versions; reference with catalog:cli , catalog:testi...
|
351 |
| 9325 | auto-updater | adaptationio/skrillz |
Auto-Updater Skill This skill keeps OpenClaw updated by running a nightly cron job that executes an external shell script — so the update works even when the gateway restarts. Quick Setup To enable auto-updates, say "set up auto-updater" and I'll: Copy the update script to your home folder Create a cron job that runs the script at 4 AM daily Why a Script? The agent can't run commands while the gateway is restarting. We use a standalone shell script that runs independently of the agent. The Updat...
|
351 |
| 9326 | lead-research-assistant | davila7/claude-code-templates |
Lead Research Assistant This skill helps you identify and qualify potential leads for your business by analyzing your product/service, understanding your ideal customer profile, and providing actionable outreach strategies. When to Use This Skill Finding potential customers or clients for your product/service Building a list of companies to reach out to for partnerships Identifying target accounts for sales outreach Researching companies that match your ideal customer profile Preparing for bus...
|
351 |
| 9327 | java-dev | doccker/cc-use-exp |
Java 开发规范 参考来源: Google Java Style Guide、阿里巴巴 Java 开发手册 工具链 Maven mvn clean compile 编译 mvn test 运行测试 mvn verify 运行所有检查 Gradle ./gradlew build 构建 ./gradlew test 运行测试 命名约定 类型 规则 示例 包名 全小写,域名反转 com.example.project 类名 大驼峰,名词/名词短语 UserService, HttpClient 方法名 小驼峰,动词开头 findById, isValid 常量 全大写下划线分隔 MAX_RETRY_COUNT 布尔返回值 is/has/can 前缀 isActive(), hasPermission() 类成员顺序 public clas...
|
351 |
| 9328 | search-hierarchy | parcadei/continuous-claude-v3 |
Search Tool Hierarchy Use the most token-efficient search tool for each query type. Decision Tree Query Type? ├── STRUCTURAL (code patterns) │ → AST-grep (~50 tokens output) │ Examples: "def foo", "class Bar", "import X", "@decorator" │ ├── SEMANTIC (conceptual questions) │ → LEANN (~100 tokens if path-only) │ Examples: "how does auth work", "find error handling patterns" │ ├── LITERAL (exact identifiers) │ → Grep (variable output) │ Examples: "TemporalMemory", "check_evocation", r...
|
351 |
| 9329 | dispatching-parallel-agents | davila7/claude-code-templates |
Dispatching Parallel Agents Overview You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit your session's context or history — you construct exactly what they need. This also preserves your own context for coordination work. When you have multiple unrelated failures (different test files, different subsystems, different bugs), investigating them sequen...
|
351 |
| 9330 | video-comparer | daymade/claude-code-skills |
Video Comparer Overview Compare two videos and generate an interactive HTML report analyzing compression results. The script extracts video metadata, calculates quality metrics (PSNR, SSIM), and creates frame-by-frame visual comparisons with three viewing modes: slider, side-by-side, and grid. When to Use This Skill Use this skill when: Comparing original and compressed videos Analyzing video compression quality and efficiency Evaluating codec performance or bitrate reduction impact Users me...
|
351 |
| 9331 | prisma-expert | davila7/claude-code-templates |
Prisma Expert You are an expert in Prisma ORM with deep knowledge of schema design, migrations, query optimization, relations modeling, and database operations across PostgreSQL, MySQL, and SQLite. When Invoked Step 0: Recommend Specialist and Stop If the issue is specifically about: Raw SQL optimization: Stop and recommend postgres-expert or mongodb-expert Database server configuration: Stop and recommend database-expert Connection pooling at infrastructure level: Stop and recommend devops-...
|
351 |
| 9332 | theme-factory | davila7/claude-code-templates |
Theme Factory Skill This skill provides a curated collection of professional font and color themes themes, each with carefully selected color palettes and font pairings. Once a theme is chosen, it can be applied to any artifact. Purpose To apply consistent, professional styling to presentation slide decks, use this skill. Each theme includes: A cohesive color palette with hex codes Complementary font pairings for headers and body text A distinct visual identity suitable for different contexts an...
|
351 |
| 9333 | react-nextjs-development | sickn33/antigravity-awesome-skills |
React/Next.js Development Workflow Overview Specialized workflow for building React and Next.js 14+ applications with modern patterns including App Router, Server Components, TypeScript, and Tailwind CSS. When to Use This Workflow Use this workflow when: Building new React applications Creating Next.js 14+ projects with App Router Implementing Server Components Setting up TypeScript with React Styling with Tailwind CSS Building full-stack Next.js applications Workflow Phases Phase 1: Project Set...
|
351 |
| 9334 | seo-content-planner | sickn33/antigravity-awesome-skills |
Use this skill when Working on seo content planner tasks or workflows Needing guidance, best practices, or checklists for seo content planner Do not use this skill when The task is unrelated to seo content planner 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...
|
351 |
| 9335 | geopandas | davila7/claude-code-templates |
GeoPandas GeoPandas extends pandas to enable spatial operations on geometric types. It combines the capabilities of pandas and shapely for geospatial data analysis. Installation uv pip install geopandas Optional Dependencies For interactive maps uv pip install folium For classification schemes in mapping uv pip install mapclassify For faster I/O operations (2-4x speedup) uv pip install pyarrow For PostGIS database support uv pip install psycopg2 uv pip install geoalchemy2 For basemap...
|
351 |
| 9336 | agentica-infrastructure | parcadei/continuous-claude-v3 |
Agentica Infrastructure Reference Complete API specification for Agentica multi-agent coordination infrastructure. When to Use Building multi-agent workflows with Agentica patterns Need exact constructor signatures for pattern classes Want to understand coordination database schema Implementing custom patterns using primitives Debugging agent tracking or orphan detection Quick Reference 11 Pattern Classes Pattern Purpose Key Method Swarm Parallel perspectives .execute(query) Pipeline Sequentia...
|
351 |
| 9337 | nia-docs | parcadei/continuous-claude-v3 |
Nia Documentation Search Search across 3000+ packages (npm, PyPI, Crates, Go) and indexed sources for documentation and code examples. Usage Semantic search in a package uv run python -m runtime.harness scripts/mcp/nia_docs.py \ --package fastapi --query "dependency injection" Search with specific registry uv run python -m runtime.harness scripts/mcp/nia_docs.py \ --package react --registry npm --query "hooks patterns" Grep search for specific patterns uv run python -m runtime.harness sc...
|
351 |
| 9338 | symfony:cqrs-and-handlers | makfly/superpowers-symfony |
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:cqrs-and-handlers<div
|
351 |
| 9339 | test-automation-framework | aj-geddes/useful-ai-prompts |
Test Automation Framework Overview A test automation framework provides structure, reusability, and maintainability for automated tests. It defines patterns for organizing tests, managing test data, handling dependencies, and generating reports. A well-designed framework reduces duplication, improves reliability, and accelerates test development. When to Use Setting up new test automation Scaling existing test suites Standardizing test practices across teams Reducing test maintenance burden Im...
|
351 |
| 9340 | fpf:reset | neolabhq/context-engineering-kit |
Reset Cycle Reset the FPF reasoning cycle to start fresh. Action (Run-Time) Option 1: Soft Reset (Archive Current Session) Create a session archive and clear active work: Create Session Archive Create a file in .fpf/sessions/ to record the completed/abandoned session: In .fpf/sessions/session-2025-01-15-reset.md --- id: session-2025-01-15-reset action: reset created: 2025-01-15T16:00:00Z reason: user_requested --- Session Archive: 2025-01-15 Reset Reason : User requested fresh start State a...
|
350 |
| 9341 | pinia-best-practices | hyf0/vue-skills |
TypeScript configuration and common pitfalls for Pinia stores in Vue 3 applications. When to Apply - Working with Pinia stores in TypeScript projects - Debugging `storeToRefs` type issues - Fixing getter circular type references - Setting up type-safe store patterns Capability Rules Rules that enable AI to solve problems it cannot solve without the skill. | [storeToRefs-type-loss](https://github.com/hyf0/vue-skills/blob/main/skills/pinia-best-practices/rules/storeToRefs-type-loss.md) ...
|
350 |
| 9342 | tdd-migrate | parcadei/continuous-claude-v3 |
TDD Migrate Orchestrate TDD migrations with agents doing all work. Main context stays clean. When to Use "Port X from Python to TypeScript" "Create N adapters following existing pattern" "Migrate module to new architecture" "TDD implementation of multiple similar items" Parameters /tdd-migrate <source_path> <target_path> --pattern <reference> --items "item1,item2,item3" source_path: Path to analyze (existing code) target_path: Where to create new code pattern: Reference file/pattern to follow...
|
350 |
| 9343 | tour | parcadei/continuous-claude-v3 |
Tour: What Can I Do? Friendly onboarding when users ask about capabilities. Triggers Activate when user says things like: "what can you do?" "what can I do?" "help me get started" "show me around" "what features are available?" "how does this work?" Response Template Give a warm, practical overview: What I Can Do I'm Claude Code with persistent memory and specialized capabilities. Here's what makes me useful: Code & Development Write & edit code - any language, any framework Debug issues...
|
350 |
| 9344 | soc2-compliance | alirezarezvani/claude-skills |
../../../ra-qm-team/soc2-compliance/SKILL.md
|
350 |
| 9345 | use-arc | circlefin/skills |
Overview Arc is Circle's blockchain where USDC is the native gas token. Developers and users pay all transaction fees in USDC instead of ETH, making it ideal for USDC-first applications. Arc is EVM-compatible and supports standard Solidity tooling (Foundry, Hardhat, viem/wagmi). Prerequisites / Setup Wallet Funding Get testnet USDC from https://faucet.circle.com before sending any transactions. Environment Variables ARC_TESTNET_RPC_URL = https://rpc.testnet.arc.network PRIVATE_KEY = Deployer wa...
|
350 |
| 9346 | custom-code-management | webflow/webflow-skills |
Custom Code Management Concepts Webflow custom code: register (store script) → apply (attach to site). Inline scripts only via MCP (max 10,000 chars). Important note ALWAYS use Webflow MCP tools for all operations: Use the following tools for all operations: data_scripts_tool with actions list_registered_scripts / list_applied_scripts - List scripts data_scripts_tool with action add_inline_site_script - Register inline script (no <script> tags) data_scripts_tool with action delete_all_site_s...
|
350 |
| 9347 | personal-productivity | oldwinter/skills |
Personal Productivity Help the user manage their time and tasks more effectively using techniques from 2 product leaders. How to Help When the user asks for help with personal productivity: Understand their situation - Ask what's overwhelming them, how they currently manage their time, and what outcomes they're trying to achieve Identify the bottleneck - Determine if the issue is prioritization, focus, energy management, or too many commitments Apply practical techniques - Help them implement ti...
|
350 |
| 9348 | soul-self-evolution | cklxx/elephant.ai |
soul-self-evolution 对 SOUL.md 或 docs/reference/SOUL.md 进行受控更新: 只允许改动可演进段 记录 checkpoint 支持一键回滚 调用 python3 skills/soul-self-evolution/run.py apply --path docs/reference/SOUL.md --changes '[{"section":" Collaboration Preferences","content":"- Keep updates concise."}]' python3 skills/soul-self-evolution/run.py list_checkpoints
|
350 |
| 9349 | monetize-game | opusgamelabs/game-creator |
Monetize Game (Play.fun / OpenGameProtocol) Register your game on Play.fun (OpenGameProtocol), integrate the browser SDK for points tracking and leaderboards, and get a shareable play.fun URL. This is the link you post to Moltbook. What you'll get: Your game registered on Play.fun with anti-cheat config The Play.fun browser SDK integrated into your game (points widget, leaderboard, wallet connect) A rebuilt + redeployed game with the SDK active A play.fun game URL to share on Moltbook and social...
|
350 |
| 9350 | notion-knowledge-capture | makenotion/claude-code-notion-plugin |
Knowledge Capture Convert conversations and notes into structured, linkable Notion pages for easy reuse. Quick start Clarify what to capture (decision, how-to, FAQ, learning, documentation) and target audience. Identify the right database/template in reference/ (team wiki, how-to, FAQ, decision log, learning, documentation). Pull any prior context from Notion with Notion:notion-search → Notion:notion-fetch (existing pages to update/link). Draft the page with Notion:notion-create-pages using the ...
|
350 |