create-claude-webapp 1.0.1 → 1.0.2
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 +3 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
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
11
|
⚡ **This boilerplate is for developers who want to:**
|
|
12
12
|
- Build **production-ready TypeScript projects** faster with AI
|
|
13
13
|
- Avoid **context exhaustion** in long AI coding sessions
|
|
@@ -23,8 +23,7 @@
|
|
|
23
23
|
7. [Development Workflow](#-claude-code-workflow)
|
|
24
24
|
8. [Project Structure](#-project-structure)
|
|
25
25
|
9. [Package Manager Configuration](#-package-manager-configuration)
|
|
26
|
-
10. [
|
|
27
|
-
11. [FAQ](#-faq)
|
|
26
|
+
10. [FAQ](#-faq)
|
|
28
27
|
|
|
29
28
|
## ⚡ Quick Start (3 Steps)
|
|
30
29
|
|
|
@@ -247,18 +246,6 @@ The above are representative examples. The following scripts are referenced in r
|
|
|
247
246
|
|
|
248
247
|
`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
248
|
|
|
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
249
|
## 🤔 FAQ
|
|
263
250
|
|
|
264
251
|
**Q: How do sub agents work?**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-claude-webapp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
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": [
|