@0xsown/vibe-code-fe 1.0.0 → 1.0.1
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 +55 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# @0xsown/vibe-code-fe
|
|
2
|
+
|
|
3
|
+
Zero-config AI skills initialization for frontend projects.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx @0xsown/vibe-code-fe
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Run this once in your project root. That's it.
|
|
12
|
+
|
|
13
|
+
## What it does
|
|
14
|
+
|
|
15
|
+
Installs bundled AI skills and config files into your project:
|
|
16
|
+
|
|
17
|
+
| IDE | Location |
|
|
18
|
+
|---|---|
|
|
19
|
+
| Claude Code | `.claude/skills/` + `.claude/CLAUDE.md` |
|
|
20
|
+
| Antigravity | `.agents/skills/` + `.agents/AGENTS.md` |
|
|
21
|
+
| Cursor | `.cursor/rules/*.mdc` (if `.cursor/` detected) |
|
|
22
|
+
|
|
23
|
+
`.claude/skills` and `.agent/skills` are symlinked to `.agents/skills` — one source of truth, no duplicates.
|
|
24
|
+
|
|
25
|
+
Existing skills (including symlinks from `npx skills add`) are never overwritten.
|
|
26
|
+
|
|
27
|
+
## Bundled skills
|
|
28
|
+
|
|
29
|
+
- `vercel-react-best-practices` — React & Next.js performance patterns
|
|
30
|
+
- `vercel-composition-patterns` — React composition patterns that scale
|
|
31
|
+
- `web-design-guidelines` — UI/UX and accessibility guidelines
|
|
32
|
+
- `frontend-design` — Frontend design best practices
|
|
33
|
+
- `next-best-practices` — Next.js conventions
|
|
34
|
+
- `next-cache-components` — Next.js caching strategies
|
|
35
|
+
- `shadcn-ui` — shadcn/ui usage patterns
|
|
36
|
+
- `tailwind-design-system` — Tailwind design system
|
|
37
|
+
- `supabase-postgres-best-practices` — Supabase & Postgres patterns
|
|
38
|
+
- `find-skills` — Discover and install more skills
|
|
39
|
+
- `claude-md-improver` — Improve your CLAUDE.md
|
|
40
|
+
- `vercel-react-native-skills` — React Native & Expo patterns
|
|
41
|
+
|
|
42
|
+
## Options
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
-v, --version Show version number
|
|
46
|
+
-h, --help Show help
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Requirements
|
|
50
|
+
|
|
51
|
+
- Node.js >= 16
|
|
52
|
+
|
|
53
|
+
## License
|
|
54
|
+
|
|
55
|
+
MIT
|