文档生成

生成并维护文档

显示 1321-1344 / 共 5320 个技能
Gentleman-Programming

jira-task

Gentleman-Programming

Creates Jira tasks following Prowler's standard format. Trigger: When user asks to create a Jira task, ticket, or issue.

自动化 632 7个月前
nicknisi

conference-talk-builder

nicknisi

Create conference talk outlines and iA Presenter markdown slides using the Story Circle narrative framework. Use when the user wants to structure a tech talk, create presentation slides, or needs help organizing talk ideas into a story-driven format.

代码生成 114 10个月前
SpillwaveSolutions

plantuml

SpillwaveSolutions

Generate PlantUML diagrams from text descriptions and convert them to PNG/SVG images. Use when asked to "create a diagram", "generate PlantUML", "convert puml to image", "extract diagrams from markdown", or "prepare markdown for Confluence". Supports all PlantUML diagram types including UML (sequence, class, activity, state, component, deployment, use case, object, timing) and non-UML (ER diagrams, Gantt charts, JSON/YAML visualization, mindmaps, WBS, network diagrams, wireframes, and more).

文档生成 51 8个月前
stellar

stellar-dev

stellar

End-to-end Stellar development playbook. Covers Soroban smart contracts (Rust SDK), Stellar CLI, JavaScript/Python/Go SDKs for client apps, Stellar RPC (preferred) and Horizon API (legacy), Stellar Assets vs Soroban tokens (SAC bridge), wallet integration (Freighter, Stellar Wallets Kit), smart accounts with passkeys, status-sensitive zero-knowledge proof patterns, testing strategies, security patterns, and common pitfalls. Optimized for payments, asset tokenization, DeFi, privacy-aware applications, and financial applications. Use when building on Stellar, Soroban, or working with XLM, Stellar Assets, trustlines, anchors, SEPs, ZK proofs, or the Stellar RPC/Horizon APIs.

API 开发 51 7个月前
Logos-Liber

api-design

Logos-Liber

API design guidelines for the fullstack-dev team

API 开发 21 7个月前
SimHacker

format-design

SimHacker

"How to design formats that succeed — simplicity, community, timing"

数据处理 50 7个月前
SimHacker

markdown

SimHacker

"Plain text formatting that's readable raw AND rendered"

认证鉴权 50 7个月前
jykim

obsidian-markdown-structure

jykim

Validate and enforce markdown document structure including frontmatter positioning, heading hierarchy, and content organization. Use when creating or validating markdown files.

文档生成 50 9个月前
jykim

obsidian-mermaid

jykim

Create Obsidian-compatible Mermaid diagrams. Prefer square layouts (TB + subgraph LR), avoid markdown in labels. Use when creating flowcharts, sequence diagrams, or any Mermaid diagrams in markdown files.

API 开发 50 8个月前
jykim

Video Cleaning Skill

jykim

Ready to clean your videos? Start with the basic workflow and adjust settings as needed. Remember: always preview first, and keep your originals safe!

CLI 工具 50 7个月前
SimHacker

Abstract — Protocol Specification

SimHacker

```

代码生成 50 7个月前
jykim

obsidian-links

jykim

Format and validate Obsidian wiki links with proper filename, section, and folder conventions. Verify links exist before creation and fix broken links. Use when creating or checking wiki links in markdown files.

文档生成 50 9个月前
travisjneuman

codebase-documenter

travisjneuman

This skill should be used when writing documentation for codebases, including README files, architecture documentation, code comments, and API documentation. Use this skill when users request help documenting their code, creating getting-started guides, explaining project structure, or making codebases more accessible to new developers. The skill provides templates, best practices, and structured approaches for creating clear, beginner-friendly documentation.

API 开发 95 7个月前
markus41

Home Assistant Core Skill

markus41

Handle unavailable states gracefully

API 开发 20 8个月前
markus41

harness-mcp

markus41

Harness MCP (Model Context Protocol) server integration for AI-powered CD operations, pipeline management, Git repositories, pull requests, code review comments, and bidirectional Jira synchronization

API 开发 20 8个月前
markus41

FastAPI Patterns

markus41

This skill should be used when the user asks to "create a FastAPI endpoint", "add async route", "implement dependency injection", "create middleware", "handle exceptions", "structure FastAPI project", or mentions FastAPI patterns, routers, or API design. Provides comprehensive FastAPI development patterns with async best practices.

API 开发 20 8个月前
markus41

harness-platform

markus41

Harness Platform administration including delegates, RBAC, connectors, secrets, templates, policy as code (OPA), user management, audit logs, and governance

API 开发 20 8个月前
markus41

task-details

markus41

Enriches Jira tasks with comprehensive context, requirements analysis, and technical details through intelligent extraction, dependency mapping, and historical analysis

代码评审 20 8个月前
claude-dev-suite

axios

claude-dev-suite

Axios - promise-based HTTP client for browser and Node.js USE WHEN: user mentions "Axios", "HTTP requests", "API calls", "interceptors", "Axios instance", asks about "how to make HTTP calls", "configure Axios", "add auth header", "handle HTTP errors" DO NOT USE FOR: Fetch API - use http-clients instead; ky/ofetch - use http-clients instead; GraphQL clients - use graphql-codegen instead; tRPC - use trpc instead

API 开发 29 7个月前
claude-dev-suite

aspnet-minimal-api

claude-dev-suite

ASP.NET Core Minimal API endpoints, route groups, filters, and typed results. Covers modern .NET 8+ endpoint patterns. USE WHEN: user mentions "Minimal API", "MapGet", "MapPost", "route groups", "endpoint filters", ".NET minimal", "lambda endpoints" DO NOT USE FOR: Controller-based APIs (use aspnet-core), Express.js (use express), FastAPI (use fastapi)

API 开发 29 7个月前
claude-dev-suite

rest-api

claude-dev-suite

REST API design principles. Covers resources, methods, and status codes. Use when designing or reviewing REST APIs. USE WHEN: user mentions "REST API", "RESTful", "HTTP methods", "status codes", "resource naming", "API endpoints", "pagination", "versioning", asks about "how to design REST API", "REST best practices", "API documentation", "HTTP verbs" DO NOT USE FOR: GraphQL APIs - use graphql instead; tRPC - use trpc instead; OpenAPI specs - use openapi instead; Spring Boot REST - combine with springdoc-openapi

API 开发 29 7个月前
claude-dev-suite

swagger-dotnet

claude-dev-suite

Swashbuckle and NSwag for ASP.NET Core API documentation. Covers XML comments, operation filters, and OpenAPI customization. USE WHEN: user mentions "Swagger", "Swashbuckle", "NSwag", ".NET OpenAPI", "API documentation", "Swagger UI", ".NET API docs" DO NOT USE FOR: Springdoc OpenAPI - use springdoc-openapi, generic OpenAPI spec - use openapi

API 开发 29 7个月前
claude-dev-suite

http-clients

claude-dev-suite

HTTP clients for frontend and Node.js. Covers Axios, Fetch API, ky, and ofetch. Includes interceptors, error handling, retry logic, and auth token management. Use for configuring API clients and HTTP communication. USE WHEN: user mentions "HTTP client", "Fetch API", "ky", "ofetch", "HTTP wrapper", "retry logic", "token refresh", asks about "which HTTP client to use", "HTTP request library", "API client setup", "request interceptors" DO NOT USE FOR: Axios-specific questions - use axios instead; GraphQL - use graphql-codegen instead; tRPC - use trpc instead; WebSocket connections

API 开发 29 7个月前
Dwsy

models-config

Dwsy

Model configuration editor for ~/.pi/agent/models.json with multi-protocol curl testing support.

API 开发 22 7个月前