Add Stellar Development Skill to Building with AI page#2222
Add Stellar Development Skill to Building with AI page#2222
Conversation
Restructure the page to focus on the most effective AI integration methods: - Add Stellar Development Skill as the primary solution with installation instructions for multiple platforms and methods - Add supported platforms table (OpenCode, OpenAI Codex, Pi, and others) - Add OpenSkills as alternative for Cursor, Windsurf, and Aider users - Remove generic AI tool UI tutorials that were not Stellar-specific and prone to becoming outdated - Remove Custom AI applications code example - Keep llms.txt, Stella, and Additional resources sections - Add note about more AI tool integrations coming soon - Add Building with AI page to llms.txt
There was a problem hiding this comment.
Pull request overview
This PR restructures the "Building with AI" documentation page to focus on the new Stellar Development Skill as the primary integration method for AI coding assistants, replacing generic AI tool tutorials with more Stellar-specific guidance.
Changes:
- Added comprehensive documentation for the Stellar Development Skill, including installation instructions and platform support
- Updated llms.txt to include the Building with AI page in the documentation index
- Removed outdated generic AI tool UI tutorials and custom application code examples to reduce maintenance burden
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
| static/llms.txt | Added Building with AI page to the documentation index |
| docs/tools/developer-tools/building-with-ai.mdx | Major restructuring to feature Stellar Development Skill with installation guides, platform support table, and streamlined AI tool references |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| | Platform | Skills directory | | ||
| |----------|------------------| | ||
| | [Claude Code](https://docs.anthropic.com/en/docs/claude-code) | `~/.claude/skills/` | | ||
| | [OpenCode](https://opencode.ai) | `~/.config/opencode/skill/` | |
There was a problem hiding this comment.
The OpenCode skills directory path uses the singular form skill while all other platforms use the plural form skills. This inconsistency should be verified against the actual OpenCode implementation to ensure the correct path is documented. If OpenCode indeed uses the singular form, this is correct; otherwise, it should be changed to match the pattern.
| | [OpenCode](https://opencode.ai) | `~/.config/opencode/skill/` | | |
| | [OpenCode](https://opencode.ai) | `~/.config/opencode/skills/` | |
| - Smart Contracts: https://developers.stellar.org/docs/build/smart-contracts | ||
| - Stellar CLI: https://developers.stellar.org/docs/tools/cli | ||
| - SDKs: https://developers.stellar.org/docs/tools/sdks | ||
| ```bash |
There was a problem hiding this comment.
The command /plugin marketplace add stellar/stellar-dev-skill appears to be a chat command for Claude Code rather than a bash command. Using bash as the code fence language is misleading since this is not a terminal command but rather a command to be typed within Claude Code's interface. Consider changing the language identifier to text or adding a note explaining this is a Claude Code interface command, not a bash command.
| ```bash | |
| ```text |
| Google's Gemini offers context customization through: | ||
| ```bash | ||
| git clone https://github.com/stellar/stellar-dev-skill | ||
| cp -r stellar-dev-skill/skill ~/.claude/skills/stellar-dev |
There was a problem hiding this comment.
The manual installation instructions describe a generic process ("copy to your agent's skills location") but the example command only shows installation for Claude Code. This could be confusing for users of other platforms. Consider either adding examples for other platforms or making it clear that the command shown is just one example and users should adjust the path according to the table above.
| cp -r stellar-dev-skill/skill ~/.claude/skills/stellar-dev | |
| cp -r stellar-dev-skill/skill /path/to/your/agent/skills/stellar-dev | |
| # Example (Claude Code): cp -r stellar-dev-skill/skill ~/.claude/skills/stellar-dev | |
| # Example (OpenCode): cp -r stellar-dev-skill/skill ~/.config/opencode/skill/stellar-dev |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Restructured the page to focus on the most effective AI integration methods:
Fixes #2221