Flc's Skills
A curated collection of specialized skills for AI Agents, optimized for discovery and seamless integration.
🚀 https://skills.flc.io
An open repository of reusable skills maintained for personal use and public reuse.
This repo contains a Codex plugin, a Claude Code plugin, and installable skills that can be added from skills.flc.io and used as building blocks for agent workflows, AI assistants, or other compatible tools.
The installable skill content lives in skills/. The Next.js marketplace that powers skills.flc.io now lives in web/.
✨ Overview
- Install the full skill collection as a Codex or Claude Code plugin
- Install individual skills from the published skill source
- Browse available skills on the visual marketplace at skills.flc.io
- Reuse the repository as a lightweight source of portable skills
📦 Installation
Install as a Codex plugin
Add this repository as a Codex plugin marketplace, then install the bundled flc-skills plugin:
codex plugin marketplace add flc1125/skills
codex plugin add flc-skills@flc1125-skills
Use this path when you want the full collection available in Codex.
Install as a Claude Code plugin
Add this repository as a Claude Code plugin marketplace, then install the bundled flc-skills plugin:
claude plugin marketplace add flc1125/skills
claude plugin install flc-skills@flc1125-skills
Or use the interactive /plugin command inside Claude Code. Plugin skills are namespaced, so invoke them as /flc-skills:<skill-name> (for example /flc-skills:code-review).
Use this path when you want the full collection available in Claude Code.
Install an individual skill
Use npx skills add when you only want one skill, want to choose from an interactive prompt, or are using a compatible skill installer outside the Codex plugin system.
Choose a skill interactively:
npx skills add https://skills.flc.io
Install a specific skill directly:
npx skills add https://skills.flc.io --skill <skill-name>
For example:
npx skills add https://skills.flc.io --skill engineering-backend-architect
If you install a specific skill directly, use the skill's install name shown on the marketplace or in its SKILL.md, not the marketplace URL slug.
GitHub fallback
If the custom skill source is temporarily unavailable, install from the GitHub repository instead:
npx skills add https://github.com/flc1125/skills
npx skills add https://github.com/flc1125/skills --skill <skill-name>
🚀 Usage
Browse all published skills at skills.flc.io.
After installing the Codex plugin, start a new Codex thread and ask Codex to use the relevant workflow, or invoke a bundled skill explicitly. If you install an individual skill directly, use it through your local skills setup or any compatible tool that supports this format.
Refer to each skill's SKILL.md for its purpose, trigger guidance, and usage details.
🛠 Development
The web marketplace is a standalone Next.js app under web/.
cd web
npm install
npm run dev
Use npm run lint and npm run build inside web/ to validate marketplace changes.
The web prebuild publishes an Agent Skills Discovery v0.2 index and content-addressed archives under web/public/.well-known/agent-skills/. Run npm run generate:skills-distribution to regenerate them directly. The output directory is cleared before each generation and stays out of version control because npx skills add and npx skills update resolve the current index on demand. Only Git-tracked or non-ignored skill files are packaged, so ignored local configuration such as .env is never distributed.
📝 License
This repository is licensed under the MIT License. See LICENSE.
No comments yet
Be the first to share your take.