Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计提醒

faion-software-developer法安软件开发商

Agent Skill

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

总安装

336

周安装

14

GitHub Stars

2

下载量

112
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于协调七项专项子技能,实现跨技术栈的完整软件开发生命周期管理。

  • 适用于根据 manage.py、pyproject.toml 等技术特征自动路由到对应开发器。
  • 通过检测项目文件自动识别 Django、FastAPI 等技术栈并分配合适子技能。
  • 安装命令:npx skills add https://github.com/faionfaion/faion-network --skill faion-software-developer。
  • 涉及生产部署时应区分测试环境与正式环境,防止配置漂移。

SKILL.md

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

Software Developer Orchestrator

Coordinates 7 specialized sub-skills for comprehensive software development.

Purpose

Routes development tasks to appropriate specialized sub-skills based on technology, domain, and task type.


Context Discovery

Auto-Investigation

Detect tech stack from project files BEFORE asking questions:

SignalHow to CheckDetected Stack
manage.pyGlob("**/manage.py")Django → faion-python-developer
pyproject.toml with fastapiGrep("fastapi", "**/pyproject.toml")FastAPI → faion-python-developer
pyproject.toml with djangoGrep("django", "**/pyproject.toml")Django → faion-python-developer
package.json with reactGrep("react", "**/package.json")React → faion-javascript-developer
package.json with nextGrep("next", "**/package.json")Next.js → faion-javascript-developer
package.json with expressGrep("express", "**/package.json")Node.js → faion-javascript-developer
go.modGlob("**/go.mod")Go → faion-backend-systems
Cargo.tomlGlob("**/Cargo.toml")Rust → faion-backend-systems
pom.xml or build.gradleGlob("**/pom.xml")Java → faion-backend-enterprise
*.csprojGlob("**/*.csproj")C# → faion-backend-enterprise
composer.jsonGlob("**/composer.json")PHP → faion-backend-enterprise
GemfileGlob("**/Gemfile")Ruby → faion-backend-enterprise
tailwind.config.*Glob("**/tailwind.config.*")Tailwind → faion-frontend-developer

Also check for patterns:

  • Glob("**/services/*.py") → Service layer exists, follow pattern
  • Glob("**/tests/**") → Tests exist, check style
  • Grep("class.*ViewSet", "**/*.py") → DRF ViewSets used

Discovery Questions

Use AskUserQuestion if stack not detected or task type unclear.

Q1: Task Type (if unclear from request)

question: "What type of development task is this?"
header: "Task"
multiSelect: false
options:
  - label: "Build new feature"
    description: "Create new functionality from scratch"
  - label: "Fix a bug"
    description: "Something isn't working correctly"
  - label: "Refactor / improve"
    description: "Restructure without changing behavior"
  - label: "Add tests"
    description: "Improve test coverage"
  - label: "Review / audit code"
    description: "Check quality, find issues"

Routing:

  • "Build new feature" → Full workflow, may need architecture
  • "Fix a bug" → Investigate first, minimal targeted changes
  • "Refactor / improve" → Skill(faion-code-quality)
  • "Add tests" → Skill(faion-testing-developer)
  • "Review / audit code" → Skill(faion-code-quality)

Q2: Tech Stack (only if not auto-detected)

question: "What's the primary technology?"
header: "Stack"
multiSelect: false
options:
  - label: "Python (Django/FastAPI)"
    description: "Python backend development"
  - label: "JavaScript/TypeScript"
    description: "React, Node.js, Next.js"
  - label: "Go"
    description: "Go backend services"
  - label: "Other (Rust/Java/C#/PHP/Ruby)"
    description: "Enterprise or systems languages"

Routing:

  • "Python" → Skill(faion-python-developer)
  • "JavaScript/TypeScript" → Skill(faion-javascript-developer)
  • "Go" → Skill(faion-backend-systems)
  • "Other" → Skill(faion-backend-enterprise)

Q3: Code Area (for large codebases)

question: "Which area of the codebase?"
header: "Area"
multiSelect: false
options:
  - label: "Backend / API"
    description: "Server-side logic, database"
  - label: "Frontend / UI"
    description: "User interface, components"
  - label: "Both (full-stack)"
    description: "Changes span frontend and backend"
  - label: "Infrastructure"
    description: "Build, deploy, CI/CD"

Q4: Existing Patterns (for existing codebases)

question: "Should I follow existing patterns in the codebase?"
header: "Patterns"
multiSelect: false
options:
  - label: "Yes, match existing style"
    description: "I'll investigate and follow conventions"
  - label: "No, use best practices"
    description: "Apply modern patterns regardless"
  - label: "Improve while matching"
    description: "Follow style but suggest improvements"

Action:

  • "Yes, match existing" → Read existing code first, extract patterns
  • "No, use best practices" → Apply methodology defaults
  • "Improve while matching" → Note improvements in comments/TODOs

Sub-Skills

Sub-skillMethodologiesFocus
faion-python-developer24Django, FastAPI, async, pytest, type hints
faion-javascript-developer18React, Node.js, Next.js, TypeScript, Bun
faion-backend-developer47Go, Rust, Java, C#, PHP, Ruby, databases
faion-frontend-developer18Tailwind, CSS-in-JS, design tokens, PWA, a11y
faion-api-developer19REST, GraphQL, OpenAPI, auth, versioning
faion-testing-developer12Unit, integration, E2E, TDD, mocking
faion-devtools-developer46Automation, architecture, code quality, CI/CD

Total: 184 methodologies across 7 sub-skills

Routing Logic

Task TypeRoute To
Python/Django/FastAPI codefaion-python-developer
JavaScript/TypeScript/React/Node.js codefaion-javascript-developer
Go/Rust/Java/C#/PHP/Ruby codefaion-backend-developer
Database design, cachingfaion-backend-developer
Tailwind/CSS/UI librariesfaion-frontend-developer
Design tokens, PWA, accessibilityfaion-frontend-developer
REST/GraphQL API designfaion-api-developer
API auth, versioning, rate limitingfaion-api-developer
Testing (any type)faion-testing-developer
Browser automation, web scrapingfaion-devtools-developer
Code review, refactoringfaion-devtools-developer
Architecture patterns (DDD, CQRS)faion-devtools-developer
CI/CD, monorepo, toolingfaion-devtools-developer

Multi-Skill Tasks

For tasks spanning multiple domains, coordinate relevant sub-skills:

Full-stack Python app:

  1. faion-python-developer (backend)
  2. faion-api-developer (API design)
  3. faion-frontend-developer (UI)
  4. faion-testing-developer (tests)

React + Node.js app:

  1. faion-javascript-developer (React + Node.js)
  2. faion-frontend-developer (styling)
  3. faion-api-developer (API)
  4. faion-testing-developer (tests)

Microservices architecture:

  1. faion-backend-developer (services in Go/Rust/Java)
  2. faion-api-developer (API gateway)
  3. faion-devtools-developer (architecture patterns)
  4. faion-testing-developer (integration tests)

Agents

AgentPurpose
faion-code-agentCode generation and review
faion-test-agentTest generation and execution
faion-frontend-brainstormer-agentGenerate 3-5 design variants
faion-storybook-agentSetup/maintain Storybook
faion-frontend-component-agentDevelop components with stories

Related Skills

SkillRelationship
faion-netParent orchestrator for all projects
faion-software-architectArchitecture design decisions
faion-devops-engineerDeployment, infrastructure
faion-ml-engineerAI/ML integrations
faion-sddSpecification-driven development

Usage

Invoked via /faion-net or directly as /faion-software-developer. Automatically routes to appropriate sub-skill.


*faion-software-developer v2.0 | Orchestrator | 7 sub-skills | 184 methodologies*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.18%
按下载量换算30

github-copilot

22.85%
按下载量换算26

windsurf

17.48%
按下载量换算20

trae

11.51%
按下载量换算13

OpenCode

6.37%
按下载量换算7

Codex

2.85%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills