Skip to content

Commit 53a3ba2

Browse files
committed
fix: update release workflow to trigger on agentic-sdlc-v* tags
1 parent a725006 commit 53a3ba2

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Create Release
33
on:
44
push:
55
tags:
6-
- 'v*'
6+
- 'agentic-sdlc-v*'
77

88
jobs:
99
release:

extensions/levelup/commands/clarify.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
description: Resolve ambiguities in discovered/proposed CDRs through clarifying questions
33
handoffs:
44
- label: Refine from Feature Context
5-
agent: levelup.spec
5+
agent: adlc.levelup.spec
66
prompt: Add context from current feature spec to CDRs
77
send: false
88
- label: Build Skills
9-
agent: levelup.skills
9+
agent: adlc.levelup.skills
1010
prompt: Build skills from accepted CDRs
1111
send: false
1212
- label: Create PR
13-
agent: levelup.implement
13+
agent: adlc.levelup.implement
1414
prompt: Compile accepted CDRs to team-ai-directives PR
1515
send: false
1616
scripts:

extensions/levelup/commands/init.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Scan codebase and discover Context Directive Records (CDRs) for team-ai-directives contributions
33
handoffs:
44
- label: Resolve Ambiguities
5-
agent: levelup.clarify
5+
agent: adlc.levelup.clarify
66
prompt: |
77
Review CDRs discovered from brownfield codebase analysis.
88
Ask questions about:
@@ -13,7 +13,7 @@ handoffs:
1313
Focus on validating assumptions, not suggesting new patterns.
1414
send: false
1515
- label: Refine from Feature Context
16-
agent: levelup.spec
16+
agent: adlc.levelup.spec
1717
prompt: Refine CDRs using current feature spec context
1818
send: false
1919
scripts:

templates/commands/clarify.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
33
handoffs:
44
- label: Build Technical Plan
5-
agent: spec.plan
5+
agent: adlc.spec.plan
66
prompt: Create a plan for the spec. I am building with...
77
scripts:
88
sh: scripts/bash/check-prerequisites.sh --json --paths-only

templates/commands/constitution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ validation_scripts:
88
ps: scripts/powershell/validate-constitution.ps1
99
handoffs:
1010
- label: Build Specification
11-
agent: spec.specify
11+
agent: adlc.spec.specify
1212
prompt: Implement the feature specification based on the updated constitution. I want to build...
1313
---
1414

templates/commands/plan.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
description: Execute the implementation planning workflow using the plan template to generate design artifacts.
33
handoffs:
44
- label: Create Tasks
5-
agent: spec.tasks
5+
agent: adlc.spec.tasks
66
prompt: Break the plan into tasks
77
send: true
88
- label: Create Checklist
9-
agent: spec.checklist
9+
agent: adlc.spec.checklist
1010
prompt: Create a checklist for the following domain...
1111
scripts:
1212
sh: scripts/bash/setup-plan.sh --json

templates/commands/specify.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
description: Create or update the feature specification from a natural language feature description.
33
handoffs:
44
- label: Build Technical Plan
5-
agent: spec.plan
5+
agent: adlc.spec.plan
66
prompt: Create a plan for the spec. I am building with...
77
- label: Clarify Spec Requirements
8-
agent: spec.clarify
8+
agent: adlc.spec.clarify
99
prompt: Clarify specification requirements
1010
send: true
1111
scripts:

templates/commands/tasks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
description: Generate an actionable, dependency-ordered tasks.md for the feature based on available design artifacts.
33
handoffs:
44
- label: Analyze For Consistency
5-
agent: spec.analyze
5+
agent: adlc.spec.analyze
66
prompt: Run a project analysis for consistency
77
send: true
88
- label: Implement Project
9-
agent: spec.implement
9+
agent: adlc.spec.implement
1010
prompt: Start the implementation in phases
1111
send: true
1212
scripts:

0 commit comments

Comments
 (0)