project-setup-info-local

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

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Starting a new project from scratch involves repetitive boilerplate work: creating folder structures, configuring package.json, setting up TypeScript configs, and installing dependencies. This Skill automates full project initialization so you can go from an empty folder to a working development environment in one step. ## 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 official CLI tools. - MCP Server Setup: Create Model Context Protocol servers in TypeScript, Python, C#, Java, or Kotlin, including the .vscode/mcp.json configuration for debugging. - Python Projects: Generate Python script or distributable package projects using the VS Code Python Environments extension. - Use Case: Ask to "set up a new Next.js project with TypeScript and Tailwind" and the Skill runs create-next-app with the correct flags, producing a ready-to-run application. ## Quick Start Ask the assistant to create a new Vite React TypeScript project in the current 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 Next.js project with TypeScript?▼

Run npx create-next-app@latest . in an empty folder. TypeScript and Tailwind CSS are enabled by default; add flags like --eslint, --app, or --src-dir to customize the generated structure.

How to scaffold a VS Code extension from scratch?▼

Use the Yeoman generator with npx --package yo --package generator-code -- yo code . --skipOpen. You can specify the extension type (ts, js, command-ts, etc.), display name, package manager, and bundler via command-line arguments.

What templates does create-vite support?▼

create-vite supports vanilla, Vue, React, Preact, Lit, Svelte, Solid, and Qwik templates, each available in JavaScript or TypeScript variants. Pass the template with the -t flag, for example -t react-ts.

Can I create an MCP server in Python or C#?▼

Yes, MCP servers support TypeScript, JavaScript, Python, C#, Java, and Kotlin. The setup fetches the correct SDK from the modelcontextprotocol repositories and creates a .vscode/mcp.json file so you can debug the server in VS Code.

When should I not use project scaffolding?▼

Do not use full project setup when creating single files, adding components to existing projects, or modifying existing code. Scaffolding is only appropriate for empty folders or brand-new workspaces requiring complete structure.