Skip to content

Instantly share code, notes, and snippets.

@pluto-atom-4
pluto-atom-4 / phase-3-blog-draft.md
Last active May 7, 2026 21:37
Phase 3 Integration: Orchestrating Parallel PRs with Consolidation & Agent Delegation - Portfolio blog post on managing 4 parallel PRs with consolidation branch strategy, agent delegation patterns, and git CLI vs gh CLI workflows

Orchestrating Parallel PRs with Consolidation & Agent Delegation

Problem

Managing 4 parallel code quality improvements across a full-stack React/GraphQL/Express monorepo presents multiple challenges:

  1. Parallel Implementation Coordination: How to execute 4 independent developers' work simultaneously without conflicts
  2. Multi-Branch Consolidation: Merge 4 feature branches into a coherent, testable state before main deployment
  3. Main Branch Protection Constraints: Repository policy prohibits direct pushes to main; all changes must go through PR review
  4. Review & Approval Bottleneck: Consolidating 4 separate PRs requires unified review while maintaining traceability
@pluto-atom-4
pluto-atom-4 / copilot-usage-analysis-april-2026-data-driven.md
Last active May 2, 2026 00:39
GitHub Copilot Premium Metered Usage Analysis: April 2026 (Real Data from usageReport_1.csv)

GitHub Copilot Premium Request Metered Usage Analysis: April 2026

Real Data from Developer Workflow & Activity Log

Executive Summary

April 2026 was a high-velocity month for full-stack development interview preparation at Stoke Space. GitHub Copilot Premium metered usage data from usageReport_1.csv reveals a clear escalation pattern: manual code reviews on April 8 spiked usage, but the transformative shift came during April 13–20 when orchestrated agent-assisted co-work sessions drove sustained, high-velocity development.

Real April 2026 Figures:

  • Total Copilot Premium Requests: 281.83 requests
  • Metered Cost: $11.27
@pluto-atom-4
pluto-atom-4 / blog-post.md
Last active April 25, 2026 00:15
Human-AI Collaboration: Debugging E2E Playwright Tests on Wayland Linux

Human-AI Collaboration: Debugging E2E Playwright Tests on Wayland Linux

  • 🎯 Key Focus Areas:

    • βœ“ Human-AI prompt flow and collaboration patterns
    • βœ“ Implementation planning and consolidation
    • βœ“ Wayland/Debian 13 environment configuration
    • βœ“ Iterative debugging with headed browser observation
    • βœ“ Playlist API discovery and decision-making
  • πŸ’‘ Highlights:

Building Production Full-Stack Systems with Agent-Driven Development: A Real-World Workflow

TL;DR: Modern full-stack development benefits from structured agent specialization. This article shares a battle-tested workflow discovered while building a React/GraphQL manufacturing platform, with practical patterns for orchestrating developers, testers, reviewers, and architects into a cohesive delivery machine.

Blog Post Summary

Title: "Building Production Full-Stack Systems with Agent-Driven Development: A Real-World Workflow"

Published: https://gist.github.com/pluto-atom-4/1899cf0a17ef51f853e6ba026c3738c6 (

@pluto-atom-4
pluto-atom-4 / reference.md
Last active April 18, 2026 00:32
Copilot Agens Utilization

Agent Quick Reference Card

Use this one-page guide when working with Copilot agents.

⚠️ First Time? Read the Code Quality Standards to understand ESLint, Prettier, and npm audit requirements.


The Agent Team

@pluto-atom-4
pluto-atom-4 / note.md
Last active April 12, 2026 01:56
Use DESIGN.md along with Claude Code

UI Refactoring Workflow: Applying Sentry Design System

Date: April 11, 2026
Status: Complete
Duration: Single collaborative session
Result: Production-ready design system implementation with Tailwind v4


Executive Summary

@pluto-atom-4
pluto-atom-4 / start-from-here.md
Created April 11, 2026 01:34
GitHub Bot Workflow for Solo Developer

GitHub Bot Workflow for Solo Developer + Copilot

Overview

This guide documents the setup for a bot account that automatically approves pull requests created by your main developer account. This solves the GitHub branch protection requirement of needing at least one approval when you're the only human developer.

Use case: Solo developer + Copilot AI agent, where branch protection requires β‰₯1 approval before merging.


@pluto-atom-4
pluto-atom-4 / start-from-here.md
Last active April 6, 2026 02:15
Claude about-me

Background

Instruct to inspect the token consuming by comparing Claude Code cowork sessions with / withoug about-me.md

To inspect token consumption and compare the impact of an about-me.md (or the equivalent global ~/.claude/claude.md) file in Claude Code, you can use built-in slash commands or external CLI tools that parse local session logs.

https://shipyard.build/blog/claude-code-track-usage/ https://shipyard.build/blog/claude-code-tokens https://www.reddit.com/r/Anthropic/comments/1sabaop/i_built_a_local_dashboard_to_inspect_claude_code/

@pluto-atom-4
pluto-atom-4 / start-from-here.md
Created February 27, 2026 17:27
Build-up Claude agent team from scratch as Q1 of 2026

Build-up Claude agent team from scratch

Start a new project managed at github.com

  1. utilize agent team to organize members including project manager, full stack engineer, QA engineer, and DevOps.
  2. integrate the project with github branch, issues, and pull requests.
  3. utilize Claude code CLI, GitHub CLI, and Copilot CLI.
  4. back-end is python and fast API, MCP
  5. NextJS, Prisma, Playwright and vitest for front-end
  6. sqlite for development and postgresql for production.
@pluto-atom-4
pluto-atom-4 / readme.md
Last active January 23, 2026 07:03
To configure my repository's .github and .claude directories

1. Configure Project-Level Settings (.claude)

The .claude folder stores project-specific context and "skills" that guide AI agents in their reviews.

  • Create Project Memory: Place a CLAUDE.md file at your project root to act as a coordinator.
  • Define Skills: Create the directory .claude/skills/. For each review area, create a subdirectory containing a SKILL.md file:
    • Backend Review: .claude/skills/backend-review/SKILL.md
      • Instruction: Focus on PEP 8 standards, FastAPI/Flask patterns, and Pydantic validation in /backend.
    • Frontend Review: .claude/skills/frontend-review/SKILL.md
  • Instruction: Focus on Next.js 15+ App Router patterns, TypeScript safety, and Tailwind CSS efficiency in /frontend.