faion-net
9
总安装量
8
周安装量
#31375
全站排名
安装命令
npx skills add https://github.com/faionfaion/faion-network --skill faion-net
Agent 安装分布
claude-code
5
github-copilot
5
gemini-cli
4
antigravity
4
windsurf
4
trae
4
Skill 文档
Faion Network Orchestrator
Communication: User’s language.
How It Works
User task â Analyze intent â Skill tool â Domain skill loads â Execute
CRITICAL: You MUST invoke domain skills using Skill(skill-name). Markdown links do NOT load skills.
Context Discovery
Before routing to a domain skill, gather context to make informed decisions.
Auto-Investigation
If user has an existing project, check these signals FIRST:
| Signal | How to Check | Detected â Skip Question |
|---|---|---|
| Python/Django | Glob("**/manage.py") |
Stack question, route to faion-python-developer |
| Python/FastAPI | Grep("fastapi", "**/pyproject.toml") |
Stack question, route to faion-python-developer |
| Node.js/React | Glob("**/package.json") + check for react |
Stack question, route to faion-javascript-developer |
| Go project | Glob("**/go.mod") |
Stack question, route to faion-backend-systems |
| Rust project | Glob("**/Cargo.toml") |
Stack question, route to faion-backend-systems |
| Docker setup | Glob("**/Dockerfile") |
Infra exists, context for faion-devops-engineer |
| CI/CD config | Glob("**/.github/workflows/*.yml") |
CI exists, context for faion-cicd-engineer |
| SDD docs | Glob("**/.aidocs/constitution.md") |
SDD project, can read spec/design |
Discovery Questions
Use AskUserQuestion if intent is unclear after auto-investigation.
Q1: Primary Intent (required if unclear)
question: "What do you need help with?"
header: "Intent"
multiSelect: false
options:
- label: "Research & Discovery"
description: "Ideas, market research, competitors, validation"
- label: "Planning & Strategy"
description: "Product roadmap, architecture, project planning"
- label: "Build & Implement"
description: "Write code, create designs, develop features"
- label: "Launch & Market"
description: "GTM, marketing, SEO, ads, content"
- label: "Fix & Improve"
description: "Bug fixes, refactoring, optimization, tests"
Routing:
- “Research & Discovery” â
Skill(faion-researcher) - “Planning & Strategy” â Ask Q1b (Planning type)
- “Build & Implement” â Ask Q1c (Build type) or auto-detect from project
- “Launch & Market” â
Skill(faion-marketing-manager) - “Fix & Improve” â Auto-detect stack, then route to dev skill
Q1b: Planning Type (if “Planning & Strategy”)
question: "What kind of planning?"
header: "Planning"
multiSelect: false
options:
- label: "Product scope & roadmap"
description: "MVP definition, features, priorities"
- label: "Technical architecture"
description: "System design, tech stack, APIs"
- label: "Project schedule & resources"
description: "Timeline, team, milestones"
- label: "Business requirements"
description: "Use cases, processes, stakeholders"
Routing:
- “Product scope & roadmap” â
Skill(faion-product-manager) - “Technical architecture” â
Skill(faion-software-architect) - “Project schedule & resources” â
Skill(faion-project-manager) - “Business requirements” â
Skill(faion-business-analyst)
Q1c: Build Type (if “Build & Implement” and no auto-detect)
question: "What are you building?"
header: "Build"
multiSelect: false
options:
- label: "Backend / API"
description: "Server-side code, database, APIs"
- label: "Frontend / UI"
description: "User interface, components, styling"
- label: "Full-stack feature"
description: "Both frontend and backend"
- label: "Infrastructure / DevOps"
description: "Deployment, CI/CD, containers"
- label: "AI / ML feature"
description: "LLM integration, RAG, agents"
Routing:
- “Backend / API” â Detect stack or ask, then route
- “Frontend / UI” â
Skill(faion-frontend-developer)orSkill(faion-javascript-developer) - “Full-stack feature” â Detect stack, coordinate skills
- “Infrastructure / DevOps” â
Skill(faion-devops-engineer) - “AI / ML feature” â
Skill(faion-ml-engineer)
Q2: Project Stage (context for methodology depth)
question: "What stage is your project at?"
header: "Stage"
multiSelect: false
options:
- label: "Idea phase"
description: "Exploring, not committed yet"
- label: "Planning phase"
description: "Defining scope, architecture"
- label: "Active development"
description: "Building features"
- label: "Pre-launch"
description: "Preparing for release"
- label: "Live product"
description: "Has users, iterating"
Context impact:
- “Idea phase” â Research-heavy, validation methodologies
- “Planning phase” â Architecture, specs, design docs
- “Active development” â Implementation patterns, testing
- “Pre-launch” â QA, performance, launch prep
- “Live product” â Monitoring, optimization, growth
Q3: Primary Concerns (optional, multiSelect)
question: "What are your main concerns for this task?"
header: "Concerns"
multiSelect: true
options:
- label: "Speed of delivery"
description: "Ship fast, iterate later"
- label: "Code quality"
description: "Clean, maintainable, tested"
- label: "Performance"
description: "Fast, scalable, efficient"
- label: "Security"
description: "Protect data, prevent attacks"
Context impact:
- “Speed of delivery” â Pragmatic patterns, skip optional steps
- “Code quality” â Full testing, code review, documentation
- “Performance” â Optimization methodologies, profiling
- “Security” â Security testing, auth patterns, OWASP
Decision Tree
What does the user want?
RESEARCH & STRATEGY
âââ Market research, TAM/SAM, competitors â Skill(faion-researcher)
âââ System design, architecture, ADRs â Skill(faion-software-architect)
âââ Product planning, MVP, roadmaps â Skill(faion-product-manager)
DEVELOPMENT
âââ Python (Django, FastAPI) â Skill(faion-python-developer)
âââ JavaScript (React, Node, Next.js) â Skill(faion-javascript-developer)
âââ Go, Rust, databases, caching â Skill(faion-backend-systems)
âââ Java, C#, PHP, Ruby â Skill(faion-backend-enterprise)
âââ Frontend (Tailwind, PWA, a11y) â Skill(faion-frontend-developer)
âââ APIs (REST, GraphQL, OpenAPI) â Skill(faion-api-developer)
âââ Testing (TDD, E2E, mocking) â Skill(faion-testing-developer)
âââ Code quality, refactoring, DDD â Skill(faion-code-quality)
âââ Automation, Puppeteer, monorepo â Skill(faion-automation-tooling)
INFRASTRUCTURE & DEVOPS
âââ Docker, K8s, Terraform, AWS/GCP â Skill(faion-infrastructure-engineer)
âââ CI/CD, GitHub Actions, GitOps â Skill(faion-cicd-engineer)
AI & MACHINE LEARNING
âââ LLM APIs (OpenAI, Claude, Gemini) â Skill(faion-llm-integration)
âââ RAG, embeddings, vector DBs â Skill(faion-rag-engineer)
âââ Fine-tuning, evaluation, ML Ops â Skill(faion-ml-ops)
âââ AI agents, LangChain, MCP â Skill(faion-ai-agents)
âââ Vision, image/video gen, TTS/STT â Skill(faion-multimodal-ai)
MARKETING
âââ GTM, launches, positioning, pricing â Skill(faion-gtm-strategist)
âââ Content, SEO copywriting, email â Skill(faion-content-marketer)
âââ Growth, AARRR, A/B testing â Skill(faion-growth-marketer)
âââ Landing pages, CRO, funnels â Skill(faion-conversion-optimizer)
âââ Google/Meta/LinkedIn Ads â Skill(faion-ppc-manager)
âââ Technical SEO, link building â Skill(faion-seo-manager)
âââ Social media, community â Skill(faion-smm-manager)
PROJECT & BUSINESS
âââ Scrum, Kanban, Jira/Linear â Skill(faion-pm-agile)
âââ PMBoK, WBS, EVM â Skill(faion-pm-traditional)
âââ Requirements, elicitation, strategy â Skill(faion-ba-core)
âââ Use cases, BPMN, data models â Skill(faion-ba-modeling)
DESIGN & UX
âââ User research, usability testing â Skill(faion-ux-researcher)
âââ Wireframes, design systems, Figma â Skill(faion-ui-designer)
âââ WCAG, accessibility, a11y â Skill(faion-accessibility-specialist)
SDD WORKFLOW
âââ Specs, design docs, impl-plans â Skill(faion-sdd-planning)
âââ Quality gates, code review â Skill(faion-sdd-execution)
âââ Sequential task execution â Skill(faion-feature-executor)
COMMUNICATION & HR
âââ Stakeholder dialogue, Mom Test â Skill(faion-communicator)
âââ Recruiting, interviews, onboarding â Skill(faion-hr-recruiter)
CLAUDE CODE
âââ Skills, hooks, MCP servers, IDE â Skill(faion-claude-code)
Quick Reference
| Domain | Primary Skill | Methodologies |
|---|---|---|
| Research | faion-researcher |
40 |
| Architecture | faion-software-architect |
31 |
| Product | faion-product-manager |
69 |
| Development | faion-software-developer |
138 |
| DevOps | faion-devops-engineer |
87 |
| AI/ML | faion-ml-engineer |
140 |
| Marketing | faion-marketing-manager |
135 |
| Project Mgmt | faion-project-manager |
97 |
| Business Analysis | faion-business-analyst |
55 |
| UX/UI | faion-ux-ui-designer |
179 |
| SDD | faion-sdd |
71 |
Routing Examples
Research:
"Analyze competitors" â Skill(faion-researcher)
"Design system architecture" â Skill(faion-software-architect)
Development:
"Build Django API" â Skill(faion-python-developer)
"Create React component" â Skill(faion-javascript-developer)
"Write unit tests" â Skill(faion-testing-developer)
AI/ML:
"Integrate OpenAI API" â Skill(faion-llm-integration)
"Build RAG pipeline" â Skill(faion-rag-engineer)
"Create AI agent" â Skill(faion-ai-agents)
Marketing:
"Plan product launch" â Skill(faion-gtm-strategist)
"Optimize landing page" â Skill(faion-conversion-optimizer)
"Run Google Ads" â Skill(faion-ppc-manager)
Multi-domain (sequential):
"Validate and build my SaaS idea"
â 1. Skill(faion-researcher) - validate
â 2. Skill(faion-product-manager) - plan MVP
â 3. Skill(faion-software-architect) - design
â 4. Skill(faion-software-developer) - build
Statistics
| Metric | Count |
|---|---|
| Skills | 54 |
| Orchestrators | 3 |
| Leaf skills | 51 |
| Methodologies | 1297 |
Methodology Structure
Each methodology is a folder with 5 files:
{methodology}/
âââ README.md # Main content
âââ checklist.md # Step-by-step checklist
âââ templates.md # Code/config templates
âââ examples.md # Practical examples
âââ llm-prompts.md # AI prompts
Faion Network v3.0