/ado-create
Create Azure DevOps work item from SpecWeave increment
> /plugin marketplace add anton-abyzov/specweave > /plugin install sw@specweave
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/ado-create
Context preview
What this command does when you run it.
Create Azure DevOps work item from SpecWeave increment
Command definition
ado-create.mddescription: Create Azure DevOps work item from SpecWeave increment
Create ADO Work Item Command
**Usage**: `sw-ado:create <increment-id>`
**Purpose**: Create an Epic, Feature, or User Story in Azure DevOps from a SpecWeave increment
---
Command Behavior
When user runs this command, Claude should:
1. Check Permission Gate (MANDATORY FIRST STEP)
**Before ANY ADO API calls**, check if write operations are allowed:
// Read .specweave/config.json
const config = JSON.parse(await fs.readFile('.specweave/config.json', 'utf-8'));
const canUpdateExternal = config?.sync?.settings?.canUpdateExternalItems ?? false;
if (!canUpdateExternal) {
// STOP HERE - Permission denied
console.log(`
❌ Permission Denied
ADO write operations are disabled.
Setting: sync.settings.canUpdateExternalItems = false
To enable, update .specweave/config.json:
{
"sync": {
"settings": {
"canUpdateExternalItems": true
}
}
}
Or run: jq '.sync.settings.canUpdateExternalItems = true' .specweave/config.json > tmp && mv tmp .specweave/config.json
`);
return; // DO NOT proceed to create work item
}If `canUpdateExternalItems` is `false`, display the error and **STOP**. Do not invoke the ADO Manager agent.
2. Resolve ADO Profile
Use the increment's stored profile or fall back to global activeProfile:
// Load increment metadata
const metadata = JSON.parse(await fs.readFile(
`.specweave/increments/${incrementId}/metadata.json`, 'utf-8'
));
// Check for increment-specific profile
let profileName = metadata?.external_sync?.ado?.profile;
// Fall back to global activeProfile
if (!profileName) {
profileName = config?.sync?.activeProfile;
}
// Get profile config
const profileConfig = config?.sync?.profiles?.[profileName];
if (!profileConfig || profileConfig.provider !== 'ado') {
console.log(`❌ Profile "${profileName}" not found or not an ADO profile`);
return;
}
const { organization, project } = profileConfig.config;3. Validate Prerequisites
- Check ADO plugin installed
- Check AZURE_DEVOPS_PAT environment variable set
- Check ADO profile has organization and project
4. Invoke ADO Manager Skill
Use Skill tool: Skill({ skill: "sw-ado:ado-sync", args: "Create ADO work item for increment {increment-id}.
IMPORTANT: Permission already verified (canUpdateExternalItems=true).
Use profile: {profileName} (org: {organization}, project: {project})
Steps:
1. Read .specweave/increments/{increment-id}/spec.md
2. Extract title and description
3. Use ADO organization: {organization}, project: {project}
4. Create work item via ADO REST API
5. Store work item ID in increment metadata.json
6. Store profile name in metadata.json external_sync.ado.profile
7. Display: Work Item ID, URL, and confirmation"5. Display Result
✅ Created ADO Epic
Work Item: #12345
URL: https://dev.azure.com/{organization}/{project}/_workitems/edit/12345
Profile: {profileName}
Linked to increment: {increment-id}---
Permission Denied Output
If `canUpdateExternalItems` is false:
❌ Permission Denied: ADO Write Operations Disabled
Your configuration prevents creating/updating ADO work items.
Current setting:
sync.settings.canUpdateExternalItems = false
To enable ADO writes:
1. Edit .specweave/config.json
2. Set sync.settings.canUpdateExternalItems to true
3. Re-run this command
This setting was configured during 'specweave init'.
---
Example Usage
User: sw-ado:create-workitem 0005-payment-integration
# If permission granted:
Claude: Checking ADO permissions...
✓ canUpdateExternalItems: true
Resolving ADO profile...
✓ Using profile: ado-my-project (from increment)
✓ Organization: acme-corp
✓ Project: My Project
Creating work item...
[Invokes ADO Manager Agent]
✅ Created ADO Epic #12345
URL: https://dev.azure.com/acme-corp/My%20Project/_workitems/edit/12345
# If permission denied:
Claude: Checking ADO permissions...
❌ Permission Denied
sync.settings.canUpdateExternalItems = false
To enable: Edit .specweave/config.json and set canUpdateExternalItems to true---
Related
| Command | Purpose | |---------|---------| | `sw-ado:pull` | Pull changes from ADO | | `sw-ado:push` | Push progress to ADO | | `sw-ado:sync` | Two-way sync | | `sw-ado:status` | Check sync status | | `sw-ado:close` | Close work item when complete |
Read more
description: Create Azure DevOps work item from SpecWeave increment
Create ADO Work Item Command
**Usage**: `sw-ado:create <increment-id>`
**Purpose**: Create an Epic, Feature, or User Story in Azure DevOps from a SpecWeave increment
---
Command Behavior
When user runs this command, Claude should:
1. Check Permission Gate (MANDATORY FIRST STEP)
**Before ANY ADO API calls**, check if write operations are allowed:
// Read .specweave/config.json
const config = JSON.parse(await fs.readFile('.specweave/config.json', 'utf-8'));
const canUpdateExternal = config?.sync?.settings?.canUpdateExternalItems ?? false;
if (!canUpdateExternal) {
// STOP HERE - Permission denied
console.log(`
❌ Permission Denied
ADO write operations are disabled.
Setting: sync.settings.canUpdateExternalItems = false
To enable, update .specweave/config.json:
{
"sync": {
"settings": {
"canUpdateExternalItems": true
}
}
}
Or run: jq '.sync.settings.canUpdateExternalItems = true' .specweave/config.json > tmp && mv tmp .specweave/config.json
`);
return; // DO NOT proceed to create work item
}If `canUpdateExternalItems` is `false`, display the error and **STOP**. Do not invoke the ADO Manager agent.
2. Resolve ADO Profile
Use the increment's stored profile or fall back to global activeProfile:
// Load increment metadata
const metadata = JSON.parse(await fs.readFile(
`.specweave/increments/${incrementId}/metadata.json`, 'utf-8'
));
// Check for increment-specific profile
let profileName = metadata?.external_sync?.ado?.profile;
// Fall back to global activeProfile
if (!profileName) {
profileName = config?.sync?.activeProfile;
}
// Get profile config
const profileConfig = config?.sync?.profiles?.[profileName];
if (!profileConfig || profileConfig.provider !== 'ado') {
console.log(`❌ Profile "${profileName}" not found or not an ADO profile`);
return;
}
const { organization, project } = profileConfig.config;3. Validate Prerequisites
- Check ADO plugin installed
- Check AZURE_DEVOPS_PAT environment variable set
- Check ADO profile has organization and project
4. Invoke ADO Manager Skill
Use Skill tool: Skill({ skill: "sw-ado:ado-sync", args: "Create ADO work item for increment {increment-id}.
IMPORTANT: Permission already verified (canUpdateExternalItems=true).
Use profile: {profileName} (org: {organization}, project: {project})
Steps:
1. Read .specweave/increments/{increment-id}/spec.md
2. Extract title and description
3. Use ADO organization: {organization}, project: {project}
4. Create work item via ADO REST API
5. Store work item ID in increment metadata.json
6. Store profile name in metadata.json external_sync.ado.profile
7. Display: Work Item ID, URL, and confirmation"5. Display Result
✅ Created ADO Epic
Work Item: #12345
URL: https://dev.azure.com/{organization}/{project}/_workitems/edit/12345
Profile: {profileName}
Linked to increment: {increment-id}---
Permission Denied Output
If `canUpdateExternalItems` is false:
❌ Permission Denied: ADO Write Operations Disabled Your configuration prevents creating/updating ADO work items. Current setting: sync.settings.canUpdateExternalItems = false To enable ADO writes: 1. Edit .specweave/config.json 2. Set sync.settings.canUpdateExternalItems to true 3. Re-run this command This setting was configured during 'specweave init'.
---
Example Usage
User: sw-ado:create-workitem 0005-payment-integration
# If permission granted:
Claude: Checking ADO permissions...
✓ canUpdateExternalItems: true
Resolving ADO profile...
✓ Using profile: ado-my-project (from increment)
✓ Organization: acme-corp
✓ Project: My Project
Creating work item...
[Invokes ADO Manager Agent]
✅ Created ADO Epic #12345
URL: https://dev.azure.com/acme-corp/My%20Project/_workitems/edit/12345
# If permission denied:
Claude: Checking ADO permissions...
❌ Permission Denied
sync.settings.canUpdateExternalItems = false
To enable: Edit .specweave/config.json and set canUpdateExternalItems to true---
Related
| Command | Purpose | |---------|---------| | `sw-ado:pull` | Pull changes from ADO | | `sw-ado:push` | Push progress to ADO | | `sw-ado:sync` | Two-way sync | | `sw-ado:status` | Check sync status | | `sw-ado:close` | Close work item when complete |
Spec-first AI development: describe a feature → AI creates spec + plan + tasks, builds autonomously, syncs to GitHub/JIRA. Domain-expert skills for PM, Architect, Frontend, QA learn your patterns permanently. Claude Code, Codex, Cursor, Copilot & more.
Repo: anton-abyzov/specweave
Other commands on specweave.
- /abandon
Abandon an incomplete increment (requirements changed, obsolete)
Open command - /ado-cleanup-duplicates
Clean up duplicate Azure DevOps work items for a Feature. Finds work items with duplicate titles and closes all except the first created item.
Open command - /ado-clone
Clone Azure DevOps repositories to local workspace. Use after init if cloning was skipped, or to add repos later.
Open command - /ado-close
Close Azure DevOps work item when increment complete
Open command - /ado-import-areas
Import Azure DevOps area paths from a project and map them to SpecWeave projects. Creates 2-level directory structure with area path-based organization.
Open command - /ado-import-projects
Import additional Azure DevOps projects post-init with area path mapping, filtering, and dry-run preview
Open command

