원클릭으로
kf-manage
Manage track lifecycle: archive, bulk-archive, compact, restore, delete, rename, and cleanup
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage track lifecycle: archive, bulk-archive, compact, restore, delete, rename, and cleanup
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Kiloforge CLI tools reference and shared documentation hub. Lists available tools, provides runtime environment info, and hosts reference docs used by other kf-* skills.
Receive a track ID, validate it is an active unclaimed track, then implement it following the kiloforge workflow.
Product strategy advisor: research the codebase and competitive landscape to provide product design, branding, feature prioritization, and competitive analysis advice. Produces actionable reports to .agent/kf/_reports/product-advisor/ designed for handoff to /kf-architect.
Project architect: research the codebase and distill feature requests into well-scoped kiloforge tracks with specs and implementation plans. Splits large work into multiple tracks (including BE/FE splits). Merges track artifacts to the primary branch so developer workers can claim them.
Resolve git merge conflicts during push or pull sync operations. Fetches remote changes, merges, resolves conflicts (or escalates), and completes the sync.
Interactive project bootstrapper with platform-aware defaults. Guides users through project creation decisions, generates a blueprint, scaffolds the project, and invokes kf-setup with pre-populated answers.
| name | kf-manage |
| description | Manage track lifecycle: archive, bulk-archive, compact, restore, delete, rename, and cleanup |
| metadata | {"argument-hint":"<archive|bulk-archive|compact|restore|delete|rename|cleanup> [track-id]"} |
Manage the complete track lifecycle including archiving, bulk-archiving, compacting, restoring, deleting, renaming, and cleaning up orphaned artifacts.
/kf-setup first)/kf-architect)/kf-developer)eval "$(~/.kf/bin/kf-preflight.py)"
Archive a single track:
~/.kf/bin/kf-track.py archive {trackId} [reason]
Archive all completed tracks at once. See references/bulk-archive.md for the full workflow:
kf-track list --status completedkf-track archiveRemove archived/completed track directories while preserving recovery via git history. See references/compact-archive.md for the full workflow:
~/.kf/bin/kf-track.py compact run [--dry-run]
~/.kf/bin/kf-track.py compact list
~/.kf/bin/kf-track.py compact recover <name>
Restore a track from archive or compaction:
_archive/: move directory back to tracks/kf-track compact recover <name> to extract, then copy backRemove a track entirely. Confirm with user before proceeding:
~/.kf/bin/kf-track.py archive {trackId} "deleted"
rm -rf .agent/kf/tracks/{trackId}/
Rename a track (move directory, update registry).
Find and report orphaned artifacts:
--dry-run for compact operations when available