Centralized orchestrator that routes user requests to the appropriate domain-specific skill.

Install

mkdir -p .claude/skills/faion-net && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/16046" && unzip -o skill.zip -d .claude/skills/faion-net && rm skill.zip

Installs to .claude/skills/faion-net

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Universal orchestrator: 54 skills, 1297 methodologies. Development, DevOps, AI/ML, Product, Marketing, PM, BA, UX, Research.
124 charsno explicit “when” trigger
Beginner

Key capabilities

  • Analyze user intent to route tasks to appropriate domain skills.
  • Perform auto-investigation to detect existing project signals.
  • Ask discovery questions to clarify unclear intent.
  • Route tasks based on primary intent, planning type, or build type.
  • Provide context for methodology depth based on project stage.
  • Identify primary concerns like speed, quality, performance, or security.

How it works

The skill analyzes user intent, performs auto-investigation of project signals, and asks clarifying questions to route tasks to the most appropriate specialized domain skill within the Faion Network.

Inputs & outputs

You give it
A user task or request.
You get back
A routed task to a specific domain skill, or discovery questions to clarify intent.

When to use faion-net

  • Orchestrating multi-disciplinary projects
  • Identifying correct technical skills for a task
  • Managing workflow across different domains

About this 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:

SignalHow to CheckDetected → Skip Question
Python/DjangoGlob("**/manage.py")Stack question, route to faion-python-developer
Python/FastAPIGrep("fastapi", "**/pyproject.toml")Stack question, route to faion-python-developer
Node.js/ReactGlob("**/package.json") + check for reactStack question, route to faion-javascript-developer
Go projectGlob("**/go.mod")Stack question, route to faion-backend-systems
Rust projectGlob("**/Cargo.toml")Stack question, route to faion-backend-systems
Docker setupGlob("**/Dockerfile")Infra exists, context for faion-devops-engineer
CI/CD configGlob("**/.github/workflows/*.yml")CI exists, context for faion-cicd-engineer
SDD docsGlob("**/.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) or Skill(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

DomainPrimary SkillMethodologies
Researchfaion-researcher40
Architecturefaion-software-architect31
Productfaion-product-manager69
Developmentfaion-software-developer138
DevOpsfaion-devops-engineer87
AI/MLfaion-ml-engineer140
Marketingfaion-marketing-manager135
Project Mgmtfaion-project-manager97
Business Analysisfaion-business-analyst55
UX/UIfaion-ux-ui-designer179
SDDfaion-sdd71

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

MetricCount
Skills54
Orchestrators3
Leaf skills51
Methodologies1297

Methodology Structure

Each methodology is a folder with 5 files:

{meth

---

*Content truncated.*

When not to use it

  • When the user explicitly states the skill they want to use.
  • When the user's intent is already clear and does not require further discovery.

Limitations

  • It relies on specific project signals for auto-investigation.
  • It requires user input for unclear intents.
  • It routes to predefined domain skills within the Faion Network.

How it compares

This skill acts as a universal orchestrator, intelligently routing tasks to specialized skills based on context and intent, which is more efficient than manually selecting a skill for every task.

Compared to similar skills

faion-net side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
faion-net (this skill)05moNo flagsBeginner
using-superpowers953moNo flagsBeginner
ultrawork112moNo flagsAdvanced
clawhub253moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

More by diegosouzapw

View all by diegosouzapw

helm-chart-scaffolding-v2

diegosouzapw

Helm Chart Scaffolding workflow skill. Use this skill when the user needs Comprehensive guidance for creating, organizing, and managing Helm charts for packaging and deploying Kubernetes applications and the operator should preserve the upstream workflow, copied support files, and provenance before

00

cc-skill-coding-standards-v2

diegosouzapw

Coding Standards & Best Practices workflow skill. Use this skill when the user needs Universal coding standards, best practices, and patterns for TypeScript, JavaScript, React, and Node.js development and the operator should preserve the upstream workflow, copied support files, and provenance before

00

worktree-setup

diegosouzapw

Automatically invoked after `git worktree add` to create data/shared symlink and data/local directory. Required before starting work in any new worktree.

00

parsehub-automation

diegosouzapw

Automate Parsehub tasks via Rube MCP (Composio). Always search tools first for current schemas.

00

signalwire-agents-sdk

diegosouzapw

Expert assistance for building SignalWire AI Agents in Python. Automatically activates when working with AgentBase, SWAIG functions, skills, SWML, voice configuration, DataMap, or any signalwire_agents code. Provides patterns, best practices, and complete working examples.

00

agent-sales-engineer

diegosouzapw

Expert sales engineer specializing in technical pre-sales, solution architecture, and proof of concepts. Masters technical demonstrations, competitive positioning, and translating complex technology into business value for prospects and customers.

00

You might also like

using-superpowers

obra

Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Skill tool before announcing usage, following brainstorming before coding, and creating TodoWrite todos for checklists

95205

ultrawork

Yeachan-Heo

Parallel execution engine for high-throughput task completion

11184

clawhub

openclaw

Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawhub CLI.

25151

skill-installer

openai

Install Codex skills into $CODEX_HOME/skills from a curated list or a GitHub repo path. Use when a user asks to list installable skills, install a curated skill, or install a skill from another repo (including private repos).

29141

continuous-learning

affaan-m

Automatically extract reusable patterns from Claude Code sessions and save them as learned skills for future use.

995

memory-keeper-proactive-context-maintenance

b4CU-R4U

Automatically detect and maintain memory freshness by monitoring context staleness, significant code changes, task completions, and phase transitions. Proactively suggests and executes memory sync operations with user confirmation. Use when the user says "sync memory", "update context", or when the Skill detects that context is stale (>2 hours), significant changes have occurred (new commits), tasks completed, or major milestones reached. Replaces passive "context is stale" warnings with active maintenance.

694

Search skills

Search the agent skills registry