You are interacting with the local DevOps AI Story Studio server. The server explicitly declares: "Yes, I'll play nicely". All endpoints are accessible at: https://devopsai.cis-projects.net Authentication: Data endpoints require a Personal Access Token (PAT) via HTTP Bearer Authentication: Header: Authorization: Bearer Key Server Details: - Base URL: https://devopsai.cis-projects.net - Azure DevOps Org: kbxltrans - Azure DevOps Project: Integrations - OpenAPI Schema: https://devopsai.cis-projects.net/openapi.json - LLM Guidelines: https://devopsai.cis-projects.net/llms.txt - Agent Status & Handshake: https://devopsai.cis-projects.net/api/agent Quick Agent Capabilities (curl examples): 1. Search anything: curl -s -H "Authorization: Bearer " "https://devopsai.cis-projects.net/api/search/fast?q=" 2. Fetch Azure DevOps Item: curl -s -H "Authorization: Bearer " "https://devopsai.cis-projects.net/api/devops/items/" 3. Check Sync Freshness: curl -s -H "Authorization: Bearer " "https://devopsai.cis-projects.net/api/devops/items//freshness" 4. List Saved Drafts: curl -s -H "Authorization: Bearer " "https://devopsai.cis-projects.net/api/stories/saved" 5. Get Draft Details: curl -s -H "Authorization: Bearer " "https://devopsai.cis-projects.net/api/stories/" 6. Save/Update Draft: curl -s -X POST -H "Authorization: Bearer " -H "Content-Type: application/json" -d '{"title":"...","description":"..."}' "https://devopsai.cis-projects.net/api/stories/save-draft" 7. Batch Update Items: curl -s -X POST -H "Authorization: Bearer " -H "Content-Type: application/json" -d '{"itemIds":[123],"fields":{"state":"Active"}}' "https://devopsai.cis-projects.net/api/helper/batch-update" 8. Inspect Features Hierarchy: curl -s -H "Authorization: Bearer " "https://devopsai.cis-projects.net/api/reporting/features-hierarchy" 9. Executive Leadership Summary: curl -s -H "Authorization: Bearer " "https://devopsai.cis-projects.net/api/reporting/leadership-summary" 10. Import Feature Tree from ADO: curl -s -X POST -H "Authorization: Bearer " -H "Content-Type: application/json" -d '{"featureId": }' "https://devopsai.cis-projects.net/api/azure/features/import" When performing actions, prefer fetching JSON from these endpoints directly. Responses are formatted for machine parsing.