askill
track-files

track-filesSafety 98Repository

Track batches of files that need similar changes for large-scale work. Use when refactoring affects many files, migrating patterns, or coordinating batch operations across sessions.

1 stars
1.2k downloads
Updated 2/23/2026

Package Files

Loading files...
SKILL.md

Track Files

Purpose: Track batches of files that need similar changes for large-scale work Usage: /track-files <description of what to track>

Constraints

  • Always document search criteria -- Record how files were found so the list can be reproduced
  • Always document skip reasons -- Explain why any file was excluded
  • Keep progress updated -- Move files between sections as work progresses

Prerequisites

Requires .ai-project/file-lists/ directory (created by /init). If the directory does not exist, create it or suggest running /init.

When to Create a File List

Create a file list when:

  • Refactoring affects more than 5 files
  • Migrating patterns across the codebase
  • Batch operations need progress tracking
  • Multiple files need the same type of change
  • Work spans multiple sessions

Workflow

Step 1: Create the File

Create a new file in .ai-project/file-lists/:

.ai-project/file-lists/{descriptive-name}.md

Naming conventions:

  • Use kebab-case
  • Be descriptive: components-without-tests.md, refactor-api-calls.md

Step 2: Document the Search

Record how the files were found:

# {Title}

**Created:** {date}
**Status:** In Progress | Complete | Paused

## Search Criteria

How these files were identified:

\`\`\`bash
# Command used to find files
grep -r "pattern" src/ --include="*.ts"
find src -name "*.ts" -exec grep -l "pattern" {} \;
\`\`\`

## Selection Criteria

- Include: {what makes a file relevant}
- Exclude: {what disqualifies a file}

Step 3: List the Files

Organize with checkboxes for tracking:

## Files

### Pending

- [ ] `src/components/Button.ts` - {brief note}
- [ ] `src/components/Input.ts` - {brief note}
- [ ] `src/services/api.ts` - {brief note}

### In Progress

- [ ] `src/components/Form.ts` - Started, waiting for review

### Completed

- [x] `src/utils/helpers.ts` - Done
- [x] `src/utils/formatters.ts` - Done

### Skipped

- `src/legacy/old.ts` - Reason: deprecated, will be removed

Step 4: Add Progress Summary

Track overall progress:

## Progress

| Status | Count |
|--------|-------|
| Total | 25 |
| Completed | 10 |
| In Progress | 2 |
| Pending | 12 |
| Skipped | 1 |

**Last Updated:** {date}

Example File List

# Components Without Stories

**Created:** 2025-01-15
**Status:** In Progress

## Search Criteria

Vue components without corresponding Storybook stories:

\`\`\`bash
# Find Vue files without stories
for f in $(find src/components -name "*.vue"); do
  story="${f%.vue}.stories.ts"
  if [ ! -f "$story" ]; then
    echo "$f"
  fi
done
\`\`\`

## Selection Criteria

- Include: Vue components in `src/components/`
- Exclude: Layout wrappers, internal components with `_` prefix

## Progress

| Status | Count |
|--------|-------|
| Total | 15 |
| Completed | 5 |
| In Progress | 1 |
| Pending | 8 |
| Skipped | 1 |

**Last Updated:** 2025-01-16

## Files

### Pending

- [ ] `src/components/buttons/PrimaryButton.vue` - Interactive component
- [ ] `src/components/buttons/SecondaryButton.vue` - Interactive component
- [ ] `src/components/forms/TextField.vue` - Form input
- [ ] `src/components/forms/SelectField.vue` - Form input
- [ ] `src/components/cards/UserCard.vue` - Display component
- [ ] `src/components/cards/ProductCard.vue` - Display component
- [ ] `src/components/modals/ConfirmModal.vue` - Modal component
- [ ] `src/components/modals/AlertModal.vue` - Modal component

### In Progress

- [ ] `src/components/navigation/Sidebar.vue` - Complex component, drafting stories

### Completed

- [x] `src/components/buttons/IconButton.vue` - 3 stories created
- [x] `src/components/forms/Checkbox.vue` - 4 stories created
- [x] `src/components/forms/Radio.vue` - 3 stories created
- [x] `src/components/indicators/Badge.vue` - 2 stories created
- [x] `src/components/indicators/Spinner.vue` - 2 stories created

### Skipped

- `src/components/_internal/PortalTarget.vue` - Internal utility, no visual output

## Notes

- Prioritizing interactive components first
- Form components need accessibility testing in stories

Working with File Lists

During Refactoring

  1. Move file from "Pending" to "In Progress"
  2. Make the changes
  3. Verify changes (type check, tests)
  4. Move file to "Completed" with note
  5. Update progress counts

When Skipping Files

Always document why:

### Skipped

- `src/legacy/old.ts` - Reason: deprecated, will be removed in v2
- `src/generated/types.ts` - Reason: auto-generated, changes would be overwritten

Resuming Work

When returning to a file list:

  1. Check current status
  2. Review "In Progress" items
  3. Continue with next "Pending" item
  4. Update progress summary

Archiving Completed Lists

When all files are processed:

  1. Update status to "Complete"
  2. Add completion date
  3. Optionally move to a completed folder or archive
# Components Without Stories

**Created:** 2025-01-15
**Completed:** 2025-01-20
**Status:** Complete

...

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

91/100Analyzed 2/19/2026

High-quality skill document for tracking batches of files during large-scale refactoring or migrations. Well-structured with clear triggers, constraints, step-by-step workflow, and comprehensive examples including templates for file lists with progress tracking. Tags (api, github-actions) seem slightly mismatched but don't significantly impact utility. The skill is actionable, reusable, and safe - providing a complete workflow for coordinating multi-file changes across sessions.

98
95
82
93
92

Metadata

Licenseunknown
Version-
Updated2/23/2026
PublisherhypeJunction

Tags

apigithub-actions