project-setup-info-local

Scaffolds complete project structures for VS Code extensions, Next.js, Vite, MCP servers, and Python.

Updated Sep 3, 2026
One-click install
npx skills add https://github.com/az0512124155azz-sys/CodeForge --skill project-setup-info-local-az0512124155azz-sys
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: project-setup-info-local
Source: https://github.com/az0512124155azz-sys/CodeForge/tree/main/extensions/copilot/assets/prompts/skills/project-setup-info-local
Command: npx skills add https://github.com/az0512124155azz-sys/CodeForge --skill project-setup-info-local-az0512124155azz-sys

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Starting a new project from scratch involves many repetitive steps: creating folder structures, configuring package.json, setting up TypeScript configs, and installing dependencies. This Skill provides guided, framework-specific setup instructions so a complete, runnable project is initialized correctly the first time. ## Core Features & Use Cases - Framework Scaffolding: Initialize VS Code extensions (via Yeoman generator-code), Next.js apps, and Vite projects (React, Vue, Svelte, and more) with the correct CLI commands and arguments. - MCP Server Setup: Create Model Context Protocol servers in TypeScript, Python, C#, Java, or Kotlin, including the required .vscode/mcp.json configuration for debugging. - Python Projects: Create Python script or distributable package projects through the VS Code Python Environments extension commands. - Use Case: A user asks to "set up a new React TypeScript project" and the Skill directs the assistant to run create-vite with the react-ts template, producing a complete workspace with dependencies and config files. ## Quick Start Ask the assistant to create a new project of a specific type, for example: set up a new Next.js TypeScript project in this empty workspace folder.

Frequently Asked Questions about project-setup-info-local

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a new VS Code extension project?▼

Run npx with yo and generator-code using the command npx --package yo --package generator-code -- yo code . --skipOpen. You can specify the extension type, display name, package manager, and bundler through command arguments.

How to set up a Next.js or Vite project from scratch?▼

Use npx create-next-app@latest . for Next.js or npx create-vite@latest . for Vite in an empty folder. Vite supports templates for React, Vue, Svelte, Solid, Qwik, Preact, and Lit in TypeScript or JavaScript variants.

How do I create an MCP server project in VS Code?▼

Follow the Model Context Protocol SDK documentation for your chosen language, defaulting to TypeScript. Then create an mcp.json file in the .vscode folder defining the server name, run command, and arguments so it can be debugged in VS Code.

When should I not use project scaffolding instructions?▼

Do not use full project setup when creating single files, adding components to existing projects, or modifying existing code. These instructions are only for initializing complete new projects in empty folders or fresh workspaces.

Can I create a Python package project in VS Code?▼

Yes, with the ms-python.python and ms-python.vscode-python-envs extensions installed. The setup invokes the python-envs.createNewProjectFromTemplate command with the python-package template, a project name, and a target path.