Agent skill

file-boundaries

Pattern for respecting file ownership boundaries during implementation. Prevents conflicts in parallel work.

Stars 232
Forks 15

Install this agent skill to your Project

npx add-skill https://github.com/aiskillstore/marketplace/tree/main/skills/clouder0/file-boundaries

SKILL.md

File Boundaries Skill

Pattern for respecting file ownership in parallel work.

When to Load This Skill

  • You are implementing code with defined boundaries
  • You're working in parallel with other agents
  • You need to avoid file conflicts

Boundary Rules

Files You OWN

yaml
boundaries:
  owns: [src/auth/login.ts, src/auth/logout.ts]

You CAN:

  • Read these files
  • Modify these files
  • Create new files in these paths
  • Delete these files

Files You READ

yaml
boundaries:
  reads: [src/types/user.ts, src/utils/crypto.ts]

You CAN:

  • Read these files for reference
  • Import from these files

You CANNOT:

  • Modify these files
  • If you need changes → report BLOCKED

Checking Boundaries

Before modifying any file:

  1. Is this file in my owns list?
  2. If NO → STOP, don't modify
  3. If need to modify → report BLOCKED with details

Reporting Boundary Violations

If you need to modify a file outside boundaries:

yaml
status: blocked
blocked_reason: boundary_violation
blocked_details:
  description: "Need to modify src/types/user.ts to add new type"
  needs: "Permission to modify or contract update"
  suggested_resolution: "Add UserSession type to user.ts"

Parallel Work Safety

Boundaries exist to enable parallel work:

  • Agent A owns src/auth/
  • Agent B owns src/api/
  • Both can work simultaneously without conflict

If boundaries are unclear or need changes:

  • STOP and report BLOCKED
  • Don't assume or proceed

Principles

  • Strict ownership - Only touch what you own
  • Explicit boundaries - No implicit permissions
  • Block, don't break - Report issues, don't work around

Expand your agent's capabilities with these related and highly-rated skills.

aiskillstore/marketplace

perigon-backend

Perigon ASP.NET Core + EF Core + Aspire conventions

232 15
Explore
aiskillstore/marketplace

perigon-agent

Pointers for Copilot/agents to apply Perigon conventions

232 15
Explore
aiskillstore/marketplace

perigon-angular

Angular 21+ standalone/Material/signal conventions for Perigon WebApp

232 15
Explore
aiskillstore/marketplace

fastapi-mastery

Comprehensive FastAPI development skill covering REST API creation, routing, request/response handling, validation, authentication, database integration, middleware, and deployment. Use when working with FastAPI projects, building APIs, implementing CRUD operations, setting up authentication/authorization, integrating databases (SQL/NoSQL), adding middleware, handling WebSockets, or deploying FastAPI applications. Triggered by requests involving .py files with FastAPI code, API endpoint creation, Pydantic models, or FastAPI-specific features.

232 15
Explore
aiskillstore/marketplace

context7-efficient

Token-efficient library documentation fetcher using Context7 MCP with 86.8% token savings through intelligent shell pipeline filtering. Fetches code examples, API references, and best practices for JavaScript, Python, Go, Rust, and other libraries. Use when users ask about library documentation, need code examples, want API usage patterns, are learning a new framework, need syntax reference, or troubleshooting with library-specific information. Triggers include questions like "Show me React hooks", "How do I use Prisma", "What's the Next.js routing syntax", or any request for library/framework documentation.

232 15
Explore
aiskillstore/marketplace

browser-use

Browser automation using Playwright MCP. Navigate websites, fill forms, click elements, take screenshots, and extract data. Use when tasks require web browsing, form submission, web scraping, UI testing, or any browser interaction.

232 15
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results