Skip to content
Draft
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
10 changes: 5 additions & 5 deletions workflows/repository-quality-improver.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,18 @@ Daily or on-demand, select a focus area for repository improvement, conduct anal

- **Repository**: ${{ github.repository }}
- **Run Date**: $(date +%Y-%m-%d)
- **Cache Location**: `/tmp/gh-aw/cache-memory/focus-areas/`
- **Cache Location**: `/tmp/gh-aw/cache-memory-focus-areas/`
- **Strategy Distribution**: ~60% custom areas, ~30% standard categories, ~10% reuse for consistency

## Phase 0: Setup and Focus Area Selection

### 0.1 Load Focus Area History

Check the cache memory folder `/tmp/gh-aw/cache-memory/focus-areas/` for previous focus area selections:
Check the cache memory folder `/tmp/gh-aw/cache-memory-focus-areas/` for previous focus area selections:

```bash
if [ -f /tmp/gh-aw/cache-memory/focus-areas/history.json ]; then
cat /tmp/gh-aw/cache-memory/focus-areas/history.json
if [ -f /tmp/gh-aw/cache-memory-focus-areas/history.json ]; then
cat /tmp/gh-aw/cache-memory-focus-areas/history.json
fi
```

Expand Down Expand Up @@ -367,7 +367,7 @@ The following actionable tasks address the findings above.
After generating the report, update the focus area history:

```bash
mkdir -p /tmp/gh-aw/cache-memory/focus-areas/
mkdir -p /tmp/gh-aw/cache-memory-focus-areas/
# Write updated history.json with the new run appended
```

Expand Down