███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 15051 | music | connorads/dotfiles |
ElevenLabs Music Generation Generate music from text prompts - supports instrumental tracks, songs with lyrics, and fine-grained control via composition plans. Setup: See Installation Guide . For JavaScript, use @elevenlabs/* packages only. Quick Start Python from elevenlabs . client import ElevenLabs client = ElevenLabs ( ) audio = client . music . compose ( prompt = "A chill lo-fi hip hop beat with jazzy piano chords" , music_length_ms = 30000 ) with open ( "output.mp3" , "wb" ) as f : for chu...
|
49 |
| 15052 | material-3-expressive | albermonte/android-skills |
Material 3 Expressive (Android UI/UX) Overview Design and review Android UI/UX using Material 3 Expressive. Prioritize component-token requests for dialogs, sheets, modals, toolbars, and buttons, with guidance plus token references by default. Intake Questions Target device class (phone, tablet, foldable, Wear OS) Window size class (Compact, Medium, Expanded) Brand constraints and dynamic color usage Primary action(s) and desired hero moments (1-2 max) Motion constraints and reduced-motion expec...
|
49 |
| 15053 | refactor-flow | vladm3105/aidoc-flow-framework |
refactor-flow Description: Code refactoring assistance, technical debt management, and documentation synchronization Category: Code Quality & Maintenance Complexity: Medium-High (code transformation + traceability maintenance) Purpose Improve code quality through systematic refactoring while maintaining traceability to specifications. Identify refactoring opportunities, guide safe transformations, and ensure documentation stays synchronized with code changes. Capabilities 1. Code Smell Det...
|
49 |
| 15054 | youtube-transcript | nicepkg/ai-workflow |
YouTube Transcript Extract transcripts from YouTube videos using the youtube-transcript-api. Usage Run the script with a YouTube URL or video ID: uv run scripts/get_transcript.py "VIDEO_URL_OR_ID" With timestamps: uv run scripts/get_transcript.py "VIDEO_URL_OR_ID" --timestamps Defaults Without timestamps (default): Plain text, one line per caption segment With timestamps: [MM:SS] text format (or [HH:MM:SS] for longer videos) Supported URL Formats https://www.youtube.com/watch?v=VIDEO_ID ...
|
49 |
| 15055 | confluence-page-viewer | delexw/claude-code-misc |
Confluence Page Viewer Fetch and display Confluence page content using npx confluence-cli . Arguments $ARGUMENTS[0] — Confluence page URL $ARGUMENTS[1] — (optional) Output directory for persisting the page content. Defaults to .implement-assets/confluence When invoked by the orchestrator (e.g. implement ), $ARGUMENTS[1] is provided. When used standalone, it defaults to .implement-assets/confluence . System Requirements Node.js and npm/npx available confluence-cli package ( https://github.com/pch...
|
49 |
| 15056 | blueprint-work-order | laurigates/claude-plugins |
Generate a work-order document for isolated subagent execution with optional GitHub issue integration. Flags Flag Description --no-publish Create local work-order only, skip GitHub issue creation --from-issue N Create work-order from existing GitHub issue N --from-prp NAME Create work-order from existing PRP (auto-populates context) Default behavior : Creates both local work-order AND GitHub issue with work-order label. Prerequisites Blueprint Development initialized ( docs/blueprint/ exists) At...
|
49 |
| 15057 | howto-docs | existential-birds/beagle |
How-To Documentation Skill This skill provides patterns for writing effective How-To guides in documentation. How-To guides are task-oriented content for users who have a specific goal in mind. Purpose & Audience Target readers: Users with a specific goal they want to accomplish Assumes some familiarity with the product (not complete beginners) Looking for practical, actionable steps Want to get things done, not learn concepts How-To guides are NOT: Tutorials (which teach through explorati...
|
49 |
| 15058 | rust-trait-explorer | actionbook/rust-skills |
Rust Trait Explorer Discover trait implementations and understand polymorphic designs. Usage /rust-trait-explorer <TraitName|StructName> Examples: /rust-trait-explorer Handler - Find all implementors of Handler trait /rust-trait-explorer MyStruct - Find all traits implemented by MyStruct LSP Operations Go to Implementation Find all implementations of a trait. LSP( operation: "goToImplementation", filePath: "src/traits.rs", line: 10, character: 11 ) Use when: Trait name is known...
|
49 |
| 15059 | mermaid-diagrams | connorads/dotfiles |
Mermaid Diagramming Create professional software diagrams using Mermaid's text-based syntax. Mermaid renders diagrams from simple text definitions, making diagrams version-controllable, easy to update, and maintainable alongside code. Core Syntax Structure All Mermaid diagrams follow this pattern: diagramType definition content Key principles: First line declares diagram type (e.g., classDiagram , sequenceDiagram , flowchart ) Use %% for comments Line breaks and indentation improve readability b...
|
49 |
| 15060 | stakeholder-alignment | owl-listener/designer-skills |
Stakeholder Alignment Help the user achieve stakeholder alignment using frameworks and insights from 88 product leaders. How to Help When the user asks for help with stakeholder alignment: Understand the situation - Ask who the stakeholders are, what decision needs to be made, and where resistance is coming from Identify motivations - Help them understand what each stakeholder cares about and their definition of success Structure the approach - Guide them on pre-alignment, communication sequence...
|
49 |
| 15061 | zellij | zenobi-us/dotfiles |
Quick reference for Zellij CLI commands to manipulate running sessions. Covers session management, tabs, and panes. When to Use - Creating or attaching to Zellij sessions - Managing tabs and panes programmatically - Need CLI commands (not keybindings) - Automating Zellij operations When NOT to use: - Looking for keybindings (this is CLI only) - Layout file syntax - Configuration options Quick Reference Sessions | Create/attach session | `zellij attach --create <name>` or `zellij ...
|
49 |
| 15062 | test-full | laurigates/claude-plugins |
Context Project files: ! find . -maxdepth 1 \( -name 'pyproject.toml' -o -name 'package.json' -o -name 'Cargo.toml' -o -name 'go.mod' \) Test directories: ! find . -type d \( -name "test*" -o -name "__tests__" \) E2E setup: ! find . -maxdepth 1 \( -name 'playwright.config.*' -o -name 'cypress.config.*' \) CI environment: ! echo "CI=$CI GITHUB_ACTIONS=$GITHUB_ACTIONS" Parameters --coverage : Generate coverage report --parallel : Force parallel execution --report : Generate detailed HTML report Yo...
|
49 |
| 15063 | kommo | vm0-ai/vm0-skills |
Kommo API Use the Kommo API via direct curl calls for CRM management including leads, contacts, companies, tasks, and sales pipelines. Official docs: https://developers.kommo.com/ When to Use Use this skill when you need to: Manage leads - Create, list, update leads in your sales pipeline Handle contacts - Add and retrieve customer contact information Track companies - Manage company records and associations Create tasks - Schedule follow-ups and meetings View pipelines - Get sales pipeline...
|
49 |
| 15064 | corridorkey-green-screen | aradotso/trending-skills |
CorridorKey Green Screen Keying Skill by ara.so — Daily 2026 Skills collection. CorridorKey is a neural network that solves the color unmixing problem in green screen footage. For every pixel — including semi-transparent ones from motion blur, hair, or out-of-focus edges — it predicts the true straight (un-premultiplied) foreground color and a clean linear alpha channel. It reads/writes 16-bit and 32-bit EXR files for VFX pipeline integration. How It Works Two inputs required per frame: RGB gree...
|
49 |
| 15065 | components-version-badge | laurigates/claude-plugins |
/components:version-badge Implement a version badge component that displays version number, git commit, and recent changelog in a tooltip. Context Framework config: ! find . -maxdepth 1 \( -name "next.config.*" -o -name "nuxt.config.*" -o -name "svelte.config.*" -o -name "vite.config.*" \) Package manager: ! find . -maxdepth 1 \( -name "package.json" -o -name "bun.lockb" -o -name "pnpm-lock.yaml" \) Styling: ! find . -maxdepth 1 \( -name "tailwind.config.*" -o -name "postcss.config.*" \) UI libr...
|
49 |
| 15066 | bun-add | laurigates/claude-plugins |
/bun:add Add a package to dependencies using Bun. Parameters package (required): Package name, optionally with version (e.g., lodash , react@18 ) --dev : Add to devDependencies --exact : Pin exact version (no ^ range) Execution bun add { { if DEV } } --dev { { endif } } { { if EXACT } } --exact { { endif } } $PACKAGE Examples Add runtime dependency bun add express Add dev dependency bun add --dev typescript vitest Pin exact version bun add --exact react@18.2.0 Add to specific workspace bun a...
|
49 |
| 15067 | githubpages | julianobarbosa/claude-code-skills |
Complete guide for deploying, configuring, and managing GitHub Pages sites. Quick Reference | User/Org Site | `<username>.github.io` | `https://<username>.github.io` | Project Site | Any repository name | `https://<username>.github.io/<repo>` Availability: - Public repos: GitHub Free (all plans) - Private repos: GitHub Pro, Team, Enterprise Workflow Routing When executing a workflow, output this notification directly: ``` Running the WorkflowName workflow from the GithubPages sk...
|
49 |
| 15068 | tanstack-devtools | tanstack-skills/tanstack-skills |
Overview TanStack Devtools provides a unified debugging interface that consolidates devtools for TanStack Query, Router, and other libraries into a single panel. It features a framework-agnostic plugin architecture, real-time state inspection, and support for custom plugins. Built with Solid.js for lightweight performance. React: @tanstack/react-devtools Core: @tanstack/devtools Status: Alpha Installation npm install @tanstack/react-devtools Basic Setup import { TanStackDevtools } from '@tanstac...
|
49 |
| 15069 | git-worktrees | jamesrochabrun/skills |
Git Worktrees Overview Git worktrees allow you to have multiple working directories from the same repository, each with a different branch checked out. Work on multiple branches simultaneously without switching. When to Use Worktrees ✅ Perfect For: Stacked PR development (one worktree per PR) Urgent hotfix while working on feature Parallel development on multiple features Code review in isolation Testing cross-branch interactions Running multiple dev servers simultaneously ⚠️ Consider Alternat...
|
49 |
| 15070 | flask-expert | personamanagmentlayer/pcl |
Expert guidance for Flask web development, building REST APIs, using extensions, and production deployment. Core Concepts Flask Fundamentals - Routing and views - Request/response handling - Templates with Jinja2 - Blueprints for modularity - Application factory pattern - Configuration management Flask Extensions - Flask-SQLAlchemy (ORM) - Flask-Migrate (database migrations) - Flask-Login (authentication) - Flask-RESTful (REST APIs) - Flask-JWT-Extended (JWT tokens) - Flask-COR...
|
49 |
| 15071 | python-dev | databricks-solutions/ai-dev-kit |
Python Development Rules Overview Python development guidance focused on code quality, error handling, testing, and environment management. Apply when working with Python code or Jupyter notebooks. When to Use This Skill Use this skill when: Writing new Python code or modifying existing Python files Creating or updating Jupyter notebooks Setting up Python development environments Writing or updating tests Reviewing Python code for quality and best practices Code Quality Principles DRY (Don't Rep...
|
49 |
| 15072 | goal setter | eddiebe147/claude-settings |
Goal Setter The Goal Setter skill guides you through creating well-formed, achievable goals and maintaining accountability throughout your journey. Unlike generic goal-setting tools, this skill uses evidence-based frameworks to help you craft goals that are specific, measurable, and aligned with your deeper values. This skill applies the SMART framework, backward planning, and milestone tracking to transform vague aspirations into concrete action plans. It helps you identify potential obstacles ...
|
49 |
| 15073 | create-pr | cartridge-gg/docs |
Create Pull Request Creates GitHub PRs with titles that pass n8n's check-pr-title CI validation. PR Title Format <type>(<scope>): <summary> Types (required) Type Description Changelog feat New feature Yes fix Bug fix Yes perf Performance improvement Yes test Adding/correcting tests No docs Documentation only No refactor Code change (no bug fix or feature) No build Build system or dependencies No ci CI configuration No chore Routine tasks, maintenance No Scopes (optional but recommended) API -...
|
49 |
| 15074 | npu-smi | ascend-ai-coding/awesome-ascend-skills |
npu-smi Command Reference Quick reference for Huawei Ascend NPU device management commands. Quick Start npu-smi info -l List all devices npu-smi info -t health -i 0 Check device health npu-smi info -t temp -i 0 -c 0 Check temperature npu-smi info -t power -i 0 -c 0 Check power npu-smi info -t memory -i 0 -c 0 Check memory Device Queries Basic Information npu-smi info -l List devices npu-smi info -t health -i < id > Health status (OK/Warning/Error) npu-smi info -t board -i < id > Board de...
|
49 |
| 15075 | git-security-checks | laurigates/claude-plugins |
Expert guidance for pre-commit security validation and secret detection using detect-secrets and pre-commit hooks. Core Expertise - detect-secrets: Scan for hardcoded secrets and credentials - Pre-commit Hooks: Automated security validation before commits - Secrets Baseline: Manage false positives and legitimate secrets - Security-First Workflow: Prevent credential leaks before they happen Quick Security Scan (Recommended) Run the comprehensive security scan pipeline in one command: ``...
|
49 |
| 15076 | secret-code | ukgovernmentbeis/inspect_ai |
Secret Code Skill To complete this task, you MUST follow these exact steps: Step 1: Read the Asset Read the contents of assets/secret.txt and report what it says to the user. Step 2: Run the Script Execute the script scripts/reveal.sh to get the complete answer. IMPORTANT RULES You MUST read the asset file first You MUST run the provided script to get the answer Do NOT use any other commands besides reading the asset and running the script Do NOT try to solve the problem any other way
|
49 |
| 15077 | pptx | ailabs-393/ai-labs-claude-skills |
PPTX Skill Quick Reference Task Guide Read/analyze content python -m markitdown presentation.pptx Edit or create from template Read editing.md Create from scratch Read pptxgenjs.md Reading Content Text extraction python -m markitdown presentation.pptx Visual overview python scripts/thumbnail.py presentation.pptx Raw XML python scripts/office/unpack.py presentation.pptx unpacked/ Editing Workflow Read editing.md for full details. Analyze template with thumbnail.py Unpack → manipulate slides → ...
|
49 |
| 15078 | rule-auditor | oimiragieo/agent-studio |
Rule Auditor Skill Step 1: Identify Applicable Skills Find relevant expert skills based on the code being audited: File Type Expert Skills .ts , .tsx typescript-expert, react-expert .py python-backend-expert .go go-expert .java java-expert *.test.* testing-expert Step 2: Load Best Practices Read the relevant skill files to understand best practices: cat .claude/skills/ [ skill-name ] /SKILL.md Extract key rules and patterns to check for. Step 3: Scan Target Files Analyze the target files for vio...
|
49 |
| 15079 | personal-financial-advisor | tringo0108/z-command |
Personal Financial Advisor Comprehensive toolkit for personal finance planning, helping individuals achieve financial wellness through budgeting, debt management, savings, investing, and goal-based planning. When to Use This Skill Creating personal budgets and spending plans Developing debt payoff strategies Planning emergency funds and savings goals Retirement planning and projections Investment portfolio allocation for individuals Tax optimization for personal finances Insurance needs assessme...
|
49 |
| 15080 | 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...
|
49 |
| 15081 | frontend-design | project-n-e-k-o/n.e.k.o |
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
|
49 |
| 15082 | astro-developer | withastro/astro |
Astro Developer Skill Context-loading skill for AI agents and developers working in the Astro monorepo. Loads relevant documentation based on your task. Quick Decision Matrix What are you doing? → Read these files: Task Primary Docs Supporting Docs Adding a core feature architecture.md , constraints.md testing.md Fixing a bug debugging.md architecture.md Writing/fixing tests testing.md constraints.md Creating an integration Explore packages/integrations/ for examples testing.md Understanding arc...
|
49 |
| 15083 | entity extractor | eddiebe147/claude-settings |
Entity Extractor The Entity Extractor skill guides you through implementing named entity recognition (NER) systems that identify and classify entities in text. From people and organizations to domain-specific entities like products, medical terms, or financial instruments, this skill covers extraction approaches from simple pattern matching to advanced neural models. Entity extraction is a foundational NLP task that powers applications from search engines to knowledge graphs. Getting it right re...
|
49 |
| 15084 | jira-syntax | netresearch/jira-skill |
Jira Syntax Validation Skill Provides Jira wiki markup syntax validation, templates, and formatting guidance. For API operations, use the jira-communication skill. Quick Syntax Reference Jira Syntax Purpose NOT this (Markdown) h2. Title Heading Title *bold* Bold bold _italic_ Italic *italic* {{code}} Inline code `code` {code:java}...{code} Code block java ``` [text|url] Link [text](url) [PROJ-123] Issue link - [~username] User mention @username * item Bullet list - item item Numbered list 1. i...
|
49 |
| 15085 | clean | catlog22/claude-code-workflow |
Workflow Clean Command Overview Evidence-based intelligent cleanup command. Systematically identifies stale artifacts through mainline analysis, discovers drift, and safely removes unused sessions, documents, and dead code. Core workflow : Detect Mainline → Discover Drift → Confirm → Stage → Execute Target Cleanup Focus area : $FOCUS (or entire project if not specified) Mode : $ARGUMENTS --dry-run : Preview cleanup without executing --focus : Focus area (module or path) Execution Process Phase 0...
|
49 |
| 15086 | simplify | aaddrick/claude-desktop-debian |
You are an expert code simplification specialist focused on enhancing code clarity, consistency, and maintainability while preserving exact functionality. Your expertise lies in applying project-specific best practices to simplify and improve code without altering its behavior. You prioritize readable, explicit code over overly compact solutions. This is a balance that you have mastered as a result your years as an expert software engineer. You will analyze recently modified code and apply refi...
|
49 |
| 15087 | lit-best-practices | artmsilva/lit-best-practices |
Lit Web Components Best Practices Best practices for building Lit web components, optimized for AI-assisted code generation and review. When to Use Reference these guidelines when: Writing new Lit web components Implementing reactive properties and state Reviewing code for performance or accessibility issues Refactoring existing Lit components Optimizing rendering and update cycles Rule Categories Category Rules Focus 1. Component Structure 4 rules Properties, state, TypeScript 2. Rendering ...
|
49 |
| 15088 | simple-math | cisco-ai-defense/skill-scanner |
Simple Math Skill Performs basic arithmetic operations safely. Features Addition, subtraction, multiplication, division No eval() or exec() Input validation Safe implementation Usage When user requests calculations, use standard Python operators. Example User: "What's 25 + 17?" Agent: uses simple-math skill The result is 42.
|
49 |
| 15089 | linear-update | finesssee/linear-cli |
Update Issues Status linear-cli i update LIN-123 -s Done linear-cli i update LIN-123 -s "In Progress" Priority linear-cli i update LIN-123 -p 1 1=urgent, 2=high, 3=normal, 4=low Assignee linear-cli i update LIN-123 -a me linear-cli i update LIN-123 -a "John Doe" Labels linear-cli i update LIN-123 -l bug linear-cli i update LIN-123 -l bug -l urgent Due date linear-cli i update LIN-123 --due tomorrow linear-cli i update LIN-123 --due +3d Agent patterns linear-cli i update LIN-123 -s Done --...
|
49 |
| 15090 | mcp-server-manager | xiaolai/vmark |
MCP Server Manager Workflow Discover candidate servers Check project .mcp.json for existing server configs. Check ~/.claude.json for global MCP servers (Claude Code). Scan for MCP-related packages in package.json or Cargo.toml . Choose a registration target Project-local: edit .mcp.json directly. Global (Claude Code): use claude mcp add / claude mcp remove . Register the server stdio server: claude mcp add < name > -- < command > < args .. . > stdio with env: claude mcp add < name > -e KEY = VAL...
|
49 |
| 15091 | rspack-tracing | rstackjs/agent-skills |
Use this skill when you need to: - Diagnose why an Rspack build is slow. - Understand which plugins or loaders are taking the most time. - Analyze a user-provided Rspack trace file. - Guide a user to capture a performance profile. Workflow 1. Capture a Trace First, ask the user to run their build with tracing enabled. ``` Set environment variables for logging to a file RSPACK_PROFILE=TRACE RSPACK_TRACE_LAYER=logger RSPACK_TRACE_OUTPUT=./trace.json pnpm build ``` This will generate a...
|
49 |
| 15092 | run-rust-benchmarks | redisearch/redisearch |
No SKILL.md available for this skill. View on GitHub
|
49 |
| 15093 | social-media-api-best-practices | getlate-dev/social-media-api-best-practices |
Social Media API Best Practices Battle-tested patterns from scheduling 1M+ posts across 13 platforms. 1. Authentication Patterns OAuth 2.0 Platforms Instagram (Meta Graph API) Two-step token exchange: short-lived (1 hour) → long-lived (60 days) Use auth_type: 'rerequest' to force permission re-prompts Exchange endpoint: ig_exchange_token grant type Scopes: instagram_business_basic, instagram_business_content_publish, instagram_business_manage_messages, instagram_business_manage_comments, ins...
|
49 |
| 15094 | git-worktree | kimny1143/claude-code-template |
This skill provides a unified interface for managing Git worktrees across your development workflow. Whether you're reviewing PRs in isolation or working on features in parallel, this skill handles all the complexity. What This Skill Does - Create worktrees from main branch with clear branch names - List worktrees with current status - Switch between worktrees for parallel work - Clean up completed worktrees automatically - Interactive confirmations at each step - Automatic .gitignore ma...
|
49 |
| 15095 | pptx | bbeierle12/skill-mcp-claude |
PPTX Skill Quick Reference Task Guide Read/analyze content python -m markitdown presentation.pptx Edit or create from template Read editing.md Create from scratch Read pptxgenjs.md Reading Content Text extraction python -m markitdown presentation.pptx Visual overview python scripts/thumbnail.py presentation.pptx Raw XML python scripts/office/unpack.py presentation.pptx unpacked/ Editing Workflow Read editing.md for full details. Analyze template with thumbnail.py Unpack → manipulate slides → ...
|
49 |
| 15096 | seo-audit | openclaudia/openclaudia-skills |
SEO Audit You are an expert in search engine optimization. Your goal is to identify SEO issues and provide actionable recommendations to improve organic search performance. Initial Assessment 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. Before auditing, understand: Site ...
|
49 |
| 15097 | review-scoring | mgd34msu/goodvibes-plugin |
Resources scripts/ validate-review.sh validate-fix.sh references/ scoring-examples.md Review Scoring Protocol This skill defines the precise scoring rubric and review format used in Work-Review-Fix-Check (WRFC) loops. It ensures consistent, quantified evaluation of code quality and provides deterministic validation of review outputs. Scoring Rubric (1-10 Scale) Every review evaluates code across 10 dimensions. Each dimension receives a score from 1 to 10, where: 1-3 : Critical deficiencies, fund...
|
49 |
| 15098 | coding-rules | kimny1143/claude-code-template |
coding-rules - コーディング規約 プロジェクト共通のコーディングルール。 1. TypeScript 型定義 // ✅ 明示的な型定義 interface User { id : string ; email : string ; name : string ; createdAt : Date ; } // ✅ 型推論が明確な場合は省略OK const users = await repository . findAll ( ) ; // 戻り値の型は関数から推論 // ❌ any は使わない const data : any = response . json ( ) ; // ✅ unknown を使って安全に処理 const data : unknown = await response . json ( ) ; if ( isUser ( data ) ) { console . log ( data . email ) ; } Null/Undefined // ✅ Optional chaining const email = user ?. profile...
|
49 |
| 15099 | anti-ai-writing | cdeistopened/skill-stack |
Anti-AI Writing Engine Transform any content into authentic, human-sounding prose by eliminating AI patterns and applying proven writing fundamentals. Purpose This skill serves as the core humanization engine for all written content. It detects and eliminates patterns that signal AI involvement while teaching the principles of natural, engaging writing. Core Philosophy: The best writing is invisible. Readers should feel like they're reading a real person's thoughts - not processed, filtered, or ...
|
49 |
| 15100 | slot-teams | cartridge-gg/docs |
Slot Teams Teams are the billing entity in Slot. They own credits used to pay for deployments, paymasters, RPC requests, and other services. Credit System Prepaid credits, deducted automatically 1 CREDIT = $0.01 USD Daily billing cycle (minimum 1-day charge) Fund via credit card or cryptocurrency Creating a Team slot teams < team-name > create --email < email > [ --address "address" ] [ --tax-id "id" ] A team is also auto-created when you create a deployment with a new project name. Funding slot...
|
49 |