faos-skills-marketplace

agent
Guvenlik Denetimi
Gecti
Health Gecti
  • License — License: Apache-2.0
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Community trust — 12 GitHub stars
Code Gecti
  • Code scan — Scanned 12 files during light audit, no dangerous patterns found
Permissions Gecti
  • Permissions — No dangerous permissions requested
Purpose
This project provides a large library of over 930 AI-powered skills and 31 agent plugins designed to extend the capabilities of AI coding assistants like Claude Code, OpenAI Codex, Gemini CLI, and GitHub Copilot.

Security Assessment
The overall risk is rated as Low. The automated code scan reviewed 12 files and found no dangerous patterns, hardcoded secrets, or requests for risky permissions. Since this tool is primarily a collection of static configuration files, instructions, and prompts (despite the primary repository language being flagged as TeX), it does not inherently execute shell commands, make unauthorized network requests, or access sensitive data on its own. The installation process relies on standard, safe file-copy commands (like `cp`). As always with AI skill libraries, users should still briefly review the specific prompt files they choose to install to ensure they align with their intended workflows.

Quality Assessment
The project is actively maintained, with its most recent push occurring today. It uses the permissive and standard Apache-2.0 license, making it completely free for personal, commercial, and modified use. Community trust and traction are currently in the very early stages, as the repository only has 12 GitHub stars.

Verdict
Safe to use.
SUMMARY

930+ AI-powered skills and 31 agent plugins for Claude Code, OpenAI Codex, Gemini CLI, GitHub Copilot, and Perplexity Computer. The largest open-source AI skills library.

README.md

FAOS Skills Marketplace

930+ AI-powered skills and 31 agent plugins for Claude Code, OpenAI Codex, Gemini CLI, GitHub Copilot, and Perplexity Computer.

The largest open-source AI skills library. Built by the FAOS Framework team.

Apache 2.0 Licensed — free to use, modify, and distribute commercially.

Quick Install

Claude Code (recommended — native plugin marketplace)

Claude Code ships a built-in plugin marketplace. Add this repo once, then install any plugin by name:

/plugin marketplace add frank-luongt/faos-skills-marketplace
/plugin install faos-cto@faos-skills-marketplace
/plugin install faos-architect@faos-skills-marketplace
  • The full plugin list is below (see Agent Plugins (31)). Every entry installs with /plugin install <name>@faos-skills-marketplace.
  • Update later with /plugin marketplace update faos-skills-marketplace; list installed plugins via /plugin list.
  • Full URL form also works: /plugin marketplace add https://github.com/frank-luongt/faos-skills-marketplace
Manual install (legacy — for users not on Claude Code's plugin system)
# Install a single skill (e.g., code-review)
cp skills/cowork/code-reviewer/SKILL.md .claude/skills/

# Install all skills
cp -r skills/cowork/*/SKILL.md .claude/skills/

# Install an agent plugin (e.g., CTO persona) — note: this does NOT register with /plugin commands
cp -r plugins/faos-cto/ ~/.claude/plugins/faos-cto/

Looking for a plugin called cowork or claude-cowork? There isn't one — Claude Code skills live under skills/cowork/ (platform name), but agent plugins are named faos-<role> (e.g., faos-cto, faos-architect). See the full catalog below.

OpenAI Codex

# Copy skills to your Codex project
cp -r skills/codex/ .agents/skills/

# The agents/openai.yaml provides UI metadata automatically

Gemini CLI

# Copy all FAOS skills as Gemini commands
cp skills/gemini/commands/faos-skill-*.toml .gemini/commands/

# Invoke with /faos-skill-{name}

GitHub Copilot

# Copy all FAOS skills as Copilot instructions
cp skills/copilot/instructions/faos-skill-*.instructions.md .github/instructions/

# Skills auto-activate based on applyTo glob pattern

Perplexity Computer

# Copy skills to your workspace
cp -r skills/perplexity/ .perplexity/skills/

What's Inside

Skills (930+) — Browse the full catalog

Category Count Examples
Engineering & DevOps 280+ Dev workflows, code review, architecture, CI/CD, testing, K8s, Terraform
Cloud & Infrastructure 120+ Azure AI/ML, AWS, GCP, Databricks, Snowflake, monitoring
Product & Strategy 90+ PRD creation, sprint planning, OKR review, roadmap, startup analysis
Growth & Sales 80+ Deal qualification, proposals, campaigns, ABM, marketing psychology
Data & AI/ML 100+ LangChain, RAG, fine-tuning, MLOps, vector DBs, prompt engineering
Security & Compliance 60+ OWASP, NIST, SOC2, HIPAA, PCI-DSS, threat modeling, SAST
Operations & Leadership 70+ Board prep, financial review, talent review, security posture
Creative & Design 50+ Brainstorming, design thinking, storytelling, wireframes, diagrams

Agent Plugins (31)

Full persona agents with communication styles, KPIs, decision patterns, and vocabulary:

  • C-Suite (11): CEO, CTO, CFO, CPO, COO, CRO, CMO, CHRO, CLO, CISO, CDAO
  • Engineering (6): Developer, Architect, SRE, Security Engineer, Enterprise Architect, Solo Dev
  • Product (3): Product Manager, UX Designer, Business Analyst
  • Data & AI (5): AI Engineer, Data Engineer, Data Scientist, Data-AI Architect, Data-AI Analyst
  • GTM (3): Sales Executive, Marketing Executive, Customer Service Manager
  • Delivery (2): Scrum Master, Tech Writer
  • Quality (1): Test Architect

Supported Platforms

Platform Skills Plugins Format
Claude Code 932 31 SKILL.md
OpenAI Codex 923 SKILL.md + openai.yaml
Gemini CLI 518 TOML commands
GitHub Copilot 518 .instructions.md
Perplexity Computer 923 SKILL.md

Skills Marketplace vs FAOS Platform

Feature Marketplace (Free) FAOS Platform
930+ portable skills Yes Yes
31 agent plugins Yes Yes
5 platform formats Yes Yes
Creative extension (brainstorming, design thinking, storytelling) Yes Yes
Apache 2.0 license Yes Yes
7-Phase Execution Engine - Yes
3-Layer Memory Architecture - Yes
Ontology Engine + 22 Industry Blueprints - Yes
Agent Autonomy Engine (L0-L3) - Yes
Governance Gates & RBAC - Yes
Per-Agent Cost Controls & Budgets - Yes
Portal, Desktop & Mobile Apps - Yes
Multi-Tenant Operations - Yes
Enterprise Support & SLA - Yes

Skills give your AI instructions. FAOS gives your AI understanding.

Learn more about the platform | Request access

Repository Structure

faos-skills-marketplace/
├── skills/
│   ├── cowork/              # Claude Code — 526 SKILL.md files (flat)
│   │   ├── code-review/SKILL.md
│   │   ├── dev-story/SKILL.md
│   │   ├── prd-creation/SKILL.md
│   │   └── ... (930+ skill directories)
│   ├── codex/               # OpenAI Codex — SKILL.md
│   ├── gemini/              # Gemini CLI — TOML commands
│   ├── copilot/             # GitHub Copilot — .instructions.md
│   └── perplexity/          # Perplexity Computer — SKILL.md
├── plugins/                 # 31 agent plugins
│   ├── faos-ceo/
│   ├── faos-cto/
│   ├── faos-architect/
│   └── ... (31 plugin directories)
├── .claude-plugin/          # Claude Code marketplace manifest
├── marketplace.json         # Registry metadata
├── CONTRIBUTING.md          # How to contribute
├── SECURITY.md              # Security policy
├── CHANGELOG.md             # Release history
├── LICENSE                  # Apache 2.0
└── README.md

Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

Quick version:

  1. Fork this repo
  2. Add or improve skills in skills/cowork/{category}/
  3. Submit a PR — we'll handle cross-platform exports

Security

Found a security issue? See SECURITY.md for our responsible disclosure process.

License

Apache 2.0 — see LICENSE for full text.


Built with FAOS — the enterprise agentic operating system.

Yorumlar (0)

Sonuc bulunamadi