Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计提醒

faion-claude-codefaion Claude 代码

Agent Skill

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

总安装

326

周安装

14

GitHub Stars

2

下载量

114
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:faion-claude-code(faion Claude 代码)
来源仓库:https://github.com/faionfaion/faion-network
仓库路径:skills/faion-claude-code
安装命令:
npx skills add https://github.com/faionfaion/faion-network --skill faion-claude-code
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/faionfaion/faion-network --skill faion-claude-code

简介

faion-claude-code 用于配置和管理 Claude Code 环境,包括技能、代理、命令和集成设置。

  • 适用于需要自定义 Claude Code 行为或在 IDE 中扩展功能的开发场景。
  • 可帮助创建技能模板、定义代理角色并管理 MCP 服务器连接。
  • 安装命令:npx skills add https://github.com/faionfaion/faion-network --skill faion-claude-code。
  • 操作前请检查 ~/.claude 目录权限,避免误改关键配置文件。

SKILL.md

Entry point: /faion-net — invoke this skill for automatic routing to the appropriate domain.

Claude Code Configuration Skill

Communication: User's language. Config/code: English.

Purpose

Orchestrate Claude Code customization and configuration:

  • Create/edit skills, agents, commands, hooks
  • Configure settings, permissions, IDE integrations
  • Setup MCP servers and plugins
  • Enforce naming conventions

Context Discovery

Auto-Investigation

SignalCheck ForWhy
~/.claude/skills/Existing skills, naming patternsSkill framework adoption
~/.claude/agents/Agent definitionsAgent usage patterns
~/.claude/settings.jsonHooks, MCP servers, permissionsConfiguration maturity
.claude/ (project)Project-specific customizationsLocal overrides
MCP server logsActive MCP integrationsTool ecosystem

Discovery Questions

questions:
  - question: "What are you configuring?"
    options:
      - label: "Creating skill"
        description: "Use skills.md"
      - label: "Creating agent"
        description: "Use agents.md"
      - label: "Adding command"
        description: "Use commands.md"
      - label: "Setting up hooks"
        description: "Use hooks.md"
      - label: "Installing MCP server"
        description: "Use mcp-servers.md"

  - question: "Is this global or project-specific?"
    options:
      - label: "Global (all projects)"
        description: "Use faion-* prefix, no gitignore"
      - label: "Project-specific"
        description: "Use {project}-* prefix, add to gitignore"

  - question: "Do you have Claude Code experience?"
    options:
      - label: "Expert user"
        description: "Jump to specific reference"
      - label: "Some experience"
        description: "Use quick reference + examples"
      - label: "First time setup"
        description: "Start with skills.md basics"

Quick Decision Tree

If you need...UseFile
Create domain skill (role-based)skills.md~/.claude/skills/faion-{role}/SKILL.md
Create project skill (local)skills.md{project}/.claude/{project}-*/SKILL.md
Create task executor agentagents.md~/.claude/agents/faion-*-agent.md
Create specialized agentagents.md~/.claude/agents/faion-*-agent.md
Add slash commandcommands.md~/.claude/commands/*.md or SKILL.md
Add validation hookhooks.mdPreToolUse trigger → settings.json
Add logging hookhooks.mdPostToolUse trigger → settings.json
Add alert on notificationhooks.mdNotification trigger → settings.json
Develop MCP servermcp-basics.mdTypeScript/Python template
Install MCP servermcp-servers.mdclaude mcp add <name>
Connect external toolsmcp-basics.mdMCP server development
Database access (SQL)mcp-servers.mdPostgreSQL/SQLite MCP
Configure global settingsHandle directly~/.claude/settings.json
Configure project settingsHandle directly.claude/settings.json

Configuration Locations:

ConfigLocationScope
Global skills~/.claude/skills/All projects
Project skills{project}/.claude/Single project
Agents~/.claude/agents/All projects
Hooks~/.claude/settings.jsonGlobal
MCP~/.claude/settings.jsonGlobal

References

Detailed technical context for specialized areas:

ReferenceContentLines
skills.mdSKILL.md creation, frontmatter, tools, patterns~340
agents.mdAgent files, tools, prompts, patterns~330
commands.mdSlash commands, arguments, syntax~250
hooks.mdLifecycle hooks, events, templates~420
mcp-basics.mdMCP server development, templates, config~370
mcp-servers.mdMCP server catalog (40+ servers)~250

Total: ~1,960 lines of technical reference


Routing

User Request → Detect Type → Load Reference
Request ContainsLoad Reference
"skill", "SKILL.md"skills.md
"agent", "subagent"agents.md
"command", "/cmd", "slash"commands.md
"hook", "PreToolUse", "PostToolUse"hooks.md
"create mcp", "develop mcp", "mcp template"mcp-basics.md
"install mcp", "mcp catalog", "mcp server list"mcp-servers.md
"settings", "config"Handle directly (below)

Naming Conventions

Global (Faion Network)

For shared/reusable components in faion-network:

ComponentPatternExample
Skill (orchestrator)faion-netfaion-net
Skill (role-based)faion-{role}faion-software-developer, faion-ux-ui-designer
Skill (process)faion-{process}faion-sdd, faion-feature-executor
Agentfaion-{name}-agentfaion-task-YOLO-executor-opus-agent
Hookfaion-{event}-{purpose}-hook.{ext}faion-pre-bash-security-hook.py
Command{verb} (no prefix)commit, deploy

Note: Skills use role/process naming without -skill suffix. Name is self-explanatory.

Project-Specific (Local)

For project-specific components that should NOT be committed to faion-network:

ComponentPatternExample
Skill{project}-{name}myapp-auth, myapp-deploy
Agent{project}-{name}-agentmyapp-deploy-agent
Hook{project}-{event}-{purpose}-hook.{ext}myapp-pre-bash-lint-hook.sh
Command{project}-{action}myapp-build, myapp-deploy

Setup for project-specific components:

  1. Add to.gitignore (same level as.claude/):
echo ".claude/skills/{project}-*/" >> .gitignore
echo ".claude/agents/{project}-*" >> .gitignore
echo ".claude/commands/{project}-*" >> .gitignore
echo ".claude/scripts/hooks/{project}-*" >> .gitignore
  1. Add attribution footer:
---
*Created with [faion.net](https://faion.net) framework*

Rules Summary

ScopePrefixSuffixGitignore
Globalfaion--skill/-agent/-hookNo
Project{project}--skill/-agent/-hookYes

Directory Structure

~/.claude/
├── settings.json           # Global settings
├── CLAUDE.md              # Global instructions
├── agents/
│   └── faion-*-agent.md   # Agent definitions
├── skills/
│   └── faion-*-skill/
│       ├── SKILL.md       # Skill index
│       └──     # Detailed content
├── commands/
│   └── *.md               # Slash commands
└── scripts/
    └── hooks/             # Hook scripts

Settings Configuration

settings.json Structure

{
  "permissions": {
    "allow": ["Read", "Glob", "Grep"],
    "deny": ["Bash(rm -rf:*)"]
  },
  "hooks": {
    "PreToolUse": [...],
    "PostToolUse": [...],
    "SessionStart": [...]
  },
  "env": {
    "CUSTOM_VAR": "value"
  },
  "mcpServers": {
    "server-name": {
      "command": "npx",
      "args": ["-y", "package-name"],
      "env": { "API_KEY": "..." }
    }
  }
}

Permission Modes

ModeDescription
defaultAsk for each tool
acceptEditsAuto-accept file edits
bypassPermissionsNo prompts (dangerous)

Configuration Locations

LocationScope
~/.claude/settings.jsonGlobal (all projects)
.claude/settings.jsonProject (committed)
.claude/settings.local.jsonLocal project (gitignored)

Quick Reference

Create Skill

mkdir -p ~/.claude/skills/faion-my-skill
# Write SKILL.md with frontmatter

Create Agent

# Write ~/.claude/agents/faion-my-agent.md
# Include frontmatter: name, description, tools, model

Create Command

# Write ~/.claude/commands/my-cmd.md
# Include frontmatter: description, argument-hint, allowed-tools

Create Hook

# Write ~/.claude/scripts/hooks/faion-pre-bash-my-hook.py
# Configure in settings.json hooks section

Install MCP Server

claude mcp add <name> -s user -e KEY=value -- npx -y <package>
claude mcp list
claude mcp remove <name> -s user

IDE Integrations

VS Code

// .vscode/settings.json
{
  "claude.enabled": true,
  "claude.autoComplete": true
}

JetBrains

Install Claude plugin from marketplace.


Best Practices

Skills:

  • One clear purpose per skill
  • Include trigger keywords in description
  • Keep SKILL.md under 300 lines (use)
  • Third-person descriptions only

Agents:

  • Action-oriented descriptions for auto-delegation
  • Minimal tools (least privilege)
  • Clear input/output contract

Commands:

  • Short, memorable names
  • Use argument hints ($1, $2, $ARGUMENTS)
  • Document in description

Hooks:

  • Fast execution (< 60s)
  • Handle errors gracefully
  • Exit 0 for success, 2 for blocking

Error Handling

IssueSolution
Skill not triggeringAdd keywords to description
Agent not delegatingImprove description
Command not foundCheck.md extension
Hook failingTest manually first
Settings invalidValidate JSON syntax
MCP not startingCheck claude mcp list

Documentation


*faion-claude-code-skill v2.0.0* *Claude Code configuration orchestrator with *

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

展示第三方安全扫描或审计结果

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

平台分布

github-copilot

28.03%
按下载量换算32

Claude Code

22.7%
按下载量换算26

windsurf

16.45%
按下载量换算19

trae

12.45%
按下载量换算14

OpenCode

8.1%
按下载量换算9

Codex

3.46%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills