Transform a work item into LLM-optimized format for efficient context usage
Transforms work items into token-efficient LLM context format with compressed file paths and actionable changes.
/plugin marketplace add dariuszparys/claudecode-enhancements/plugin install work-items@claude-code-toolkitwork-items/Transform a work item into a token-efficient format optimized for LLM context windows.
Provide the work item via one of:
# {Work Item ID}: {title}
## Context
{1-2 sentence summary}
## Files
- {file paths with glob patterns}
## Changes
1. {file}: {action}
## Verify
- {non-obvious verification step}
# {ID}: {title}Context: Compress background/architecture to 1-2 sentences
Files: Extract file paths, compress with glob patterns
Changes: Convert scope items to file: action format
Remove obvious/implicit criteria:
Keep non-obvious verification:
| Before | After |
|---|---|
routes/dev-routes.bicep, routes/test-routes.bicep, routes/prod-routes.bicep | routes/{dev,test,prod}-routes.bicep |
src/components/Button.tsx, src/components/Input.tsx | src/components/{Button,Input}.tsx |
Each entry: {file}: {what to change}
Bad: "Update the container app configuration"
Good: "container-app.bicep: set ingress.external = false"
Description: Change Container Apps ingress from external to internal,
update Front Door origins to use Private Link.
Scope:
- Change Container Apps ingress from external to internal
- Update Front Door origins to use Private Link
Files to modify:
- infra/bicep/resources/container-app.bicep
- infra/bicep/resources/front-door-route.bicep
- infra/bicep/routes/dev-routes.bicep
- infra/bicep/routes/test-routes.bicep
- infra/bicep/routes/prod-routes.bicep
ACs:
- Container Apps ingress is configured as internal
- Front Door origins updated to use Private Link
- Direct access returns 403/404
- Deployment succeeds without downtime
# 1357: Container Apps Internal Ingress
## Context
Container Apps -> internal ingress. External traffic via Front Door + Private Link.
## Files
- infra/bicep/resources/container-app.bicep
- infra/bicep/resources/front-door-route.bicep
- infra/bicep/routes/{dev,test,prod}-routes.bicep
## Changes
1. container-app.bicep: `ingress.external` = false
2. front-door-route.bicep: origins use Private Link
3. *-routes.bicep: consistent Private Link config
## Verify
- Direct URL -> 403/404
- Front Door URL -> 200
- Private Link status = Approved