opencode-folder-creator

Generate .opencode folder structures with opencode.json config and agent directories.

Updated Jan 8, 2026
One-click install
npx skills add https://github.com/mdc159/LSP-Swarm --skill opencode-folder-creator-mdc159
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: opencode-folder-creator
Source: https://github.com/mdc159/LSP-Swarm/tree/main/opencode-agents/.claude/skills/opencode-folder-creator
Command: npx skills add https://github.com/mdc159/LSP-Swarm --skill opencode-folder-creator-mdc159

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill eliminates the manual effort of scaffolding OpenCode projects by creating a complete .opencode folder structure with all necessary configuration files, agents, and commands.

Core Features & Use Cases

  • Folder scaffolding: generates .opencode directory with agent and command subfolders and a ready configuration.
  • Config templates: provides a minimal opencode.json setup to bootstrap a swarm-ready project.
  • Swarm readiness: includes templates and patterns for agent directories that teams can customize for their OpenCode swarms.

Quick Start

Create a new OpenCode project structure:

  1. mkdir -p .opencode/{agent,command}
  2. cat > .opencode/opencode.json << 'EOF' { "$schema": "https://opencode.ai/config.json", "theme": "opencode", "autoupdate": true } EOF
  3. Add your first agent folder under .opencode/agent and begin deployment with opencode serve.

Frequently Asked Questions about opencode-folder-creator

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

FAQPage Schema
How do I create an OpenCode project folder structure for a swarm?

To scaffold an OpenCode project, generate a .opencode directory containing agent and command subfolders alongside a minimal opencode.json configuration file, providing a ready-to-use scaffold for swarm deployment.

What is included in the .opencode directory scaffolding?

The .opencode directory scaffolding includes organized agent and command subdirectories, agent templates for team customization, and a minimal opencode.json config file with schema, theme, and autoupdate settings.

How do I generate the opencode.json configuration file?

You generate the opencode.json configuration file by creating it in the .opencode directory, adding the schema URL, setting the theme to opencode, and enabling autoupdate to bootstrap a swarm-ready project.

Do I need any dependencies to set up an OpenCode project scaffold?

No dependencies are required to set up an OpenCode project scaffold; you can manually create the .opencode folder structure and opencode.json config using basic shell commands before deploying with opencode serve.

Can I use this scaffolding for team-based OpenCode projects?

Yes, this scaffolding applies to OpenCode-based team projects, providing organized agent directories and templates that teams can customize for their specific OpenCode swarms before immediate deployment.