-
Notifications
You must be signed in to change notification settings - Fork 4
Add AI Agent Skills Support for TeaPie #82
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
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
249458f
add skill creator
Burgyn 2d0a6b0
skills
Burgyn f75c9cb
skills
Burgyn f5654ce
skill
Burgyn 2c97561
readme
Burgyn 0121a2d
Add AI Agent Skills section to documentation and update getting start…
Burgyn 84ea790
remove unnecessery skill creator
Burgyn 6d5800e
Update documentation: remove outdated sections on request variables, …
Burgyn 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| # TeaPie Skills | ||
|
|
||
| This directory contains skills for the TeaPie framework that extend AI agent capabilities when working with TeaPie projects. | ||
|
|
||
| ## What are skills? | ||
|
|
||
| Skills are specialized knowledge and guides that help AI agents work more effectively with specific frameworks or technologies. The TeaPie skill provides comprehensive knowledge about the TeaPie framework, its syntax, CLI commands, test cases, and best practices. | ||
|
|
||
| ## Using skills in a project | ||
|
|
||
| If you want to use the TeaPie skill in another project, the agent can download it from this directory. The agent will automatically determine the correct target location based on the IDE it's working in: | ||
|
|
||
| - **Cursor**: `.cursor/skills/teapie/` | ||
| - **VS Code**: `.github/skills/teapie/` | ||
| - **Other IDEs**: The agent will decide based on standard conventions for that IDE | ||
|
|
||
| ## Prompt for agent to download skill | ||
|
|
||
| ```text | ||
| Download the TeaPie skill from the GitHub repository into this project. | ||
|
|
||
| The skill is located at: https://github.com/Kros-sk/TeaPie/tree/master/.cursor/skills/teapie/ | ||
|
|
||
| The agent should determine the target location based on the IDE it's working in: | ||
| - For Cursor: .cursor/skills/teapie/ | ||
| - For VS Code: .github/skills/teapie/ | ||
| - For other IDEs: use standard conventions for that IDE | ||
|
|
||
| Download the entire teapie directory (including SKILL.md and all subdirectories with their contents: references/, scripts/, templates/) from the GitHub repository and copy it to the correct target location in the project. | ||
| ``` | ||
|
|
||
| ## TeaPie skill contents | ||
|
|
||
| The TeaPie skill contains: | ||
|
|
||
| - Framework overview and capabilities | ||
| - Reference documentation for CLI commands, directives, variables, and functions | ||
| - Guides for creating and running tests | ||
| - Best practices for writing test cases | ||
| - Examples and templates | ||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid hard‑coding the branch in the download URL.
If the default branch changes, the link will go stale. Consider a branch-agnostic reference or wording.
🔧 Suggested doc tweak
🤖 Prompt for AI Agents