create-claude-webapp 1.0.2 → 1.0.3
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
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
[](https://github.com/svenmalvik/claude-boilerplate-4-web/pulls)
|
|
8
8
|
|
|
9
9
|
> 🔱 This is an opinionated version of [shinpr/ai-coding-project-boilerplate](https://github.com/shinpr/ai-coding-project-boilerplate)
|
|
10
|
+
>
|
|
11
|
+
> 🛠️ **Tech Stack:** TypeScript · Supabase · Vercel · Stack Auth
|
|
10
12
|
|
|
11
13
|
⚡ **This boilerplate is for developers who want to:**
|
|
12
14
|
- Build **production-ready TypeScript projects** faster with AI
|
|
@@ -40,7 +42,7 @@ claude # Launch Claude Code
|
|
|
40
42
|
/implement <your feature> # Start building!
|
|
41
43
|
```
|
|
42
44
|
|
|
43
|
-
> 💡 **First time?** Check the [Quick Start Guide](docs/guides/
|
|
45
|
+
> 💡 **First time?** Check the [Quick Start Guide](docs/guides/quickstart.md) for detailed setup instructions
|
|
44
46
|
|
|
45
47
|
## 🚀 Why Sub Agents?
|
|
46
48
|
|
|
@@ -98,9 +100,9 @@ This boilerplate provides the principles used in agentic implementation workflow
|
|
|
98
100
|
|
|
99
101
|
## 📚 Documentation & Guides
|
|
100
102
|
|
|
101
|
-
- **[Quick Start Guide](docs/guides/
|
|
102
|
-
- **[Use Cases & Commands](docs/guides/
|
|
103
|
-
- **[Rule Editing Guide](docs/guides/
|
|
103
|
+
- **[Quick Start Guide](docs/guides/quickstart.md)** - Get running in 5 minutes
|
|
104
|
+
- **[Use Cases & Commands](docs/guides/use-cases.md)** - Daily workflow reference
|
|
105
|
+
- **[Rule Editing Guide](docs/guides/rule-editing-guide.md)** - Customize for your project
|
|
104
106
|
|
|
105
107
|
## 📝 Slash Commands
|
|
106
108
|
|
|
@@ -131,7 +133,7 @@ Essential commands for Claude Code:
|
|
|
131
133
|
| `/refine-skill` | Implement skill change requests | Customizing skills |
|
|
132
134
|
| `/sync-skills` | Synchronize skill metadata | After skill edits |
|
|
133
135
|
|
|
134
|
-
[Full command reference →](docs/guides/
|
|
136
|
+
[Full command reference →](docs/guides/use-cases.md)
|
|
135
137
|
|
|
136
138
|
## 🤖 Claude Code Workflow
|
|
137
139
|
|
|
@@ -36,7 +36,7 @@ cp -r temp-boilerplate/docs/adr docs/
|
|
|
36
36
|
cp -r temp-boilerplate/docs/design docs/
|
|
37
37
|
cp -r temp-boilerplate/docs/plans docs/
|
|
38
38
|
cp -r temp-boilerplate/docs/prd docs/
|
|
39
|
-
cp -r temp-boilerplate/docs/guides/
|
|
39
|
+
cp -r temp-boilerplate/docs/guides/sub-agents.md docs/guides/sub-agents.md
|
|
40
40
|
cp temp-boilerplate/CLAUDE.md .
|
|
41
41
|
```
|
|
42
42
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-claude-webapp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"packageManager": "npm@10.8.2",
|
|
5
5
|
"description": "TypeScript boilerplate with skills and sub-agents for Claude Code. Prevents context exhaustion through role-based task splitting.",
|
|
6
6
|
"keywords": [
|
|
File without changes
|
|
File without changes
|