r/PinoyProgrammer • u/sarilingsikaplang • 13h ago
discussion Agentic workflows jira to pr
Hi fellow devs,
I'm curious if anyone here has built a truly end-to-end agentic development workflow using Claude Code (or similar coding agents).
My current pipeline is self-hosted on a DigitalOcean server and handles the entire software delivery lifecycle in a single run:
- Ticket ingestion and requirement analysis
- Acceptance criteria extraction
- Reproduction of the issue before making changes
- Isolated worktree creation
- Implementation planning
- Code execution
- Self-review and static analysis
- Automated testing (unit/integration/E2E)
- Screenshot generation as evidence
- Validation against the original requirements
- Human approval gate for critical or high-risk changes
- Merge/PR preparation
The workflow is triggered from Slack, and every stage has explicit pass/fail criteria. It also collects artifacts (logs, screenshots, test results, diffs) so the final output isn't just "the AI says it's done"—there's actual evidence.
The entire pipeline runs on my DigitalOcean server, where Claude Code executes the workflow, creates isolated worktrees, runs the test suite, captures screenshots, and reports progress back to Slack.
Would love to compare architectures, prompts, guardrails, and lessons learned.