AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Project Setup

skill-wrm3-ai-project-template-project-setup · by wrm3

Initialize new projects with proper structure, documentation, and configuration. Use when setting up new repositories or project scaffolding.

No reviews yet
0 installs
28 views
0.0% view→install

Install

$ agentstack add skill-wrm3-ai-project-template-project-setup

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-wrm3-ai-project-template-project-setup)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
10mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Project Setup? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Project Setup Skill

Overview

This Skill helps initialize new projects with standardized structure, documentation templates, and configuration files for multiple AI IDEs.

Capabilities

  • Create standard folder structure
  • Initialize git repository
  • Set up AI assistant configurations (Cursor, Claude Code, Windsurf, Roo-Code)
  • Create documentation templates
  • Initialize task management system
  • Set up MCP tool configurations

Standard Project Structure

project-name/
├── CLAUDE.md                    # Claude Code reference
├── README.md                    # Project documentation
├── .gitignore                   # Git ignore rules
├── .claude/                     # Claude Code config
│   ├── agents/
│   ├── commands/
│   └── skills/
├── .cursor/                     # Cursor IDE config
│   └── rules/
├── .fstrent_spec_tasks/        # Task management
│   ├── tasks/
│   ├── features/
│   ├── TASKS.md
│   └── PLAN.md
├── docs/                        # Documentation
└── temp_scripts/                # Test scripts

When to Use

Use this Skill when:

  • Starting a new project from scratch
  • Converting an existing project to use AI assistant tools
  • Setting up standardized development environment
  • Creating project templates
  • User mentions: "new project", "initialize", "setup", "scaffold"

Setup Process

1. Create Base Structure

# Create main folders
mkdir -p docs temp_scripts

# Create AI IDE configurations
mkdir -p .claude/agents .claude/commands .claude/skills
mkdir -p .cursor/rules

2. Initialize Git

git init
# Create .gitignore with common patterns

3. Create Documentation

  • CLAUDE.md - Main project reference
  • README.md - Project overview
  • docs/ folder for additional documentation

4. Initialize Task Management

Use MCP tool: fstrent_tasks_setup to initialize the task management system

5. Create Initial Files

  • Project context documentation
  • Basic configuration files
  • Example templates

Configuration Templates

.gitignore Template

# Dependencies
node_modules/
venv/
__pycache__/

# IDE
.vscode/
.idea/

# Environment
.env
.env.local

# Build outputs
dist/
build/
*.pyc

# Logs
*.log
logs/

# OS
.DS_Store
Thumbs.db

README.md Template

# Project Name

## Description
Brief description of the project

## Setup
Installation and setup instructions

## Usage
How to use the project

## Development
Development guidelines and commands

## License
License information

Best Practices

  • Always create a comprehensive .gitignore
  • Document the project structure in CLAUDE.md
  • Set up task management from the start
  • Include example configurations
  • Create clear README with setup instructions
  • Initialize version control early

Resources

This Skill works with:

  • fstrent_tasks MCP tool for task management
  • Git for version control
  • Multiple AI IDE configurations

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.