Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

canifi-skill-generatorCanifi 技能生成器

Agent Skill

canifi-skill-generator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,165

周安装

93

GitHub Stars

公开资料未说明

下载量

759
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:canifi-skill-generator(Canifi 技能生成器)
来源仓库:https://github.com/andrejones92/canifi-life-os
仓库路径:skills/canifi-skill-generator
安装命令:
npx skills add andrejones92/canifi-life-os --skill "canifi-skill-generator"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add andrejones92/canifi-life-os --skill "canifi-skill-generator"

简介

canifi-skill-generator 用于发现并安装 AI 代理的技能,支持自动生成技能模板。

  • 适用于开发者快速创建新技能,提升开发效率。
  • 安装命令为 npx skills add andrejones92/canifi-life-os --skill "canifi-skill-generator"。
  • 使用前应确认是否生成临时文件或修改路径,确保权限可控。
  • 当前介绍未说明生成规则,建议查阅原始文档了解输入输出格式。

SKILL.md

name
canifi-skill-generator
description
Self-evolving skill that enables Canifi to create, install, and manage new skills autonomously
category
development
version
1.0.0
author
Canifi LifeOS
required
true

Canifi Skill Generator

Overview

The Skill Generator is a meta-skill that enables Canifi to create new skills for itself and automatically install them to the global skills directory. This transforms Canifi from a static assistant into a self-evolving system that can expand its own capabilities on demand.

Why This Skill is Required:

  • Enables Canifi to learn new workflows without manual skill creation
  • Allows real-time capability expansion during conversations
  • Creates a feedback loop where Canifi improves itself over time
  • Reduces dependency on pre-built skills for niche use cases

Privacy & Authentication

Your credentials, your choice. Canifi LifeOS respects your privacy.

Option 1: Manual Browser Login (Recommended)

If you prefer not to share credentials with Claude Code:

  1. Complete the Browser Automation Setup using CDP mode
  2. Login to the service manually in the Playwright-controlled Chrome window
  3. Claude will use your authenticated session without ever seeing your password

Option 2: Environment Variables

If you're comfortable sharing credentials, you can store them locally:

canifi-env set SERVICE_EMAIL "your-email"
canifi-env set SERVICE_PASSWORD "your-password"

Note: Credentials stored in canifi-env are only accessible locally on your machine and are never transmitted.

Global Skills Directory

Skills are installed to: ~/.claude/skills/

Each skill lives in its own directory:

~/.claude/skills/
├── canifi/
│   └── SKILL.md
├── canifi-skill-generator/
│   └── SKILL.md
├── my-new-skill/
│   └── SKILL.md
└── ...

Capabilities

1. Create New Skills on Demand

When a user requests a capability that doesn't exist, or when Canifi identifies a repeated pattern that could be automated:

User: "I need to interact with Airtable regularly"
Canifi: "I don't have an Airtable skill yet. Would you like me to create one?"
User: "Yes, please"
Canifi: [Creates and installs airtable skill]

2. Auto-Generate Skills from Patterns

When Canifi notices it's performing the same complex workflow repeatedly:

Canifi: "I've noticed we've done this Slack → Notion workflow 5 times.
        Should I create a skill for this so it's faster next time?"

3. Modify Existing Skills

Update skills based on user feedback or changed requirements:

User: "The github skill should also support GitLab"
Canifi: [Updates the skill to support both platforms]

4. Research-Driven Skill Creation

For unfamiliar services, Canifi can:

  1. Research the service's API/documentation
  2. Identify common use cases
  3. Generate a comprehensive skill
  4. Test basic functionality
  5. Install and activate

Skill Template

When generating a new skill, use this template structure:

---
name: {skill-id}
description: {One-line description}
category: {category}
version: 1.0.0
author: Canifi LifeOS (Auto-Generated)
---

# {Skill Name}

## Overview

{2-3 sentence description of what this skill does and why it's useful}

---

## Privacy & Authentication

**Your credentials, your choice.** Canifi LifeOS respects your privacy.

### Option 1: Manual Browser Login (Recommended)
If you prefer not to share credentials with Claude Code:
1. Complete the [Browser Automation Setup](/setup/automation) using CDP mode
2. Login to {SERVICE_NAME} manually in the Playwright-controlled Chrome window
3. Claude will use your authenticated session without ever seeing your password

### Option 2: Environment Variables
If you're comfortable sharing credentials:

canifi-env set {SERVICE}_EMAIL "your-email" canifi-env set {SERVICE}_PASSWORD "your-password"

OR for API-based services:

canifi-env set {SERVICE}_API_KEY "your-api-key"


**Note**: Credentials stored in canifi-env are only accessible locally on your machine.

## Setup

{Required setup steps, environment variables, API keys, etc.}

## Capabilities

{List of what this skill enables}

## Usage Examples

{Common use case examples}

## Workflow

{Step-by-step workflow when using this skill}

## Troubleshooting

{Common issues and solutions}

Skill Generation Workflow

Step 1: Identify Need

Triggers for skill creation:

  • User explicitly requests a new capability
  • User asks about a service Canifi doesn't have a skill for
  • Canifi identifies a repeated manual workflow
  • User shares API documentation or service details

Step 2: Research (if needed)

For unfamiliar services:

  1. Use Gemini Deep Research via Playwright MCP
  2. Find official API documentation
  3. Identify authentication methods
  4. Discover common use cases
  5. Note any rate limits or restrictions

Step 3: Generate Skill Content

Create the SKILL.md file with:

  • Accurate metadata (name, description, category)
  • Clear setup instructions
  • Privacy & Authentication section (REQUIRED)
  • Comprehensive capabilities list
  • Practical usage examples
  • Troubleshooting guidance

Step 4: Install Skill

# Create skill directory
mkdir -p ~/.claude/skills/{skill-id}

# Write SKILL.md
cat > ~/.claude/skills/{skill-id}/SKILL.md << 'EOF'
{skill content}
EOF

Step 5: Verify Installation

# Check skill exists
ls -la ~/.claude/skills/{skill-id}/

# Verify content
cat ~/.claude/skills/{skill-id}/SKILL.md

Step 6: Confirm to User

Skill "{skill-name}" has been created and installed.

Location: ~/.claude/skills/{skill-id}/SKILL.md
Category: {category}

You can now use this skill by {activation instructions}.

Would you like me to demonstrate it?

Category Reference

Use these categories when generating skills:

CategoryDescriptionExamples
productivityTask management, notes, organizationNotion, Todoist, Obsidian
communicationMessaging, email, socialSlack, Discord, Gmail
developmentCode, CI/CD, repositoriesGitHub, GitLab, Vercel
automationWorkflows, integrationsZapier, Make, n8n
dataDatabases, analytics, storageAirtable, Supabase, S3
aiAI services, ML platformsOpenAI, Anthropic, HuggingFace
financeBanking, payments, cryptoStripe, Plaid, Coinbase
mediaImages, video, audioFigma, YouTube, Spotify
healthFitness, wellness, medicalApple Health, Oura, Whoop
smart-homeIoT, home automationHomeKit, SmartThings, IFTTT
travelBooking, maps, transportGoogle Maps, Uber, Airbnb
educationLearning, courses, researchCoursera, Anki, Zotero
shoppingE-commerce, deals, inventoryAmazon, Shopify, eBay
gamingGames, streaming, communitiesSteam, Twitch, Discord
securityAuth, passwords, privacy1Password, Authy, VPNs

Auto-Generation Triggers

Canifi should proactively offer to create skills when:

Explicit Requests

  • "Can you help me with [Service]?"
  • "I need to integrate [Platform]"
  • "How do I automate [Workflow]?"

Implicit Patterns

  • User mentions a service 3+ times in conversation
  • User describes a multi-step workflow manually
  • User asks "Is there a skill for...?"

Capability Gaps

  • When Canifi says "I don't have direct access to..."
  • When a task requires manual user intervention
  • When existing skills don't cover a use case

Example: Creating a Skill

User Request

"I want Canifi to help me manage my Todoist tasks"

Canifi Response

I don't have a Todoist skill yet. Let me create one for you.

[Researching Todoist API and best practices...]
[Generating skill content...]
[Installing to ~/.claude/skills/todoist/]

Done! I've created and installed the Todoist skill.

**Capabilities:**
- List tasks and projects
- Create new tasks with due dates
- Complete/uncomplete tasks
- Organize tasks into projects
- Set priorities and labels

**Setup Required:**
You'll need to get a Todoist API token from:
https://todoist.com/app/settings/integrations/developer

Then set it with:

canifi-env set TODOIST_API_KEY "your-token-here"


Would you like me to demonstrate by listing your current tasks?

Skill Quality Guidelines

When generating skills, ensure:

1. Completeness

  • All sections from template are included
  • Privacy & Authentication section is ALWAYS present
  • Setup steps are clear and actionable
  • Examples cover common use cases

2. Accuracy

  • API endpoints and methods are correct
  • Authentication flows match service requirements
  • Rate limits and restrictions are noted
  • Error handling is addressed

3. Usability

  • Instructions are beginner-friendly
  • Commands can be copy-pasted
  • Examples show expected outputs
  • Troubleshooting covers common issues

4. Safety

  • Never hardcode credentials
  • Always use environment variables
  • Include privacy warnings where appropriate
  • Note any data handling considerations

Managing Installed Skills

List All Skills

ls ~/.claude/skills/

View Skill Content

cat ~/.claude/skills/{skill-id}/SKILL.md

Update a Skill

# Edit directly or regenerate
cat > ~/.claude/skills/{skill-id}/SKILL.md << 'EOF'
{updated content}
EOF

Remove a Skill

rm -rf ~/.claude/skills/{skill-id}

Troubleshooting

Skill Not Recognized

  • Verify the skill directory exists: ls ~/.claude/skills/{skill-id}/
  • Check SKILL.md has correct frontmatter with name field
  • Restart Claude Code to reload skills

Permission Errors

  • Ensure write access: chmod -R u+w ~/.claude/skills/
  • Check directory ownership: ls -la ~/.claude/

Skill Not Working

  • Verify all required environment variables are set
  • Check service API is accessible
  • Review troubleshooting section of the specific skill

Universal Rules for Generated Skills

  1. Privacy First - Always include Privacy & Authentication section
  2. Never Hardcode - All credentials use environment variables
  3. Clear Setup - Users should be able to follow setup without confusion
  4. Practical Examples - Show real use cases, not abstract concepts
  5. Error Guidance - Include troubleshooting for common issues
  6. Version Track - Include version in metadata for updates
  7. Attribution - Mark auto-generated skills with author: Canifi LifeOS (Auto-Generated)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

24.78%
按下载量换算188

Gemini CLI

23.98%
按下载量换算182

OpenCode

16.2%
按下载量换算123

Antigravity

12.49%
按下载量换算95

Cursor

7.89%
按下载量换算60

Codex

3.33%
按下载量换算25

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills