@intentsolutionsio/fullstack-starter-pack 1.0.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/.claude-plugin/plugin.json +31 -0
- package/LICENSE +21 -0
- package/README.md +168 -0
- package/agents/api-builder.md +610 -0
- package/agents/backend-architect.md +574 -0
- package/agents/database-designer.md +509 -0
- package/agents/deployment-specialist.md +603 -0
- package/agents/react-specialist.md +668 -0
- package/agents/ui-ux-expert.md +652 -0
- package/commands/auth-setup.md +422 -0
- package/commands/component-generator.md +343 -0
- package/commands/css-utility-generator.md +621 -0
- package/commands/env-config-setup.md +338 -0
- package/commands/express-api-scaffold.md +659 -0
- package/commands/fastapi-scaffold.md +674 -0
- package/commands/prisma-schema-gen.md +582 -0
- package/commands/project-scaffold.md +355 -0
- package/commands/sql-query-builder.md +461 -0
- package/package.json +52 -0
- package/skills/skill-adapter/assets/README.md +8 -0
- package/skills/skill-adapter/assets/config-template.json +32 -0
- package/skills/skill-adapter/assets/example_env_config.txt +100 -0
- package/skills/skill-adapter/assets/skill-schema.json +28 -0
- package/skills/skill-adapter/assets/test-data.json +27 -0
- package/skills/skill-adapter/references/README.md +4 -0
- package/skills/skill-adapter/references/best-practices.md +69 -0
- package/skills/skill-adapter/references/examples.md +73 -0
- package/skills/skill-adapter/scripts/README.md +7 -0
- package/skills/skill-adapter/scripts/helper-template.sh +42 -0
- package/skills/skill-adapter/scripts/validation.sh +32 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "fullstack-starter-pack",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Complete fullstack development toolkit: React, Express/FastAPI, PostgreSQL scaffolding with AI agents",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Jeremy Longshore",
|
|
7
|
+
"email": "[email protected]",
|
|
8
|
+
"url": "https://github.com/jeremylongshore"
|
|
9
|
+
},
|
|
10
|
+
"repository": "https://github.com/jeremylongshore/claude-code-plugins",
|
|
11
|
+
"homepage": "https://claudecodeplugins.io/",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"fullstack",
|
|
15
|
+
"react",
|
|
16
|
+
"express",
|
|
17
|
+
"fastapi",
|
|
18
|
+
"postgresql",
|
|
19
|
+
"prisma",
|
|
20
|
+
"typescript",
|
|
21
|
+
"authentication",
|
|
22
|
+
"scaffolding",
|
|
23
|
+
"components",
|
|
24
|
+
"api",
|
|
25
|
+
"database",
|
|
26
|
+
"deployment",
|
|
27
|
+
"docker",
|
|
28
|
+
"ci-cd",
|
|
29
|
+
"mvp"
|
|
30
|
+
]
|
|
31
|
+
}
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-2026 Jeremy Longshore & Contributors
|
|
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,168 @@
|
|
|
1
|
+
# Fullstack Starter Pack - Documentation
|
|
2
|
+
|
|
3
|
+
Complete documentation for the Fullstack Starter Pack plugin collection for Claude Code.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## What is Fullstack Starter Pack?
|
|
8
|
+
|
|
9
|
+
**15 professional plugins** (8 AI agents + 7 commands) that accelerate fullstack web development from project setup to deployment. Build production-ready React, Express/FastAPI, PostgreSQL applications in hours, not weeks.
|
|
10
|
+
|
|
11
|
+
**Key Features:**
|
|
12
|
+
- **Frontend:** React components, UI/UX design, utility CSS generation
|
|
13
|
+
- **Backend:** Express/FastAPI scaffolding, API design, architecture
|
|
14
|
+
- **Database:** Prisma schema generation, SQL queries, schema design
|
|
15
|
+
- **Integration:** Authentication, environment config, project scaffolding, deployment
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## Quick Links
|
|
20
|
+
|
|
21
|
+
- **[Installation Guide](INSTALLATION.md)** - Get started in 5 minutes
|
|
22
|
+
- **[Quick Start Guide](QUICK_START.md)** - Build your first project
|
|
23
|
+
- **[Use Cases](USE_CASES.md)** - Real-world examples and ROI
|
|
24
|
+
- **[Troubleshooting](TROUBLESHOOTING.md)** - Common issues and solutions
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Documentation Structure
|
|
29
|
+
|
|
30
|
+
### Getting Started
|
|
31
|
+
- **Installation** - System requirements, installation methods, verification
|
|
32
|
+
- **Quick Start** - 10-minute walkthrough, common workflows, plugin reference
|
|
33
|
+
|
|
34
|
+
### In-Depth Guides
|
|
35
|
+
- **Use Cases** - 6 real-world scenarios with quantified results
|
|
36
|
+
- **Troubleshooting** - Solutions to common issues
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## What's Included
|
|
41
|
+
|
|
42
|
+
### AI Agents (8)
|
|
43
|
+
|
|
44
|
+
**Frontend:**
|
|
45
|
+
- **React Specialist** - React 18+ hooks, Server Components, performance
|
|
46
|
+
- **UI/UX Expert** - Accessibility (WCAG 2.1), responsive design, design systems
|
|
47
|
+
|
|
48
|
+
**Backend:**
|
|
49
|
+
- **API Builder** - RESTful/GraphQL API design, authentication, rate limiting
|
|
50
|
+
- **Backend Architect** - Scalability, microservices, caching, message queues
|
|
51
|
+
|
|
52
|
+
**Database:**
|
|
53
|
+
- **Database Designer** - SQL/NoSQL schema design, normalization, indexing
|
|
54
|
+
|
|
55
|
+
**Integration:**
|
|
56
|
+
- **Deployment Specialist** - CI/CD, Docker, Kubernetes, cloud platforms
|
|
57
|
+
|
|
58
|
+
### Commands (7)
|
|
59
|
+
|
|
60
|
+
**Frontend:**
|
|
61
|
+
- `/component-generator` (`/cg`) - Generate React components with TypeScript
|
|
62
|
+
- `/css-utility-generator` (`/cug`) - Generate utility CSS classes
|
|
63
|
+
|
|
64
|
+
**Backend:**
|
|
65
|
+
- `/express-api-scaffold` (`/eas`) - Generate Express.js API boilerplate
|
|
66
|
+
- `/fastapi-scaffold` (`/fas`) - Generate FastAPI boilerplate
|
|
67
|
+
|
|
68
|
+
**Database:**
|
|
69
|
+
- `/prisma-schema-gen` (`/psg`) - Generate Prisma database schemas
|
|
70
|
+
- `/sql-query-builder` (`/sqb`) - Generate optimized SQL queries
|
|
71
|
+
|
|
72
|
+
**Integration:**
|
|
73
|
+
- `/auth-setup` (`/as`) - Authentication boilerplate (JWT, OAuth)
|
|
74
|
+
- `/env-config-setup` (`/ecs`) - Environment configuration files
|
|
75
|
+
- `/project-scaffold` (`/ps`) - Complete fullstack project structure
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## Who Should Use This?
|
|
80
|
+
|
|
81
|
+
**Solo Founders** - Build MVPs faster without hiring a team
|
|
82
|
+
**Development Teams** - Standardize patterns and accelerate delivery
|
|
83
|
+
**Technical Founders** - Ship side projects while working full-time
|
|
84
|
+
**Junior Developers** - Learn from production-quality generated code
|
|
85
|
+
**Agencies** - Deliver client projects 3x faster
|
|
86
|
+
**Bootcamp Instructors** - Teach with real-world examples
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## Value Proposition
|
|
91
|
+
|
|
92
|
+
**Time Savings:**
|
|
93
|
+
- Project setup: 2-3 days → 30 minutes (95% reduction)
|
|
94
|
+
- Component development: 2 hours → 15 minutes per component
|
|
95
|
+
- API scaffolding: 1-2 days → 1 hour
|
|
96
|
+
- Authentication: 2-3 days → 1 hour
|
|
97
|
+
- Deployment setup: 1 day → 30 minutes
|
|
98
|
+
|
|
99
|
+
**Average Results:**
|
|
100
|
+
- **50-80 hours saved per project**
|
|
101
|
+
- **$5,000-$8,000 cost savings** (vs. contractor/consultant)
|
|
102
|
+
- **2-3x faster project delivery**
|
|
103
|
+
- **Production-ready code from day 1**
|
|
104
|
+
|
|
105
|
+
**ROI:** Pack pays for itself in first 15-30 minutes of use
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## Learning Resources
|
|
110
|
+
|
|
111
|
+
**Beginner:**
|
|
112
|
+
1. Start with [INSTALLATION.md](INSTALLATION.md)
|
|
113
|
+
2. Follow [QUICK_START.md](QUICK_START.md)
|
|
114
|
+
3. Generate your first project: `/project-scaffold "My App"`
|
|
115
|
+
|
|
116
|
+
**Intermediate:**
|
|
117
|
+
1. Review [USE_CASES.md](USE_CASES.md) for workflows
|
|
118
|
+
2. Explore individual agents and commands
|
|
119
|
+
3. Customize generated code for your needs
|
|
120
|
+
|
|
121
|
+
**Advanced:**
|
|
122
|
+
1. Study generated code patterns
|
|
123
|
+
2. Integrate with existing projects
|
|
124
|
+
3. Build custom plugins based on these examples
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## Support & Community
|
|
129
|
+
|
|
130
|
+
**Documentation:**
|
|
131
|
+
- Complete guides in `/docs` directory
|
|
132
|
+
- Inline comments in all generated code
|
|
133
|
+
- README files in generated projects
|
|
134
|
+
|
|
135
|
+
**Community:**
|
|
136
|
+
- Discord: https://discord.com/invite/claude-code (#claude-code channel)
|
|
137
|
+
- GitHub: https://github.com/jeremylongshore/claude-code-plugins
|
|
138
|
+
- Issues: Report bugs and request features
|
|
139
|
+
|
|
140
|
+
**Updates:**
|
|
141
|
+
```bash
|
|
142
|
+
# Check for updates
|
|
143
|
+
/plugin update fullstack-starter-pack
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
148
|
+
## License & Attribution
|
|
149
|
+
|
|
150
|
+
**License:** MIT License
|
|
151
|
+
**Author:** Jeremy Longshore
|
|
152
|
+
**Pricing:** $39 one-time purchase
|
|
153
|
+
|
|
154
|
+
See individual plugin files for detailed documentation and examples.
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
## Version History
|
|
159
|
+
|
|
160
|
+
**v1.0.0** (January 2025)
|
|
161
|
+
- Initial release
|
|
162
|
+
- 15 plugins (8 agents, 7 commands)
|
|
163
|
+
- Complete documentation
|
|
164
|
+
- Production-ready templates
|
|
165
|
+
|
|
166
|
+
---
|
|
167
|
+
|
|
168
|
+
**Start building fullstack applications faster. Get the Fullstack Starter Pack today.**
|