スキル一覧に戻る
erwinkn

project-init

by erwinkn

Cross-platform AI tool configuration (Claude Code, etc.)

0🍴 0📅 2026年1月20日
GitHubで見るManusで実行

SKILL.md


name: project-init description: Guidance for initializing new projects. Use framework/package manager commands instead of manual scaffolding.

Project Initialization Best Practices

When creating new projects, always prefer official CLI tools and scaffolding commands over manually creating files and directories. These tools:

  • Set up correct project structure and config
  • Install dependencies with compatible versions
  • Configure build tools, linting, testing
  • Follow framework best practices

JavaScript/TypeScript

FrameworkCommand
Vitebun create vite or npm create vite@latest
Next.jsbunx create-next-app or npx create-next-app@latest
Remixbunx create-remix or npx create-remix@latest
Astrobun create astro or npm create astro@latest
SvelteKitbun create svelte or npm create svelte@latest
Nuxtbunx nuxi init or npx nuxi@latest init
React Nativenpx @react-native-community/cli init
Expobunx create-expo-app or npx create-expo-app
Electronnpm init electron-app@latest
Tauribun create tauri-app or npm create tauri-app@latest

Python

ToolCommand
uv (recommended)uv init or uv init --lib for libraries
Poetrypoetry new <name> or poetry init
PDMpdm init
Hatchhatch new <name>
Djangodjango-admin startproject <name>
FlaskUse cookiecutter or manual (minimal structure)
FastAPIUse cookiecutter or fastapi-cli

Other Languages

Language/FrameworkCommand
Rustcargo new <name> or cargo init
Gogo mod init <module>
Ruby on Railsrails new <name>
.NETdotnet new <template>
Java (Spring)Use start.spring.io or Spring CLI
Kotlingradle init or IntelliJ

Monorepo Tools

ToolCommand
Turborepobunx create-turbo or npx create-turbo@latest
Nxbunx create-nx-workspace or npx create-nx-workspace
Lernanpx lerna init

Key Principles

  1. Don't manually create config files - Let the CLI generate them
  2. Use interactive prompts - Most CLIs ask about TypeScript, linting, testing
  3. Check framework docs - Commands change; verify current syntax
  4. Prefer bun/bunx when available - Faster than npm/npx
  5. Use templates - Many CLIs offer starter templates (e.g., --template react-ts)

When Manual Setup is OK

  • Adding to existing monorepo with specific conventions
  • Learning how tools work under the hood
  • Very minimal projects (single script)
  • Custom build requirements not covered by templates

スコア

総合スコア

40/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です