@rebasepro/agent-skills 0.7.0
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/README.md +96 -0
- package/package.json +15 -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 +1283 -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 +750 -0
- package/skills/rebase-basics/references/.gitkeep +3 -0
- package/skills/rebase-collections/SKILL.md +1383 -0
- package/skills/rebase-collections/references/.gitkeep +3 -0
- package/skills/rebase-cron-jobs/SKILL.md +699 -0
- package/skills/rebase-cron-jobs/references/.gitkeep +1 -0
- package/skills/rebase-custom-functions/SKILL.md +233 -0
- package/skills/rebase-deployment/SKILL.md +885 -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 +594 -0
- package/skills/rebase-sdk/references/.gitkeep +0 -0
- package/skills/rebase-security/SKILL.md +606 -0
- package/skills/rebase-storage/SKILL.md +765 -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 +1488 -0
- package/skills/rebase-ui-components/references/.gitkeep +3 -0
- package/skills/rebase-webhooks/SKILL.md +623 -0
- package/skills/rebase-webhooks/references/.gitkeep +1 -0
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,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rebasepro/agent-skills",
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Bundled AI agent skills for Rebase",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"files": [
|
|
8
|
+
"skills/"
|
|
9
|
+
],
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./package.json",
|
|
12
|
+
"./package.json": "./package.json",
|
|
13
|
+
"./skills": "./skills/"
|
|
14
|
+
}
|
|
15
|
+
}
|