@rebasepro/agent-skills 0.0.1-canary.4829d6e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +96 -0
- package/package.json +21 -0
- package/skills/rebase-admin/SKILL.md +816 -0
- package/skills/rebase-api/SKILL.md +673 -0
- package/skills/rebase-api/references/.gitkeep +3 -0
- package/skills/rebase-auth/SKILL.md +1323 -0
- package/skills/rebase-auth/references/.gitkeep +3 -0
- package/skills/rebase-backend-postgres/SKILL.md +633 -0
- package/skills/rebase-backend-postgres/references/.gitkeep +3 -0
- package/skills/rebase-basics/SKILL.md +757 -0
- package/skills/rebase-basics/references/.gitkeep +3 -0
- package/skills/rebase-collections/SKILL.md +1421 -0
- package/skills/rebase-collections/references/.gitkeep +3 -0
- package/skills/rebase-cron-jobs/SKILL.md +704 -0
- package/skills/rebase-cron-jobs/references/.gitkeep +1 -0
- package/skills/rebase-custom-functions/SKILL.md +281 -0
- package/skills/rebase-deployment/SKILL.md +894 -0
- package/skills/rebase-deployment/references/.gitkeep +3 -0
- package/skills/rebase-design-language/SKILL.md +692 -0
- package/skills/rebase-email/SKILL.md +701 -0
- package/skills/rebase-email/references/.gitkeep +1 -0
- package/skills/rebase-entity-history/SKILL.md +485 -0
- package/skills/rebase-entity-history/references/.gitkeep +1 -0
- package/skills/rebase-local-env-setup/SKILL.md +189 -0
- package/skills/rebase-local-env-setup/references/.gitkeep +3 -0
- package/skills/rebase-realtime/SKILL.md +759 -0
- package/skills/rebase-realtime/references/.gitkeep +3 -0
- package/skills/rebase-sdk/SKILL.md +617 -0
- package/skills/rebase-sdk/references/.gitkeep +0 -0
- package/skills/rebase-security/SKILL.md +646 -0
- package/skills/rebase-storage/SKILL.md +989 -0
- package/skills/rebase-storage/references/.gitkeep +3 -0
- package/skills/rebase-studio/SKILL.md +772 -0
- package/skills/rebase-studio/references/.gitkeep +3 -0
- package/skills/rebase-ui-components/SKILL.md +1579 -0
- package/skills/rebase-ui-components/references/.gitkeep +3 -0
- package/skills/rebase-webhooks/SKILL.md +618 -0
- package/skills/rebase-webhooks/references/.gitkeep +1 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Rebase
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
<h1 align="center">
|
|
2
|
+
Rebase Agent Skills
|
|
3
|
+
</h1>
|
|
4
|
+
|
|
5
|
+
A collection of skills for AI coding agents, to help them understand and work with [Rebase](https://rebase.pro) more effectively.
|
|
6
|
+
|
|
7
|
+
Skills are packaged instructions and scripts that extend agent capabilities, following the [Agent Skills](https://agentskills.io/home) format.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
### Option 1: Agent Skills CLI
|
|
12
|
+
|
|
13
|
+
For most popular AI-assistive tools, you can use the `skills` CLI to install Rebase agent skills:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx skills add rebaseco/agent-skills
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Option 2: Gemini CLI Extension
|
|
20
|
+
|
|
21
|
+
This repository is configured as a Gemini CLI extension. You can add it using the Gemini CLI:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
gemini extensions install https://github.com/rebaseco/agent-skills
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Option 3: Claude Plugin
|
|
28
|
+
|
|
29
|
+
1. Add the Rebase marketplace for Claude plugins:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
claude plugin marketplace add rebaseco/agent-skills
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Install the Claude plugin for Rebase:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
claude plugin install rebase@rebaseco
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Verify the installation:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
claude plugin marketplace list
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Option 4: Manual Set Up
|
|
48
|
+
|
|
49
|
+
1. Clone this repository:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
git clone https://github.com/rebaseco/agent-skills.git
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
2. Copy the contents of the `skills` directory to the appropriate location for your AI tool. Common locations include:
|
|
56
|
+
- **Cursor**: `.cursor/rules/`
|
|
57
|
+
- **Windsurf**: `.windsurfrules/`
|
|
58
|
+
- **GitHub Copilot**: `.github/copilot-instructions.md` (or project-specific instruction files)
|
|
59
|
+
|
|
60
|
+
### Option 5: Local Path via Agent Skills CLI
|
|
61
|
+
|
|
62
|
+
The `skills` CLI also supports installing skills from a local directory. If you have cloned this repository, you can add skills by pointing the CLI to your local folder:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
npx skills add /path/to/your/local/rebase-agent-skills/skills
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
If you make changes to the local skills repository and want to update your project with the new changes, you can update them by running:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
npx skills experimental_install
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### Option 6: Local Development (Live Symlinking)
|
|
75
|
+
|
|
76
|
+
If you are actively contributing to or developing these skills, use a symlink so that changes in your local clone are immediately reflected in your test project.
|
|
77
|
+
|
|
78
|
+
For example, to test with Cursor:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
ln -s /path/to/rebase-agent-skills/skills /path/to/your/test-project/.cursor/rules
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## 🤝 Contributing
|
|
85
|
+
|
|
86
|
+
1. Fork the repository
|
|
87
|
+
2. Create a feature branch: `git checkout -b feature/amazing-feature`
|
|
88
|
+
3. Commit changes: `git commit -m 'Add amazing feature'`
|
|
89
|
+
4. Push to branch: `git push origin feature/amazing-feature`
|
|
90
|
+
5. Open a Pull Request (PR)
|
|
91
|
+
|
|
92
|
+
## 📄 License
|
|
93
|
+
|
|
94
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
95
|
+
|
|
96
|
+
**Made with ❤️ from Rebase for the AI community**
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rebasepro/agent-skills",
|
|
3
|
+
"version": "0.0.1-canary.4829d6e",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Bundled AI agent skills for Rebase",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/rebasepro/rebase.git",
|
|
10
|
+
"directory": "rebase-agent-skills"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"skills/"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
".": "./package.json",
|
|
17
|
+
"./package.json": "./package.json",
|
|
18
|
+
"./skills": "./skills/"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {}
|
|
21
|
+
}
|