create-claude-webapp 1.0.1 → 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
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
# AI Coding Project Boilerplate 🤖
|
|
2
2
|
|
|
3
|
-
*Read this in other languages: [日本語](README.ja.md)*
|
|
4
|
-
|
|
5
3
|
[](https://www.typescriptlang.org/)
|
|
6
4
|
[](https://nodejs.org/)
|
|
7
5
|
[](https://claude.ai/code)
|
|
8
6
|
[](https://opensource.org/licenses/MIT)
|
|
9
7
|
[](https://github.com/svenmalvik/claude-boilerplate-4-web/pulls)
|
|
10
8
|
|
|
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
|
|
12
|
+
|
|
11
13
|
⚡ **This boilerplate is for developers who want to:**
|
|
12
14
|
- Build **production-ready TypeScript projects** faster with AI
|
|
13
15
|
- Avoid **context exhaustion** in long AI coding sessions
|
|
@@ -23,8 +25,7 @@
|
|
|
23
25
|
7. [Development Workflow](#-claude-code-workflow)
|
|
24
26
|
8. [Project Structure](#-project-structure)
|
|
25
27
|
9. [Package Manager Configuration](#-package-manager-configuration)
|
|
26
|
-
10. [
|
|
27
|
-
11. [FAQ](#-faq)
|
|
28
|
+
10. [FAQ](#-faq)
|
|
28
29
|
|
|
29
30
|
## ⚡ Quick Start (3 Steps)
|
|
30
31
|
|
|
@@ -41,7 +42,7 @@ claude # Launch Claude Code
|
|
|
41
42
|
/implement <your feature> # Start building!
|
|
42
43
|
```
|
|
43
44
|
|
|
44
|
-
> 💡 **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
|
|
45
46
|
|
|
46
47
|
## 🚀 Why Sub Agents?
|
|
47
48
|
|
|
@@ -99,9 +100,9 @@ This boilerplate provides the principles used in agentic implementation workflow
|
|
|
99
100
|
|
|
100
101
|
## 📚 Documentation & Guides
|
|
101
102
|
|
|
102
|
-
- **[Quick Start Guide](docs/guides/
|
|
103
|
-
- **[Use Cases & Commands](docs/guides/
|
|
104
|
-
- **[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
|
|
105
106
|
|
|
106
107
|
## 📝 Slash Commands
|
|
107
108
|
|
|
@@ -132,7 +133,7 @@ Essential commands for Claude Code:
|
|
|
132
133
|
| `/refine-skill` | Implement skill change requests | Customizing skills |
|
|
133
134
|
| `/sync-skills` | Synchronize skill metadata | After skill edits |
|
|
134
135
|
|
|
135
|
-
[Full command reference →](docs/guides/
|
|
136
|
+
[Full command reference →](docs/guides/use-cases.md)
|
|
136
137
|
|
|
137
138
|
## 🤖 Claude Code Workflow
|
|
138
139
|
|
|
@@ -247,18 +248,6 @@ The above are representative examples. The following scripts are referenced in r
|
|
|
247
248
|
|
|
248
249
|
`build`, `build:frontend`, `dev`, `preview`, `type-check`, `test`, `test:coverage`, `test:coverage:fresh`, `test:safe`, `cleanup:processes`, `check`, `check:fix`, `check:code`, `check:unused`, `check:deps`, `check:all`, `format`, `format:check`, `lint`, `lint:fix`
|
|
249
250
|
|
|
250
|
-
## 🌐 Multilingual Support
|
|
251
|
-
|
|
252
|
-
Full support for English and Japanese:
|
|
253
|
-
|
|
254
|
-
```bash
|
|
255
|
-
npm run lang:en # Switch to English
|
|
256
|
-
npm run lang:ja # Switch to Japanese
|
|
257
|
-
npm run lang:status # Check current language
|
|
258
|
-
```
|
|
259
|
-
|
|
260
|
-
Automatically updates all configurations, rules, and agent definitions.
|
|
261
|
-
|
|
262
251
|
## 🤔 FAQ
|
|
263
252
|
|
|
264
253
|
**Q: How do sub agents work?**
|
|
@@ -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
|