setup

Provision a sandboxed Git worktree to isolate code-generation tasks.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/mrsknetwork/nemodev --skill setup-mrsknetwork
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: setup
Source: https://github.com/mrsknetwork/nemodev/tree/main/skills/setup
Command: npx skills add https://github.com/mrsknetwork/nemodev --skill setup-mrsknetwork

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Isolates code-generation tasks by provisioning a sandboxed Git worktree to prevent pollution of the main branches during AI-driven development.

Core Features & Use Cases

  • Workspace isolation using Git worktrees to keep generation in a sandbox
  • Baseline/environment verification and safe setup
  • Handoff to downstream skills inside the sandbox with clear lifecycle guidance

Quick Start

Create a temporary git worktree for the current task and switch your working directory to the sandbox.

Frequently Asked Questions about setup

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

FAQPage Schema
How do I isolate AI code generation from my main git branch?

You can isolate AI code generation by provisioning a sandboxed git worktree, which creates a separate working directory linked to the same repository to prevent pollution of main branches during planning and review.

What is a git worktree and when should I use it for multi-step builds?

A git worktree is a linked working directory that allows you to checkout multiple branches simultaneously. You should use it for multi-step builds to keep generation tasks safely sandboxed away from your primary workspace.

How do I set up a sandboxed workspace for automated code scaffolding?

To set up a sandboxed workspace for automated scaffolding, apply the setup skill at the start of a new project to verify your environment, create a baseline, and provision a temporary git worktree for safe generation.

Can I reuse an existing git worktree for multiple code generation tasks?

Yes, you can reuse an existing git worktree for multiple tasks. The setup workflow provides clear lifecycle guidance for reusing worktrees, ensuring you maintain safe isolation without needing to recreate the sandbox each time.

How do I clean up a git worktree after finishing code generation?

You clean up a git worktree after code generation by following the handoff and cleanup workflows provided by the setup skill, which safely removes the sandboxed environment and ensures your main branches remain unpolluted.

Do I need a clean repository before creating a sandboxed worktree?

You need a clean baseline before creating a sandboxed worktree. The setup process performs environment verification and baseline checks on your current repository to ensure safe worktree creation before generation begins.