Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ vite.config.ts.timestamp-*

# Local APS install artifacts (source lives under scaffold/)
aps-planning/
.aps/context/
.claude/commands/
.claude/settings.local.json
.claude/.aps-session-baseline
Expand Down
22 changes: 22 additions & 0 deletions bin/aps
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
# aps lint [file|dir] Validate APS documents (default: plans/)
# aps lint --json Output as JSON
# aps next [module] Show the next ready work item
# aps start <ID> Mark a Ready work item as In Progress
# aps complete <ID> Mark an In Progress work item as Complete
# aps graph [module] Show work item dependency graph
# aps --help Show this help
#

Expand Down Expand Up @@ -47,6 +50,9 @@ Usage:
aps lint [file|dir] Validate APS documents
aps lint --json Output results as JSON
aps next [module] Show the next ready work item
aps start <ID> Mark a Ready work item as In Progress
aps complete <ID> Mark an In Progress work item as Complete
aps graph [module] Show work item dependency graph
aps --help Show this help

Options:
Expand All @@ -67,6 +73,10 @@ Examples:
aps lint . --json # Lint current dir, JSON output
aps next # Show next ready item in plans/
aps next auth # Show next ready item in auth module
aps start AUTH-003 # Mark AUTH-003 as In Progress
aps complete AUTH-003 # Mark AUTH-003 Complete
aps complete AUTH-003 --learning "retry on 5xx"
aps graph auth # Show auth dependency graph
EOF
}

Expand Down Expand Up @@ -94,6 +104,18 @@ main() {
shift
cmd_next "$@"
;;
start)
shift
cmd_start "$@"
;;
complete)
shift
cmd_complete "$@"
;;
graph)
shift
cmd_graph "$@"
;;
--help|-h|help|"")
show_help
exit 0
Expand Down
Loading
Loading