project-setup-info-local

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

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Setting up a new project from scratch involves many manual steps: choosing the right generator, configuring dependencies, creating folder structures, and writing boilerplate config files. This Skill provides guided, framework-specific setup instructions so a complete project can be initialized correctly in one flow. ## 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 .vscode/mcp.json configuration for debugging in VS Code. - Python Project Templates: Create Python script or package projects through the VS Code Python Environments extension command. - Use Case: A user asks to "create a new React app with TypeScript" — the Skill selects the Vite setup path and runs create-vite with the react-ts template, producing a ready-to-run project. ## Quick Start Ask the assistant to set up a new project, for example: create 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 --package yo --package generator-code -- yo code . --skipOpen in an empty folder. The generator supports TypeScript, JavaScript, color themes, language grammars, snippets, and keymaps, with options for bundling via webpack or esbuild.

How do I set up a Next.js project with TypeScript?▼

Run npx create-next-app@latest . in the target folder. TypeScript and Tailwind CSS are defaults; you can add flags like --app for the App Router, --src-dir, --turbopack, or choose a package manager with --use-npm, --use-pnpm, --use-yarn, or --use-bun.

What templates does Vite support for new projects?▼

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

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

Yes, MCP servers can be created in TypeScript, JavaScript, Python, C#, Java, and Kotlin. The setup fetches the correct SDK instructions from modelcontextprotocol.io and creates an mcp.json file in .vscode so the server can be debugged in VS Code.

When should I not use this project setup skill?▼

Do not use it for creating individual files, adding components to existing projects, or modifying existing code. It is designed only for full project initialization in an empty folder or newly created workspace.