Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问clear审计提醒

faion-feature-executorfaion 功能执行器

Agent Skill

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

总安装

315

周安装

13

GitHub Stars

2

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/faionfaion/faion-network --skill faion-feature-executor

简介

faion-feature-executor 按 SDD 标准执行功能开发全流程,包含质量门禁和验收验证。

  • 适用于结构化交付场景,自动加载上下文并分阶段完成任务。
  • 每次执行前需获得用户授权,避免未经确认的代码变更。
  • 安装命令:npx skills add https://github.com/faionfaion/faion-network --skill faion-feature-executor。
  • 关键操作如数据库迁移或配置修改需配合本地测试验证。

SKILL.md

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

Feature Executor Skill

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

Navigation

FileDescription
SKILL.mdThis file - overview and usage
CLAUDE.mdNavigation hub
execution-workflow.mdComplete workflow with all phases
quality-gates.mdValidation and acceptance criteria

Purpose

Execute all tasks in an SDD feature with full quality gates:

  1. Load project and feature context
  2. Ask user permission before starting YOLO execution
  3. Execute tasks sequentially via faion-task-YOLO-executor-opus-agent
  4. After each task: verify tests pass, coverage adequate, project runs
  5. After all tasks: code review cycle until no issues remain
  6. Move feature to done/

Context Discovery

Auto-Investigation

SignalCheck ForWhy
.aidocs/todo/ or in-progress/Feature folders with tasksFeatures ready for execution
constitution.mdTech stack, testing requirementsProject standards
Test suite configTesting framework, coverage toolsQuality gate setup
CI/CD pipelinesAutomated test runsIntegration readiness
Feature tasks countNumber of TASK-*.md filesExecution scope estimation

Discovery Questions

questions:
  - question: "What execution mode do you prefer?"
    options:
      - label: "YOLO (autonomous)"
        description: "Full automation, no confirmations (requires permission)"
      - label: "Interactive"
        description: "Task-by-task confirmation"
      - label: "Review-only"
        description: "Review existing implementation"

  - question: "How many tasks are in this feature?"
    options:
      - label: "1-3 tasks"
        description: "Fast sequential execution"
      - label: "4-10 tasks"
        description: "Standard execution with checkpoints"
      - label: "10+ tasks"
        description: "Consider splitting feature or batching"

  - question: "What quality gates do you need?"
    options:
      - label: "All gates (L1-L6)"
        description: "Production-ready code"
      - label: "Essential (L1-L5)"
        description: "Development quality"
      - label: "Minimal (L1-L3)"
        description: "Prototype/POC quality"

Decision Tree

If you need...UseWhy
Create tasks before executionfaion-sddNo tasks in todo/ yet
Execute single taskfaion-software-developerDirect execution faster
Execute multiple dependent tasksThis skillSequential execution with quality gates
Execute independent tasksfaion-sddParallelize via SDD
CI/CD integrationfaion-devops-engineerInfrastructure tasks
Return to orchestratorfaion-netMulti-domain coordination

Quality Modes

Quality LevelGates AppliedUse Case
HighL1-L6 (all)Production code
MediumL1-L5Feature development
LowL1-L3Prototypes/POC

Quality Gates: L1=Lint, L2=Types, L3=Unit tests, L4=Integration, L5=Code review, L6=Acceptance

Error Responses

Error TypeAction
Test failureFix tests, retry task, continue others
Build failureStop execution, fix build first
Git conflictStop execution, resolve manually
Security issueStop execution, escalate to user

CRITICAL: User Permission Required

Before launching faion-task-YOLO-executor-opus-agent, ALWAYS ask user:

⚠️ YOLO Mode Activation

About to execute {N} tasks autonomously:
- Task 1: {name}
- Task 2: {name}
...

YOLO mode means:
- No confirmations during execution
- All file edits auto-approved
- Full autonomy until completion

Proceed with YOLO execution? [Yes/No]

Use AskUserQuestion tool to get explicit permission.

Agents Used

AgentPurpose
faion-task-executor-agentExecute individual tasks
faion-code-agentCode review (review mode)
faion-test-agentTest execution and coverage analysis
faion-hallucination-checker-agentVerify task completion claims

Input

/faion-feature-executor {project} {feature}

Examples:

/faion-feature-executor cashflow-planner 01-auth
/faion-feature-executor faion-net 02-landing-page

Parameters:

  • project: Project name (containing .aidocs/ folder)
  • feature: Feature name (folder in .aidocs/{status}/)

Workflow Phases

See execution-workflow.md for complete details.

  1. Context Loading - Load constitution, spec, design, implementation plan
  2. Task Discovery - Find tasks in in-progress/ and todo/
  3. Task Execution Loop - Execute each task with validation (tests, coverage, build)
  4. Code Review Cycle - Iterate until no issues remain
  5. Finalize - Move to done/, generate summary

Quality Gates

See quality-gates.md for validation criteria.

After each task:

  • All tests pass
  • Coverage meets threshold
  • Project builds and runs

After all tasks:

  • Code review passes
  • No critical/security issues
  • No style violations

Integration

With SDD Workflow

SPEC → DESIGN → IMPL-PLAN → TASKS → [FEATURE-EXECUTOR] → DONE
                                           ↑
                                    This skill

With Other Skills

SkillIntegration
faion-sddProvides SDD context
faion-dev-django-skillDjango-specific patterns
faion-testing-skillTest generation patterns

Version History

VersionDateChanges
1.0.02026-01-18Initial release
1.1.02026-01-23Modularized documentation

*faion-feature-executor v1.1.0* *Execute features with quality gates*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

github-copilot

28.53%
按下载量换算29

Claude Code

25.1%
按下载量换算26

windsurf

18.29%
按下载量换算19

trae

14.45%
按下载量换算15

OpenCode

7.62%
按下载量换算8

Codex

3.14%
按下载量换算3

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills