-
Notifications
You must be signed in to change notification settings - Fork 0
feat: skills install and llms.txt documentation #147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
bercianor
wants to merge
4
commits into
develop
Choose a base branch
from
feat/skill-install-docs
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
42a9a58
feat: skills install and llms.txt documentation
bercianor 9fd39bd
chore: update to a new llms.txt plugin
bercianor 6aa4a8d
fix: add agentic-coders link and beta warning
bercianor f57821d
Merge branch 'develop' into feat/skill-install-docs
bercianor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| --- | ||
| title: Using Flamingock with Agentic Coders | ||
| sidebar_position: 50 | ||
| --- | ||
|
|
||
| # Using Flamingock with agentic coders | ||
|
bercianor marked this conversation as resolved.
|
||
|
|
||
| **Flamingock** is designed to be **agent-ready**. Modern agentic coding assistants — such as **Claude Code**, **Gemini CLI**, and **OpenCode** — can be significantly more productive and accurate when working with Flamingock thanks to our adherence to emerging standards for AI-developer collaboration. | ||
|
bercianor marked this conversation as resolved.
|
||
|
|
||
| By providing structured context and specialized skills, Flamingock ensures that AI agents generate setup and change code that is not only syntactically correct but also follows all architectural best practices, naming conventions, and safety patterns. | ||
|
|
||
| --- | ||
|
|
||
| ## 🛠 Pillar 1: LLM-optimized documentation (`llms.txt`) | ||
|
|
||
| Flamingock documentation is optimized for Large Language Models (LLMs) using the [llms.txt](https://llmstxt.org/) standard. Instead of having an agent crawl dozens of HTML pages, you can provide a single, structured entry point. | ||
|
|
||
| We provide two key files at the root of our documentation: | ||
|
|
||
| 1. **`/llms.txt`**: A concise index of the documentation, providing a high-level overview and links to all relevant sections. | ||
| 2. **`/llms-full.txt`**: A comprehensive, markdown-formatted file containing the **entire documentation** content. This is the most efficient way to give an agent the full context of Flamingock in a single request. | ||
|
|
||
| ### How to use it | ||
|
|
||
| When starting a session with an agentic coder, point it to these resources to ensure it has the latest information: | ||
|
|
||
| ```bash | ||
| # Example with an agent that supports external context URLs | ||
| claude "Create a new Flamingock change to add an index to the users collection. Read the documentation at: https://docs.flamingock.io/llms-full.txt" | ||
| ``` | ||
|
|
||
| --- | ||
|
|
||
| ## 🧠 Pillar 2: Agent skills (`agentskills.io`) | ||
|
|
||
| :::caution Beta feature | ||
| Flamingock Skills are still in **beta**. | ||
| ::: | ||
|
|
||
| Beyond general documentation, Flamingock provides specialized **Skills** following the [agentskills.io](https://agentskills.io/) standard. A skill is a set of machine-readable instructions that teaches an agent exactly how to perform a specific task within the Flamingock ecosystem — without guessing or hallucinating APIs. | ||
|
|
||
| All official skills are hosted at: [github.com/flamingock/flamingock-skills](https://github.com/flamingock/flamingock-skills). | ||
|
bercianor marked this conversation as resolved.
|
||
|
|
||
| ### Installing skills | ||
|
|
||
| Skills are installed per project, and you can install all of them using the Flamingock CLI tool: | ||
|
|
||
| | Command | Destination | | ||
| |----------------------------------------------|----------------------| | ||
| | `flamingock install-skills` | `./.agents/skills` | | ||
| | `flamingock install-skills --agent claude` | `./.claude/skills` | | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would add a specific subcommand for codex, because we are talking about agents and not about paths. If we need to do somethingelse in the future for a specific agent, we should manage codex too. |
||
| | `flamingock install-skills --agent github` | `./.github/skills` | | ||
| | `flamingock install-skills --agent cursor` | `./.cursor/skills` | | ||
| | `flamingock install-skills --agent opencode` | `./.opencode/skills` | | ||
| | `flamingock install-skills --agent gemini` | `./.gemini/skills` | | ||
| | `flamingock install-skills --agent windsurf` | `./.windsurf/skills` | | ||
| | `flamingock install-skills --agent pi` | `./.pi/skills` | | ||
|
|
||
| :::note | ||
| Paths are resolved relative to the directory where you run the command. | ||
| ::: | ||
|
|
||
| Then commit it to your repository so every developer and every CI agent gets it automatically: | ||
|
|
||
| ```bash | ||
| git add .agents/skills/flamingock-*/ | ||
| git commit -m "chore: add Flamingock agent skills" | ||
| ``` | ||
|
|
||
| Refer to the [Flamingock Skills repository](https://github.com/flamingock/flamingock-skills) for the full list of available skills. | ||
|
|
||
| --- | ||
|
|
||
| ## 💎 Benefits of the agentic approach | ||
|
|
||
| - **Correctness**: The agent follows the exact Flamingock API — no guessed method names, no invented configuration keys. | ||
| - **Consistency**: Every project gets the same setup patterns, regardless of which developer or agent generates them. | ||
| - **Safety**: Guards in the skill prevent common mistakes before any code is written. | ||
| - **Speed**: From "I need to set up Flamingock" to a working, production-ready configuration in seconds. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.