Background
The goal is to implement an agentic workflow for software development as described in the referenced Medium article. This involves creating a structured directory (.sdlc) that contains project context, templates, specifications, and knowledge artifacts to guide AI agents in software development tasks.
.sdlc/
context/ # Persistent project context
project-overview.md # What the system does, tech stack, scope
architecture.md # Architecture decisions and patterns
conventions.md # Naming, structure, coding standards
templates/ # Reusable artifact templates
requirement-template.md
task-template.md
specs/ # Per-feature specifications
REQ-001-notification-system/
requirement.md # The spec
tasks/
TASK-001-implement-notification-service.md
TASK-002-create-email-channel.md
knowledge/ # Accumulated project knowledge & answered questions
src/ # Source code (normal location)
tests/ # Tests (normal location)
AGENTS.md # Root-level agent context
Acceptance Criteria
Background
The goal is to implement an agentic workflow for software development as described in the referenced Medium article. This involves creating a structured directory (.sdlc) that contains project context, templates, specifications, and knowledge artifacts to guide AI agents in software development tasks.
Acceptance Criteria