一键导入
your-skill-name
Brief description of what this skill does (1-2 sentences). Include key triggering words that help agents recognize when to use this skill.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Brief description of what this skill does (1-2 sentences). Include key triggering words that help agents recognize when to use this skill.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Integration with AppFlowy project management tool for task tracking, database management, and workspace organization. Use when working with AppFlowy, managing project tasks, creating databases, organizing workspaces, syncing agent work with project tracking, syncing documentation or tasks to AppFlowy, setting up automated sync workflows, or when the user mentions AppFlowy, project tracking, task management, or sync automation. Includes generic sync script that works with ANY project. Supports rich text formatting (bold, italic, code, links, strikethrough) and git pushsync workflow for automated syncing.
Create hierarchical project plans optimized for solo agentic development. Use when planning projects, phases, or tasks that Claude will execute. Produces Claude-executable plans with verification criteria, not enterprise documentation. Handles briefs, roadmaps, phase plans, and context handoffs.
Guides standardized REST API endpoint creation following team conventions. Use when creating new API endpoints.
Provides comprehensive code review checklist following team standards. Use when reviewing pull requests or preparing code for review.
Safe database migration procedures with backward compatibility, backups, and rollback strategies. Use when creating, modifying, or dropping database schemas. Covers migration creation, testing, execution, and rollback.
Guides production deployment workflow with safety checks and rollback procedures. Use when deploying applications to staging or production environments.
| name | your-skill-name |
| description | Brief description of what this skill does (1-2 sentences). Include key triggering words that help agents recognize when to use this skill. |
| version | 1.0.0 |
| author | Your Name/Team |
| category | custom |
| token_estimate | ~500 |
<when_to_use> Use this skill when:
Do NOT use this skill when:
If there are no prerequisites, remove this section.
[Detailed instructions for the first step. Use imperative form (commands).]Example:
# Command to verify setup
tool --version
# Command to check prerequisites
tool check --all
[Instructions for the primary workflow.]
Important Considerations:
Example:
# Example code showing this step
def main_process():
"""Core implementation of the skill's main action."""
# Step-by-step implementation
result = perform_action()
validate(result)
return result
[Instructions for confirming success.]
Verify the process completed successfully by:
Expected Outcomes:
Example:
# Validation commands
tool verify --output
tool status --check-all
[Any additional steps needed after main process.]
Optional: Remove this step if not applicable.
<best_practices> [Explanation of why this is important and how to apply it.]
Example:
// Code demonstrating this best practice
[Another key principle with clear guidance.]
Rationale: [Why this matters] Implementation: [How to do it]
[Additional recommendation with context.] **[High/Medium/Low]**: [Explanation of how much flexibility agents have]Optimization Strategy:
</best_practices>
<common_pitfalls> What Happens: [Description of the problem]
Why It Happens: [Root cause]
How to Avoid:
Recovery: [How to fix if it happens]
**What Happens:** [Description]How to Avoid: [Prevention strategy]
Warning Signs: [Early indicators to watch for] </common_pitfalls>
**Context:** [When you'd use this approach]Situation: [Specific setup or starting conditions]
Steps:
Implementation:
# Complete, runnable example
def example_basic():
"""Demonstrate basic usage of this skill."""
# Step 1: Setup
config = load_config()
# Step 2: Execute
result = execute_action(config)
# Step 3: Validate
assert verify(result), "Validation failed"
return result
Expected Output:
[Sample output showing what success looks like]
Outcome: [What was accomplished and why it matters]
**Context:** [More sophisticated use case]Situation: [Specific setup with additional complexity]
Challenges:
Steps:
Implementation:
# More sophisticated example
class AdvancedExample:
"""Demonstrate advanced usage with error handling."""
def __init__(self, config):
self.config = config
self.state = {}
def execute(self):
"""Main execution with comprehensive error handling."""
try:
# Step 1: Preparation
self._prepare()
# Step 2: Core process
result = self._process()
# Step 3: Validation
self._validate(result)
return result
except SpecificError as e:
# Handle known error
self._handle_error(e)
except Exception as e:
# Handle unexpected error
self._handle_unexpected_error(e)
def _prepare(self):
"""Preparation logic."""
pass
def _process(self):
"""Core processing logic."""
pass
def _validate(self, result):
"""Validation logic."""
pass
Expected Output:
[Sample output for advanced scenario]
Outcome: [What was accomplished, including handling of complexity]
**Context:** [Unusual but important situation]Special Considerations:
Implementation:
# Example handling edge case
def handle_edge_case():
"""Demonstrate how to handle special scenarios."""
# Implementation details
pass
Outcome: [Result and lessons learned]
<common_patterns> When to Use: [Triggering conditions for this pattern]
Approach:
Example:
// Code demonstrating this pattern
def pattern_one():
"""Implementation of common pattern 1."""
pass
**When to Use:** [Triggering conditions]
Key Characteristics:
Example:
// Code demonstrating this pattern
**Symptoms:** [How to recognize this problem]
- [Observable indicator 1]
- [Observable indicator 2]
Cause: [Why this happens]
Solution:
Prevention: [How to avoid this in future]
**Symptoms:** [Observable indicators]Diagnostic Steps:
Solution: [Clear resolution steps]
Alternative Approaches: [If primary solution doesn't work]
**Symptoms:** [How it manifests]Quick Fix: [Immediate solution]
Root Cause Resolution: [Permanent fix]
<related_skills> This skill works well with:
This skill may conflict with:
<integration_notes> [How this skill integrates with common tools or workflows]
[How to combine this skill with others effectively] **Always Load:** - [Essential context that should always be present]Load When Needed:
</integration_notes>
- [Known limitation 1] - [Known limitation 2] - [Planned improvement 1] - [Planned improvement 2] - [Assumption about environment or setup] - [Assumption about user knowledge]<version_history> Version 1.0.0 (YYYY-MM-DD)
Version 1.1.0 (YYYY-MM-DD)
<additional_resources> External documentation and references:
<template_usage_notes> REMOVE THIS SECTION when creating your actual skill. This guidance is only for template users.
1. **Concise and Actionable**: Every sentence should provide value. Remove fluff.Imperative Form: Write as commands ("Do this", "Check that") not descriptions.
Progressive Disclosure:
Concrete Examples: One good example > 10 paragraphs of explanation.
Appropriate Specificity:
Test with Real Tasks: Validate effectiveness with actual agent workflows.
Optional Sections (remove if not applicable):
Customize Based on Skill Type:
For Workflow/Process Skills:
For Technical/Implementation Skills:
For Domain/Knowledge Skills:
Good luck! </template_usage_notes>