Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

faion-sdd法安 SDD

Agent Skill

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

总安装

499

周安装

20

GitHub Stars

2

下载量

162
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于查找、检索和筛选相关信息,支持基于关键词、任务场景或来源线索快速定位候选结果。

  • 适用于需要结构化意图定义和规格驱动开发(SDD)流程的项目环境。
  • 通过检查 .aidocs/ 目录下的 constitution.md 等文件理解项目上下文与规范要求。
  • 安装命令:npx skills add https://github.com/faionfaion/faion-network --skill faion-sdd。
  • 使用前应确认权限范围,避免执行未经授权的代码或访问敏感系统资源。

SKILL.md

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

SDD Domain Skill (Orchestrator)

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


Philosophy

"Intent is the source of truth" - specification is the main artifact, code is just its implementation.

No Time Estimates: Use complexity levels (Low/Medium/High) and token estimates (~Xk) instead.


Context Discovery

Auto-Investigation

Check for existing SDD structure:

SignalHow to CheckWhat It Tells Us
.aidocs/Glob("**/.aidocs/")SDD structure exists
constitution.mdRead(".aidocs/constitution.md")Tech stack, standards defined
roadmap.mdRead(".aidocs/roadmap.md")Features planned
backlog/Glob("**/.aidocs/backlog/*")Features in queue
todo/Glob("**/.aidocs/todo/*")Ready features
in-progress/Glob("**/.aidocs/in-progress/*")Active work
memory/Glob("**/.aidocs/memory/*")Learning artifacts

Read existing artifacts:

  • constitution.md for constraints and standards
  • Any existing specs/designs for patterns
  • memory/patterns.md for learned patterns

Discovery Questions

Q1: SDD Phase

question: "What phase of SDD workflow are you in?"
header: "Phase"
multiSelect: false
options:
  - label: "Starting new project (need constitution)"
    description: "Bootstrap SDD structure"
  - label: "Planning a feature (spec/design)"
    description: "Write spec, design, impl-plan"
  - label: "Ready to execute (have tasks)"
    description: "Implement planned tasks"
  - label: "Reviewing/improving"
    description: "Quality gates, code review"

Routing:

  • "Starting" → constitution-guidelines, project bootstrap
  • "Planning" → Skill(faion-sdd-planning)
  • "Execute" → Skill(faion-sdd-execution) or Skill(faion-feature-executor)
  • "Reviewing" → Skill(faion-sdd-execution) → quality-gates

Q2: Document Type (if planning)

question: "What document do you need to create?"
header: "Document"
multiSelect: false
options:
  - label: "Specification (what to build)"
    description: "Requirements, success criteria"
  - label: "Design document (how to build)"
    description: "Architecture, API contracts"
  - label: "Implementation plan (tasks)"
    description: "Task breakdown, dependencies"
  - label: "All of the above"
    description: "Full planning cycle"

Q3: Feature Complexity

question: "How complex is the feature?"
header: "Complexity"
multiSelect: false
options:
  - label: "Low (< 50k tokens)"
    description: "Single task, straightforward"
  - label: "Medium (50-150k tokens)"
    description: "Multiple tasks, some complexity"
  - label: "High (> 150k tokens)"
    description: "Many tasks, architectural changes"

Context impact:

  • "Low" → Single task, less formal docs
  • "Medium" → Standard SDD workflow
  • "High" → Detailed spec, parallel execution

Architecture

This skill orchestrates 2 sub-skills:

Sub-SkillScopeMethodologies
faion-sdd-planningSpecs, design docs, impl-plans, tasks, templates, workflows28
faion-sdd-executionQuality gates, reflexion, patterns, memory, code review, context20

Total: 48 methodologies


Workflow Overview

CONSTITUTION → SPEC → DESIGN → IMPL-PLAN → TASKS → EXECUTE → DONE
      |          |        |          |          |         |        |
   project    feature  technical   100k rule   atomic   agent    learn
   principles  intent   approach   compliance   units  execution reflect

When to Use Which Sub-Skill

Use faion-sdd-planning for:

  • Writing specifications (WHAT + WHY)
  • Creating design documents (HOW)
  • Breaking down implementation plans (TASKS)
  • Task creation from impl-plans
  • Template usage
  • Workflow navigation

Use faion-sdd-execution for:

  • Task execution workflows
  • Quality gate validation (L1-L6)
  • Code review cycles
  • Reflexion learning (PDCA)
  • Pattern/mistake memory management
  • Context management strategies
  • Task parallelization analysis

Quick Decision Tree

If you need...InvokeWhy
Write specfaion-sdd-planningDocumentation phase
Write design docfaion-sdd-planningDocumentation phase
Create impl-planfaion-sdd-planningDocumentation phase
Create tasksfaion-sdd-planningDocumentation phase
Get templatesfaion-sdd-planningTemplates stored there
Run quality gatesfaion-sdd-executionValidation phase
Execute tasksfaion-sdd-executionExecution phase
Code reviewfaion-sdd-executionReview phase
Learn patternsfaion-sdd-executionLearning phase
Check mistakesfaion-sdd-executionLearning phase
Parallelize tasksfaion-sdd-executionOptimization phase

Directory Structure

.aidocs/
├── constitution.md                    # Project principles
├── contracts.md                       # API contracts
├── roadmap.md                         # Milestones
└── features/
    ├── backlog/                       # Waiting for grooming
    ├── todo/                          # Ready for execution
    ├── in-progress/                   # Being worked on
    └── done/                          # Completed
        └── {NN}-{feature}/
            ├── spec.md                # WHAT and WHY
            ├── design.md              # HOW
            ├── implementation-plan.md # Tasks breakdown
            └── tasks/
                ├── backlog/
                ├── todo/              # Ready tasks
                ├── in-progress/       # Executing
                └── done/              # Completed

Lifecycle: backlog/ → todo/ → in-progress/ → done/


Agents

AgentPurposeSub-Skill
faion-task-executor-agentExecute SDD tasks autonomouslyexecution
faion-task-creator-agentCreate detailed TASK_*.md filesplanning
faion-sdd-reviewer-agentQuality gate reviewsexecution
faion-hallucination-checker-agentValidate task completionexecution

Memory Storage

Location: Project-local .aidocs/memory/ (not global)

.aidocs/memory/
├── patterns.md           # Learned patterns
├── mistakes.md           # Errors and solutions
├── decisions.md          # Key decisions
└── session.md            # Session state

Related Skills

SkillRelationship
faion-netParent orchestrator
faion-feature-executorExecutes SDD tasks in sequence
faion-software-developerImplements code from tasks
faion-product-managerProvides product specs
faion-software-architectProvides design documents

*faion-sdd v4.0 (Orchestrator)* *Sub-skills: faion-sdd-planning (28) + faion-sdd-execution (20)*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

github-copilot

28.68%
按下载量换算46

Claude Code

23.72%
按下载量换算38

windsurf

15.37%
按下载量换算25

trae

12.01%
按下载量换算19

OpenCode

7.34%
按下载量换算12

Codex

3.42%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills