agent-edits

Automate safe edits to agents, subagents, orchestrator, and ecosystem configuration files.

Updated Jan 25, 2026
One-click install
npx skills add https://github.com/lucasmiachon-blip/organizacao --skill agent-edits
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agent-edits
Source: https://github.com/lucasmiachon-blip/organizacao/tree/main/.cursor/skills/agent-edits
Command: npx skills add https://github.com/lucasmiachon-blip/organizacao --skill agent-edits

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Standardizes and protects the quality of edits across agents, subagents, orchestrator, and ecosystem config, reducing drift and misconfigurations.

Core Features & Use Cases

  • Enforces type hints and async usage where present; avoids removing existing annotations.
  • Loads configuration via the config/loader to prevent hard-coded models or URLs.
  • Logs errors with context and avoids silent failures; supports safe edits across ecosystem.yaml and rate_limits.yaml.
  • Validates YAML structure and aligns with existing ecosystem patterns.

Quick Start

Edit a sample agent following the agent-edits guidelines to verify the changes.

Frequently Asked Questions about agent-edits

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

FAQPage Schema
How do I automate safe edits to agent configurations without breaking ecosystem patterns?

Automating safe edits to agent configurations requires loading configuration via a config loader and validating YAML structure to prevent drift. This approach enforces type hints, async usage, and runs linting and tests after changes to ensure structure and rules are preserved.

How do I preserve type hints and async usage when modifying ecosystem.yaml and rate_limits.yaml?

To preserve type hints and async usage when modifying ecosystem.yaml and rate_limits.yaml, enforce existing annotations during edits and validate YAML structure against ecosystem patterns. This prevents accidental removal of type hints and maintains async integrity.

Can I avoid hardcoding models and URLs when editing subagent and orchestrator configurations?

Yes, you can avoid hardcoding models and URLs when editing subagent and orchestrator configurations by loading configuration via a config loader. This approach centralizes configuration management and prevents drift across the ecosystem.

Why should I log errors with context when applying edits to agent configurations?

Logging errors with context when applying edits to agent configurations avoids silent failures and supports safe edits across ecosystem.yaml and rate_limits.yaml. Contextual logging ensures misconfigurations are traceable and reduces drift across agents and subagents.

What is the best way to validate YAML structure and align with ecosystem patterns after agent edits?

The best way to validate YAML structure and align with ecosystem patterns after agent edits is to run linting and tests automatically. This validates structure, enforces type hints and async usage, and ensures configuration changes do not introduce drift.