project-structure
について
このスキルは、様々なプロジェクトタイプにわたるコードベースを整理するための包括的なプロジェクト構造ガイドラインとベストプラクティスを提供します。モノレポ、Webフレームワーク、バックエンドサービス、ライブラリに対する標準化されたディレクトリパターンを提供し、スケーラブルで保守性の高いアーキテクチャを保証します。新しいプロジェクト構造の設計時、モノレポワークスペースの整理時、またはチーム向けのコード整理規約を確立する際にご利用ください。
クイックインストール
Claude Code
推奨/plugin add https://github.com/KubrickCode/ai-config-toolkitgit clone https://github.com/KubrickCode/ai-config-toolkit.git ~/.claude/skills/project-structureこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします
ドキュメント
Project Structure Guide
Monorepo
project-root/
├── src/ # All services/apps
├── infra/ # Shared infrastructure
├── docs/ # Documentation
├── .devcontainer/ # Dev Container configuration
├── .github/ # Workflows, templates
├── .vscode/ # VSCode settings
├── .claude/ # Claude settings
├── .gemini/ # Gemini settings
├── package.json # Root package.json. For releases, version management
├── go.work # Go workspace (when using Go)
├── justfile # Just task runner
├── .gitignore
├── .prettierrc
├── .prettierignore
└── README.md
NestJS
project-root/
├── src/
│ ├── domains/
│ ├── common/
│ ├── config/
│ ├── database/
│ ├── app.module.ts
│ └── main.ts
├── tests/
├── package.json
└── tsconfig.json
React
project-root/
├── src/
│ ├── pages/ # Page modules
│ ├── domains/ # Domain-shared code
│ ├── components/ # Common UI components
│ ├── layouts/ # Layout-related
│ ├── libs/ # Feature libraries (auth, api, theme)
│ ├── shared/ # Pure utilities
│ ├── app.tsx
│ └── main.tsx
├── public/
├── package.json
├── vite.config.ts
└── tsconfig.json
Next.js
project-root/
├── app/
│ ├── (routes)/ # Pages (route groups)
│ ├── actions/ # Server Actions (internal mutations)
│ └── api/ # API Routes (external integrations only)
├── components/ # Shared components
├── lib/ # Utilities and clients
├── public/ # Static assets
├── middleware.ts # Edge/Node.js middleware
├── next.config.js
├── package.json
└── tsconfig.json
Go
project-root/
├── cmd/ # Execution entry points (main.go)
├── internal/ # Private packages
├── pkg/ # Public packages
├── configs/ # Configuration files
├── scripts/ # Utility scripts
├── tests/ # Integration tests
├── docs/ # Documentation
├── go.mod
└── go.sum
NPM
project-root/
├── cli/ # CLI execution entry point
├── internal/ # Private packages
├── pkg/ # Public packages
├── configs/ # Configuration files
├── scripts/ # Utility scripts
├── tests/ # Integration tests
├── docs/ # Documentation
├── dist/ # Build artifacts
├── package.json
├── tsconfig.json
└── README.md
IDE Extension
project-root/
├── extension/ # Extension entry point (activate/deactivate)
├── internal/ # Private packages
├── pkg/ # Public packages
├── view/ # WebView (if applicable)
├── configs/ # Configuration files
├── scripts/ # Utility scripts
├── tests/ # Integration tests
├── public/ # Static resources (icons, etc.)
├── dist/ # Build artifacts
├── package.json
├── tsconfig.json
└── .vscodeignore
Chrome Extension
project-root/
├── background/ # Service Worker (Background Script)
├── content/ # Content Scripts
├── popup/ # Popup (Extension UI)
├── internal/ # Private packages
├── pkg/ # Public packages
├── configs/ # Configuration files
├── scripts/ # Utility scripts
├── tests/ # Integration tests
├── public/ # Static resources
├── dist/ # Build artifacts
├── package.json
└── tsconfig.json
GitHub リポジトリ
関連スキル
content-collections
メタThis skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.
creating-opencode-plugins
メタThis skill provides the structure and API specifications for creating OpenCode plugins that hook into 25+ event types like commands, files, and LSP operations. It offers implementation patterns for JavaScript/TypeScript modules that intercept and extend the AI assistant's lifecycle. Use it when you need to build event-driven plugins for monitoring, custom handling, or extending OpenCode's capabilities.
evaluating-llms-harness
テストThis Claude Skill runs the lm-evaluation-harness to benchmark LLMs across 60+ standardized academic tasks like MMLU and GSM8K. It's designed for developers to compare model quality, track training progress, or report academic results. The tool supports various backends including HuggingFace and vLLM models.
sglang
メタSGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.
