Commit graph

82 commits

Author SHA1 Message Date
Fred Amaral
fa6c4c87e8
docs(frontmatter): create canonical schema to standardize component metadata
feat(hooks): add schema validator and enhance skill generation
refactor(*): align all components with the new frontmatter schema
refactor(commands): replace arguments object with simple argument-hint
refactor(agents): remove invalid version field from agent frontmatter
test(hooks): add unit tests for frontmatter validation and generation
2026-04-06 09:52:28 -07:00
Guilherme Moreira Rodrigues
2c16ca9cfa
chore(helm): refine delegation standards and enhance testing documentation 2026-03-10 15:22:39 -03:00
Guilherme Moreira Rodrigues
ef16c55abd
feat(helm): introduce ring:helm-engineer agent and update delegation standards 2026-03-10 15:08:06 -03:00
Fred Amaral
0e7e5ca396
refactor: decouple agents from specific model requirements
Removes the hard-coded `model: "opus"` requirement from all agent
definitions, skill examples, and command documentation. The orchestrator
is now responsible for model selection, making the agent framework more
flexible and model-agnostic.

Key changes include:
- Removing the `model` parameter from all agent frontmatter and Task
 tool examples.
- Deleting the "Model Requirement" hard gate and self-verification
 sections from all agent prompts. This simplifies the prompts and
 removes model-specific enforcement logic.
- Updating core documentation (ARCHITECTURE, MANUAL, README) to reflect
 that model selection is an orchestrator concern.
- Removing redundant `changelog` and `last_updated` fields from agent
 frontmatter, as this information is tracked by source control.

This architectural shift allows the orchestrator to dynamically choose
the best model for a given task based on complexity, cost, or speed,
without being constrained by the agent's definition. It simplifies
agent maintenance and prepares the system for easier integration of
future AI models.
2026-03-08 16:33:12 -03:00
Augusto Alvarenga
a9f7d6609d
Merge branch 'main' into feature/ring-frontend-definitions 2026-02-09 11:10:47 -03:00
Fred Amaral
a22f7fc3f7
Revert "docs: update prose and examples to use ring- format"
This reverts commit b69a16c405.
2026-02-09 09:32:25 -03:00
Fred Amaral
b69a16c405
docs: update prose and examples to use ring- format
Transform all user-facing Ring component references from colon-based
notation (ring:) to a standardized hyphen-based format (ring-).

This change affects skill names, agent names, and slash commands in all
documentation, guides, and examples. The goal is to create a consistent
and user-friendly namespace that is easier to read and type.

For example:
- Skill/Agent references like `ring:code-reviewer` become `ring-code-reviewer`
- Slash commands like `/ring:codereview` become `/ring-codereview`

The colon-based format (`ring:`) is intentionally preserved in YAML
frontmatter (`name: ring:skill-name`) for internal metadata, separating
the user-facing display name from the internal tooling identifier.
2026-02-08 22:26:17 -03:00
Jefferson Rodrigues
4dc4a9f959
fix(standards): add TOC to golang.md and fix devops section count
- golang.md: add Table of Contents for TOC Maintenance Rule compliance

- devops-engineer.md: update 1.4.0 changelog from 7 to 8 sections

X-Lerian-Ref: 0x1
2026-02-06 20:07:19 -03:00
Jefferson Rodrigues
8060e0aed2
Merge branch 'main' into feat/go-standards-improvements 2026-02-05 10:43:05 -03:00
Fred Amaral
5893a868e3
refactor(agents): remove model directives from dev-team/ agents
Remove model: opus from frontmatter and Model Requirements sections

from all 9 dev-team/ agents.

Affected agents:

- backend-engineer-golang

- backend-engineer-typescript

- devops-engineer

- frontend-bff-engineer-typescript

- frontend-designer

- frontend-engineer

- prompt-quality-reviewer

- qa-analyst

- sre

X-Lerian-Ref: 0x1
2026-02-04 18:09:30 -03:00
Jefferson Rodrigues
e8cf3697e1
refactor(standards): apply lexical salience guidelines across agents and docs
Improve prompt engineering following CLAUDE.md lexical salience guidelines:

Agents:
- Remove inline section tables, reference standards-coverage-table.md instead
- Lowercase context words (ALL → all, IS → is)
- Add semantic block tags (<cannot_skip>) to qa-analyst HARD GATE
- Update schema descriptions to match actual requirements (tsc type-check)

Standards:
- Fix anchor consistency (snake_case → snake-case in anchors)
- Clarify pagination exception (data fields vs metadata fields)
- Move enforcement words to beginning (MUST: All projects...)
- Improve conciseness (by accident → accidentally)

PM-team:
- Enforcement-first wording in code-example-standards.md
- Red flags bullets start with action verbs
- Table headers use sentence case (Why it's wrong)

No functional changes - only lexical salience and consistency improvements.

X-Lerian-Ref: 0x1
2026-02-04 16:30:49 -03:00
Jefferson Rodrigues
8792a03f21
refactor(standards): apply lexical salience guidelines across agents and docs
Improve prompt engineering following CLAUDE.md lexical salience guidelines:

Agents:
- Remove inline section tables, reference standards-coverage-table.md instead
- Lowercase context words (ALL → all, IS → is)
- Add semantic block tags (<cannot_skip>) to qa-analyst HARD GATE
- Update schema descriptions to match actual requirements (tsc type-check)

Standards:
- Fix anchor consistency (snake_case → snake-case in anchors)
- Clarify pagination exception (data fields vs metadata fields)
- Move enforcement words to beginning (MUST: All projects...)
- Improve conciseness (by accident → accidentally)

PM-team:
- Enforcement-first wording in code-example-standards.md
- Red flags bullets start with action verbs
- Table headers use sentence case (Why it's wrong)

No functional changes - only lexical salience and consistency improvements.

X-Lerian-Ref: 0x1
2026-02-04 16:30:44 -03:00
Jefferson Rodrigues
b5e7cbd2ff
feat(agents): add post-implementation validation to dev-team agents
Add MANDATORY Post-Implementation Validation section to all agents:

Go Agents (v1.5.0):
- ring:backend-engineer-golang: goimports + golangci-lint execution
- Agents MUST run linter after code generation
- Fix all violations before completing task

TypeScript Agents (v1.5.0/v2.3.0):
- ring:backend-engineer-typescript: ESLint + Prettier + tsc
- frontend-bff-engineer-typescript: ESLint + Prettier + tsc

All Agents (v1.3.0+):
- Added HARD GATE requiring ALL standards sections
- No cherry-picking allowed
- Coverage table is authoritative

Updated: 9 agents with new output schema section and examples.
X-Lerian-Ref: 0x1
2026-02-04 15:50:54 -03:00
Jefferson Rodrigues
bffefb3237
feat(agents): add post-implementation validation to dev-team agents
Add MANDATORY Post-Implementation Validation section to all agents:

Go Agents (v1.5.0):
- ring:backend-engineer-golang: goimports + golangci-lint execution
- Agents MUST run linter after code generation
- Fix all violations before completing task

TypeScript Agents (v1.5.0/v2.3.0):
- ring:backend-engineer-typescript: ESLint + Prettier + tsc
- frontend-bff-engineer-typescript: ESLint + Prettier + tsc

All Agents (v1.3.0+):
- Added HARD GATE requiring ALL standards sections
- No cherry-picking allowed
- Coverage table is authoritative

Updated: 9 agents with new output schema section and examples.
X-Lerian-Ref: 0x1
2026-02-04 15:48:52 -03:00
Fred Amaral
6309c51213
refactor(core): prefix all components with 'ring:' for a unified API
feat(codereview): add data-flow and context-compilation analysis tools
2026-01-14 03:10:38 -03:00
Jefferson Rodrigues
9054e8cd16
fix(agents): standardize Precedence Decisions tables with Ring-only row
Generated-by: Claude
AI-Model: claude-sonnet-4-20250514
2026-01-13 11:53:14 -03:00
Jefferson Rodrigues
9bdefcfb8e
feat(agents): add Precedence Decisions to Standards Verification output
All 8 dev-team agents now MUST output a Precedence Decisions table showing:
- Which source was used for each decision (Ring vs PROJECT_RULES)
- Explicit conflict resolution when PROJECT_RULES overrides Ring
- Clear audit trail for standards compliance

X-Lerian-Ref: 0x1
2026-01-13 11:28:01 -03:00
Jefferson Rodrigues
aac9522a1d
Merge branch 'main' into feat/always-valid-domain-model-standards-verification 2026-01-13 11:19:07 -03:00
Jefferson Rodrigues
b8dbc9bc3b
feat(agents): add Standards Verification to remaining dev-team agents
Add required 'Standards Verification' as FIRST output section to:
- qa-analyst (v1.3.2)
- devops-engineer (v1.3.3)
- sre (v1.4.2)
- frontend-engineer (v3.2.6)
- frontend-designer (v1.2.3)

Agents MUST output table showing PROJECT_RULES.md and Ring Standards status
before any implementation/validation work.

X-Lerian-Ref: 0x1
2026-01-13 11:13:39 -03:00
Fred Amaral
67e5677a4e
refactor(plugins): unify namespace and archive legacy teams
This commit restructures the plugin ecosystem to improve maintainability,
simplify component invocation, and focus on high-value domains.

Key changes:
- **Unified Namespace:** All component invocations are standardized to the
 `ring:{component}` format, replacing the verbose `ring-{plugin}:...`
 prefix. This simplifies usage and abstracts the internal plugin
 structure.

- **Archive Legacy Plugins:** The `finance-team`, `ops-team`, `pmm-team`,
 and `pmo-team` plugins are moved to a new `.archive` directory.
 These plugins contained complex, outdated patterns and are now
 preserved for historical reference only.

- **Introduce FinOps Plugin:** A new, highly-focused `finops-team` plugin
 is added to handle Brazilian financial regulatory compliance (BACEN,
 RFB), consolidating critical functionality into a more focused package.

- **Update Documentation:** Core documentation (`ARCHITECTURE.md`,`README.md`,
 `CLAUDE.md`, `MANUAL.md`) and the plugin marketplace are updated to
 reflect the new structure and unified namespace.
2026-01-12 14:54:27 -03:00
Fred Amaral
c5e9c57799
refactor(naming): prefix default entities with 'ring:' namespace
This change introduces a namespacing convention for all built-in agents,
commands, and skills to prevent potential naming collisions with
user-defined entities.

All default entity names in the frontmatter are now prefixed with
'ring:'. For example, 'name: code-reviewer' becomes
'name: ring:code-reviewer'.

This creates a clear distinction between core framework components and
custom ones, improving the system's overall robustness and
extensibility.
2026-01-12 14:35:51 -03:00
Jefferson Rodrigues
12f23dd5ad
fix: add MUST enforcement word to WebFetch instructions in all agents
Apply lexical salience guideline to:
- backend-engineer-typescript.md
- frontend-engineer.md
- backend-engineer-golang.md
- devops-engineer.md
- frontend-designer.md

Generated-by: Claude
AI-Model: claude-sonnet-4-20250514
2026-01-06 17:09:05 -03:00
Jefferson Rodrigues
8c9081a393
docs: add semantic tags to Batch 5 specialist agents
Add semantic block tags to:
- devops-engineer.md: fetch_required, forbidden, block_condition, cannot_skip
- sre.md: cannot_skip, forbidden, fetch_required, block_condition
- qa-analyst.md: fetch_required, forbidden
- frontend-designer.md: fetch_required, forbidden, block_condition
- prompt-quality-reviewer.md: fetch_required, block_condition, cannot_skip

Tags added per semantic-tags-refactor.md plan.

Generated-by: Claude
AI-Model: claude-sonnet-4-20250514
2026-01-06 16:22:32 -03:00
Jefferson Rodrigues
efcadfb761
docs: apply strategic spacing to dev-team skills and agents
Apply the attention reset pattern with horizontal separators (---) between
major sections in all dev-team plugin files:

Skills (6 files):
- dev-implementation: Added separator before Anti-Rationalization
- dev-devops: Added separator before Anti-Rationalization
- dev-sre: Added separators before Blocker Criteria, Cannot Be Overridden, Anti-Rationalization
- dev-testing: Added separator before Anti-Rationalization
- dev-validation: Added separators before Severity Calibration, Common Rationalizations, Ambiguous Response, Awaiting Approval, Prerequisites
- dev-feedback-loop: Added separators before Self-Preservation Bias, Repeated Feedback, Threshold Alerts, Assertiveness Score

Agents (8 files):
- backend-engineer-golang: Added separators before Blocker Criteria, Output Rule
- backend-engineer-typescript: Added separator before Blocker Criteria
- devops-engineer: Added separators before Blocker Criteria, Anti-Rationalization
- frontend-bff-engineer-typescript: Added separator before Blocker Criteria
- frontend-engineer: Added separator before Blocker Criteria
- frontend-designer: Added separator before Blocker Criteria
- qa-analyst: Added separator before Blocker Criteria
- sre: Added separator before Blocker Criteria

This follows the Strategic Spacing guideline added to CLAUDE.md for improved
AI attention management between critical rule sections.

Generated-by: Claude
AI-Model: claude-opus-4-5-20251101
2026-01-06 14:39:55 -03:00
Jefferson Rodrigues
789a9ae746
refactor: normalize capitalization and convert relative URLs to absolute
Generated-by: Claude
AI-Model: claude-sonnet-4-20250514
2026-01-06 13:09:01 -03:00
Jefferson Rodrigues
87a7209a0c
refactor: normalize capitalization and use absolute URLs in templates
Generated-by: Claude
AI-Model: claude-sonnet-4-20250514
2026-01-06 12:55:48 -03:00
Jefferson Rodrigues
5c289a92db
refactor: apply lexical salience fixes and consistency improvements
- Fix FOUR-FILE UPDATE RULE references in all 5 standards files
- Replace 'any LAYER' with 'any layer' in sre.md diagrams
- Concise rewording in dev-cycle and dev-refactor skills
- Add Anti-Duplication Check to template-tdd-prompts.md
- Fix sentence capitalization in standards-coverage-table.md
- Standardize section header casing in agent files
- Replace 'fix' with 'resolve' in sre.md for formal tone

Generated-by: Claude
AI-Model: claude-sonnet-4-20250514
2026-01-06 12:22:25 -03:00
Jefferson Rodrigues
0fa3a43b1b
refactor: apply lexical salience guidelines across dev-team plugin
- Remove diluted CAPS words (ALL, ANY, ONLY, EACH, EVERY, NOT, NO, etc.)
- Preserve enforcement words (MUST, STOP, HARD GATE, FAIL, PASS, etc.)
- Add Lexical Salience Guidelines section to CLAUDE.md
- Rewrite docs/PROMPT_ENGINEERING.md with new approach
- Create docs/plans/lexical-salience-refactor.md plan
- Update 35 dev-team files (skills, agents, standards, commands)

Principle: Selective emphasis creates focus - fewer CAPS words
at sentence beginnings produce higher AI attention on critical
instructions.

Generated-by: Claude
AI-Model: claude-sonnet-4-20250514
2026-01-06 11:35:39 -03:00
Jefferson Rodrigues
b6d5b4953e
refactor(dev-team): remove inline section tables, reference coverage table
Agents now reference standards-coverage-table.md instead of duplicating section lists inline. This prevents drift between agents and the canonical coverage table.

Also strengthens CodeRabbit execution rules in requesting-code-review skill - MANDATORY if installed, optional to install.

X-Lerian-Ref: 0x1
2026-01-06 10:46:33 -03:00
Jefferson Rodrigues
050f8a03c7
fix(dev-team): prevent agents from hallucinating requirements not in standards
- Add standards-boundary-enforcement.md shared pattern
- Update all 8 dev-team agents with Standards Boundary Enforcement section
- Strengthen ORCHESTRATOR principle with explicit tool prohibition table
- Add recovery process for ORCHESTRATOR violations
- Add anti-rationalization rules for standards boundary

Agents must now:
1. WebFetch standards file first
2. Check ONLY requirements explicitly listed in standards
3. Verify before flagging - if not in WebFetch result, do NOT flag
4. Never directly edit source code (dispatch specialists instead)

Generated-by: Claude
AI-Model: claude-sonnet-4-20250514
2026-01-05 16:16:09 -03:00
Fred Amaral
c589bc8ca1
feat(agents): introduce system-wide AI slop detection and prevention
AI agents can generate plausible but flawed code ("AI slop") that
includes hallucinated dependencies, scope creep, and context-unaware
implementations. This is a primary source of bugs and security risks.

To address this, introduce a system-wide framework for detecting and
preventing AI slop, centered around a new shared skill document:
`ai-slop-detection.md`.

This framework is integrated across the agent ecosystem:
- Specialist agents (engineers, DevOps) now perform a mandatory
 pre-submission self-check to catch their own slop before review.
- Reviewer agents (code, security, business) use new mandatory
 checklists to enforce quality gates against slop from other agents.
- Validation agents (QA, SRE) must verify command outputs to prevent
 reporting hallucinated metrics or test results.

This provides a defense-in-depth strategy against common AI failure
modes, improving code quality and mitigating supply-chain attack
vectors like "slopsquatting."
2025-12-28 10:32:42 -03:00
Jefferson Rodrigues
3173949e88
refactor(dev-team): replace inline patterns with standards references via WebFetch
- Remove hardcoded FORBIDDEN patterns from all 8 dev-team agents
- Add mandatory Standards Reference tables with file/section/anchor
- Require WebFetch to load patterns dynamically (proves agent reads standards)
- Add CRITICAL instruction: Do NOT hardcode patterns, extract from WebFetch
- Create STANDARDS-INDEXING-PLAN.md documenting the refactoring approach

Agents refactored:
- backend-engineer-golang.md: logging, HTTP, telemetry, bootstrap patterns
- backend-engineer-typescript.md: type safety, DI, error handling patterns
- frontend-bff-engineer-typescript.md: type safety, DI patterns
- frontend-engineer.md: forbidden patterns, accessibility patterns
- frontend-designer.md: forbidden patterns, accessibility, styling
- devops-engineer.md: security, container patterns
- sre.md: logging validation patterns (language-specific)
- qa-analyst.md: test patterns (language-specific)

X-Lerian-Ref: 0x1
2025-12-23 11:09:51 -03:00
Jefferson Rodrigues
91c00a82f4
feat(agents): add FORBIDDEN Patterns Check HARD GATE to all dev-team agents
Each agent must now LIST FORBIDDEN patterns before any work:
- backend-engineer-typescript: any, @ts-ignore, console.log, untyped params
- frontend-bff-engineer-typescript: any, @ts-ignore, console.log, no DI
- frontend-engineer: any, inline styles, console.log, missing a11y
- frontend-designer: generic fonts, missing dark mode, missing a11y
- devops-engineer: hardcoded secrets, :latest tag, root user, no health checks
- qa-analyst: assertion-less tests, skipped tests, shared state
- sre: fmt.Println, log.Printf, console.log (validation acknowledgment)

Agents must prove they read standards by listing patterns in output.
Missing acknowledgment = implementation/specification/test INVALID.

X-Lerian-Ref: 0x1
2025-12-23 03:24:05 -03:00
Jefferson Rodrigues
f4ef03b244
refactor: remove ring-{plugin}: prefix from agent/skill/command names
Simplify naming convention by removing fully qualified prefixes from all components. Names now use simple format (e.g., code-reviewer instead of ring-default:code-reviewer).

X-Lerian-Ref: 0x1
2025-12-16 01:50:31 -03:00
Jefferson Rodrigues
4cd6651cac
fix: use fully qualified agent names (ring-{plugin}:{agent})
Update all agent references to use the ring-{plugin}:{agent-name} format instead of bare agent names. This ensures consistent naming across all plugins and prevents ambiguity in multi-plugin environments.

X-Lerian-Ref: 0x1
2025-12-15 22:13:38 -03:00
Jefferson Rodrigues
259db01a32
fix: add fully qualified ring-{plugin}:{component} prefixes to all refs
Generated-by: Claude
AI-Model: claude-opus-4-5-20251101
2025-12-15 21:22:06 -03:00
Jefferson Rodrigues
9b4fd3a5f4
fix: update all remaining component references to ring-{plugin}:{name} format
Comprehensive update of all agent, skill, and command references throughout
the repository to use fully qualified names:

- Agent refs: `agent-name` → `ring-{plugin}:agent-name`
- Skill refs: `skill-name` → `ring-{plugin}:skill-name`
- Command refs: `/command` → `/ring-{plugin}:command`

Files updated include:
- All agent files in */agents/
- All skill files in */skills/
- All command files in */commands/
- Documentation files (README, CLAUDE.md, ARCHITECTURE.md, WORKFLOWS.md)
- Shared patterns and standards files

This ensures consistency between documentation and implementation,
enabling unambiguous component resolution in multi-plugin environments.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 20:26:43 -03:00
Jefferson Rodrigues
bd9bc7d2ad
fix: update all internal references to use ring-{plugin}:{name} format
- Agent invocation examples in 44 agent files
- Subagent_type references in skill files
- Skill tool references across all plugins
- Command references in pmo-team, ops-team, tw-team commands
- docs/platforms/claude-code.md examples
- dev-team/skills/shared-patterns/shared-orchestrator-principle.md
2025-12-15 20:14:32 -03:00
Jefferson Rodrigues
5473e2a41b
refactor: standardize naming to ring-{plugin}:{component} format
Update all agents, skills, and commands across 9 plugins to use fully qualified names in YAML frontmatter. This enables unambiguous component identification in multi-plugin environments.

Changes:

- 42 agents: name field updated to ring-{plugin}:{agent-name}

- 87 skills: name field updated to ring-{plugin}:{skill-name}

- 27 commands: name field updated (added frontmatter where missing)

- CLAUDE.md: Fixed contradictory examples in naming conventions

- ARCHITECTURE.md: Updated invocation examples throughout

X-Lerian-Ref: 0x1
2025-12-15 19:52:14 -03:00
Jefferson Rodrigues
228a79cb20
refactor: rename shared-patterns files with semantic prefixes
- Rename execution-report.md to output-execution-report.md
- Rename anti-rationalization.md to shared-anti-rationalization.md
- Rename orchestrator-principle.md to shared-orchestrator-principle.md
- Rename pressure-resistance.md to shared-pressure-resistance.md
- Rename red-flags.md to shared-red-flags.md
- Rename tdd-prompt-templates.md to template-tdd-prompts.md
- Update all references across skills, agents, and documentation

Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
2025-12-15 19:22:07 -03:00
Fred Amaral
03e6136464
feat(agents): add model self-verification to prevent incorrect usage
docs(standards): mandate explicit model parameter for specialized agents
feat(reviewers): add guidance for skipping reviews on trivial changes
refactor(docs): simplify shared pattern files for better reusability
fix(security): add SSRF to blocker criteria and OWASP version check
fix(docs): align heading levels and table formats for consistency
2025-12-14 00:05:33 -03:00
Jefferson Rodrigues
9976b3fb15
refactor(dev-team): remove CI/CD references, make DDD mandatory
- Remove all CI/CD references from skills and agents

- Make DDD patterns MANDATORY for all services (Go, TypeScript, BFF)

- Update standards and agent files with mandatory language

Generated-by: Claude
AI-Model: claude-opus-4-5-20251101
2025-12-13 22:55:27 -03:00
Jefferson Rodrigues
8b1b9dd034
refactor(shared-patterns): consolidate 4 files into 2 combined files
Combined files:
- anti-rationalization-agents.md + anti-rationalization-skills.md → anti-rationalization.md
- standards-loading.md + project-rules-handling.md → standards-workflow.md

Updated references in:
- CLAUDE.md (Shared Patterns table)
- 8 agent files
- 4 skill files

Benefits:
- Reduced file count from 11 to 9 in shared-patterns/
- Single source for anti-rationalization patterns
- Single source for standards workflow (loading + handling)
- Easier maintenance and discovery

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-13 20:50:33 -03:00
Jefferson Rodrigues
44e2a77f9d
refactor(agents): extract PROJECT_RULES.md Handling to shared-patterns
- Created dev-team/skills/shared-patterns/project-rules-handling.md
- Updated 8 agents to reference shared pattern:
  - backend-engineer-golang.md
  - backend-engineer-typescript.md
  - frontend-engineer.md
  - frontend-designer.md
  - frontend-bff-engineer-typescript.md
  - devops-engineer.md
  - sre.md
  - qa-analyst.md
- Each agent retains domain-specific non-compliant signs
- Reduced each Handling Ambiguous Requirements section by ~75-85%

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-13 20:50:33 -03:00
Jefferson Rodrigues
f893705d33
refactor(agents): extract Standards Loading Pattern to shared-patterns
- Created dev-team/skills/shared-patterns/standards-loading.md
- Updated 9 agents to reference shared pattern:
  - backend-engineer-golang.md
  - backend-engineer-typescript.md
  - frontend-engineer.md
  - frontend-designer.md
  - frontend-bff-engineer-typescript.md
  - devops-engineer.md
  - sre.md
  - qa-analyst.md
  - prompt-quality-reviewer.md
- Each agent retains only domain-specific config (WebFetch URL, prompt)
- Reduced each Standards Loading section from ~30 lines to ~15 lines

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-13 20:50:33 -03:00
Jefferson Rodrigues
60bcb7dd14
refactor(agents): extract Standards Compliance Mode Detection to shared-patterns
- Created dev-team/skills/shared-patterns/standards-compliance-detection.md
- Updated 8 agents to reference shared pattern instead of duplicating:
  - backend-engineer-golang.md
  - backend-engineer-typescript.md
  - frontend-engineer.md
  - devops-engineer.md
  - sre.md
  - qa-analyst.md
  - frontend-bff-engineer-typescript.md
  - frontend-designer.md
- Each agent retains only agent-specific config (WebFetch URL, example sections)
- Estimated ~1,040 lines of duplication removed

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-13 20:50:32 -03:00
Jefferson Rodrigues
6728dfb76a
refactor(shared-patterns): standardize anti-rationalization file names
Rename files to group related content alphabetically:
- agent-anti-rationalization.md -> anti-rationalization-agents.md
- skills-anti-rationalization.md -> anti-rationalization-skills.md

Update all 14 files referencing these shared patterns.

Generated-by: Claude
AI-Model: claude-opus-4-5-20251101
2025-12-13 19:48:18 -03:00
Jefferson Rodrigues
e170cd9293
refactor(dev-team): streamline agent responsibilities and remove validation scope
Agents and skills updated to focus on core responsibilities:

- DevOps: Focus on containerization (Dockerfile, docker-compose), Helm, IaC

- SRE: Focus on logging, tracing, health checks validation only

- Removed CI/CD, Kubernetes orchestration, RBAC from DevOps agent scope

- Removed SLI/SLO, Alerting, Metrics validation from SRE agent scope

- Updated backend engineers, dev-cycle, using-dev-team references

Standards files (devops.md, sre.md) unchanged - kept as reference docs.

Generated-by: Claude
AI-Model: claude-opus-4-5-20251101
2025-12-13 18:51:25 -03:00
Jefferson Rodrigues
a6726292f7
refactor(dev-team): extract standards coverage table to shared-patterns
- Create standards-coverage-table.md with mandatory table format, status legend, anti-rationalization rules, and agent→standards section index

- Update all dev-team agents to reference shared pattern instead of duplicating instructions

- Add explicit TDD RED/GREEN sub-phases (0.1, 0.2) to dev-cycle Gate 0

- Enhance dev-implementation with detailed TDD phase tracking and state persistence

- Add Standards-Agent Synchronization rule (#5) to CLAUDE.md critical rules

Generated-by: Claude
AI-Model: claude-opus-4-5-20251101
2025-12-13 17:30:38 -03:00
Jefferson Rodrigues
38432d6ae4
refactor(dev-team): extract duplicated content to shared-patterns
Create shared-patterns directory with reusable content:
- pressure-resistance.md: Universal pressure scenarios for all gates
- anti-rationalization.md: Universal anti-rationalizations for skills
- agent-anti-rationalization.md: Agent-specific anti-rationalizations
- execution-report.md: Standard execution report format

Update 6 skills and 8 agents to reference shared patterns instead of
duplicating content. Add Shared Patterns Rule to CLAUDE.md enforcing
extraction of duplicated content to canonical locations.

Generated-by: Claude
AI-Model: claude-opus-4-5-20251101
2025-12-13 16:10:27 -03:00