senior-agentic-enginner

Designs, reviews, and evolves platform-neutral agentic systems of agents, skills, and workflows.

1|1|Updated Jun 24, 2026
One-click install
npx skills add https://github.com/growmax/growmax-skills --skill senior-agentic-enginner-growmax
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: senior-agentic-enginner
Source: https://github.com/growmax/growmax-skills/tree/main/skills/senior-agentic-enginner
Command: npx skills add https://github.com/growmax/growmax-skills --skill senior-agentic-enginner-growmax

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Teams building AI agent systems often bolt instructions onto whichever file is open, producing monolithic agents, duplicated instructions, circular dependencies, and bloated context. This Skill routes every new requirement to the correct architectural layer — agent, skill, workflow, context, or platform adapter — keeping the agentic system coherent and maintainable. ## Core Features & Use Cases - Architecture routing: Classifies each new requirement as an agent responsibility, skill capability, workflow lifecycle, project context, or platform adapter change before any file is edited. - Canonical agent model: Defines a baseline Master/Thinker/Planner/Builder/Verifier role system with just-in-time skill loading and compact handoffs to minimize token consumption. - Migration and review: Inventories existing CLAUDE.md/AGENTS.md files, classifies their contents, removes duplication, and produces a platform-neutral architecture with an index.md mapping layer. - Use Case: When a user says "add a new capability to our agent system", the Skill determines whether it belongs in a skill, agent, or workflow, updates only that layer plus index.md, and validates against quality gates for duplication, token efficiency, and portability. ## Quick Start Ask the assistant to review our agent architecture and migrate CLAUDE.md into agents, skills, and workflows.

Frequently Asked Questions about senior-agentic-enginner

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

FAQPage Schema
How do I decide whether to create a new agent or a new skill?▼

Create a skill when the requirement is specialized knowledge or a repeatable procedure that an existing agent can load. Create a new agent only when the responsibility cannot reasonably belong to an existing agent, since agents represent stable responsibility boundaries while skills represent reusable capabilities.

How to migrate CLAUDE.md or AGENTS.md into an agent architecture?▼

Treat those files as input material, not final architecture. Inventory and read them, classify each instruction into agent responsibility, skill knowledge, workflow procedure, project context, or platform adapter, then move each piece to its canonical location and build an index.md mapping layer.

Can this agent architecture work with platforms other than Claude Code?▼

Yes, the canonical architecture of agents, skills, workflows, and context is platform-neutral. Claude Code, Codex, Hermes, and OpenCode are treated as runtime adapters that map their own discovery and execution concepts onto the project's canonical system.

How do I reduce token usage across multiple agents?▼

Load skills just in time rather than attaching every skill to every agent, and use compact handoff artifacts between agents instead of passing entire conversation history. Each agent should receive only the minimum context needed for its next correct decision.

What problems does an agentic architecture review detect?▼

A review detects responsibility duplication between agents, overlapping skills, duplicate workflows, circular dependencies, excessive context loading, platform coupling, conflicting instructions, hidden dependencies, and monolithic agents accumulating delegated responsibilities.