pibo-docker-dev

Develop and test the Pibo codebase in an isolated Docker container.

2|2|Updated Apr 27, 2026
One-click install
npx skills add https://github.com/Pascapone/pibo --skill pibo-docker-dev
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: pibo-docker-dev
Source: https://github.com/Pascapone/pibo/tree/main/.codex/skills/pibo-docker-dev
Command: npx skills add https://github.com/Pascapone/pibo --skill pibo-docker-dev

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill allows developers to develop, modify, test, or debug the Pibo codebase in an isolated Docker container, protecting the live host gateway from potential crashes or errors during development.

Core Features & Use Cases

  • Isolated Development: Develop and test changes in a Docker container without affecting the live host gateway.
  • Version Control: Create a new Git worktree for every task, ensuring a clean environment for development.
  • Quick Iteration: Run builds, tests, and the gateway inside the container, allowing for quick iterations on changes.
  • Use Case: Use this skill when working on Pibo, improving Pibo, fixing bugs in Pibo, or testing changes to the Pibo codebase in isolation.

Quick Start

To start a Docker container for developing Pibo, run: pibo compute dev spawn --worktree <branch-name> --repo <REPO>

Frequently Asked Questions about pibo-docker-dev

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

FAQPage Schema
How do I develop and test code in an isolated Docker container without crashing my live host?

You can develop and test code in an isolated Docker container to protect the live host gateway from potential crashes. This approach builds, tests, and runs changes securely without affecting your production environment.

How do I use Git worktrees for isolated development tasks?

Using Git worktrees for isolated development creates a clean environment for every task. You can spawn a new worktree for a specific branch to iterate on code changes without affecting the main repository.

Do I need Docker and Git installed to run containerized development environments?

Yes, you need both Docker and Git installed to run containerized development environments. Docker provides the isolated container for testing, while Git manages the version control and worktrees required for execution.

What is the best way to iterate on code changes without affecting the live host gateway?

The best way to iterate on code changes without affecting the live host gateway is running builds and tests inside a Docker container. This allows quick iterations on modifications safely in isolation before deployment.

Why should I use containerization for bug fixing and testing codebase changes?

You should use containerization for bug fixing and testing codebase changes to isolate potential errors. Developing inside a Docker container prevents experimental code from crashing or affecting the live host gateway.