Spaces:
Running
Running
FoodDesert commited on
Commit ·
96f85ac
1
Parent(s): 468473c
Remove outdated branch list from project summary
Browse files- AGENTS.md +2 -13
- PROJECT_SUMMARY.md +0 -10
- SESSION_QUICKSTART.md +1 -4
AGENTS.md
CHANGED
|
@@ -20,10 +20,6 @@
|
|
| 20 |
- If behavior conflicts with existing code, update code to match the contract (not the other way around).
|
| 21 |
|
| 22 |
## Git setup notes for this repository/user
|
| 23 |
-
- Default working branch on user machine:
|
| 24 |
-
- `claude/tag-generation-pipeline-raigF`
|
| 25 |
-
- This local branch should track GitHub remote branch:
|
| 26 |
-
- `github/claude/tag-generation-pipeline-raigF`
|
| 27 |
- Remote mapping currently used by user:
|
| 28 |
- `github` => `https://github.com/FoodDesert/Prompt_Squirrel_RAG.git`
|
| 29 |
- `origin` => `https://huggingface.co/spaces/FoodDesert/Prompt_Squirrel_RAG`
|
|
@@ -37,20 +33,13 @@
|
|
| 37 |
4. `rg --files | rg 'AGENTS.md|PROJECT_SUMMARY.md|SESSION_QUICKSTART.md'`
|
| 38 |
- If `github` remote is missing, add it immediately:
|
| 39 |
- `git remote add github https://github.com/FoodDesert/Prompt_Squirrel_RAG.git`
|
| 40 |
-
- If branch `claude/tag-generation-pipeline-raigF` is missing locally:
|
| 41 |
-
- `git fetch github`
|
| 42 |
-
- `git checkout -b claude/tag-generation-pipeline-raigF --track github/claude/tag-generation-pipeline-raigF`
|
| 43 |
-
- If branch exists but is not checked out:
|
| 44 |
-
- `git checkout claude/tag-generation-pipeline-raigF`
|
| 45 |
-
- Ensure upstream is GitHub branch:
|
| 46 |
-
- `git branch --set-upstream-to=github/claude/tag-generation-pipeline-raigF`
|
| 47 |
- Sync before any work:
|
| 48 |
-
- `git pull --rebase github
|
| 49 |
|
| 50 |
### Git guidance style for this user
|
| 51 |
- Keep Git instructions short and step-by-step.
|
| 52 |
- Ask for / interpret `git status --short --branch` output first.
|
| 53 |
- Prefer explicit commands with remote names, e.g.:
|
| 54 |
-
- `git pull --rebase github
|
| 55 |
- `git push github HEAD`
|
| 56 |
- If branch divergence appears, prefer a low-risk resync path over complex conflict resolution.
|
|
|
|
| 20 |
- If behavior conflicts with existing code, update code to match the contract (not the other way around).
|
| 21 |
|
| 22 |
## Git setup notes for this repository/user
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
- Remote mapping currently used by user:
|
| 24 |
- `github` => `https://github.com/FoodDesert/Prompt_Squirrel_RAG.git`
|
| 25 |
- `origin` => `https://huggingface.co/spaces/FoodDesert/Prompt_Squirrel_RAG`
|
|
|
|
| 33 |
4. `rg --files | rg 'AGENTS.md|PROJECT_SUMMARY.md|SESSION_QUICKSTART.md'`
|
| 34 |
- If `github` remote is missing, add it immediately:
|
| 35 |
- `git remote add github https://github.com/FoodDesert/Prompt_Squirrel_RAG.git`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
- Sync before any work:
|
| 37 |
+
- `git pull --rebase github HEAD`
|
| 38 |
|
| 39 |
### Git guidance style for this user
|
| 40 |
- Keep Git instructions short and step-by-step.
|
| 41 |
- Ask for / interpret `git status --short --branch` output first.
|
| 42 |
- Prefer explicit commands with remote names, e.g.:
|
| 43 |
+
- `git pull --rebase github HEAD`
|
| 44 |
- `git push github HEAD`
|
| 45 |
- If branch divergence appears, prefer a low-risk resync path over complex conflict resolution.
|
PROJECT_SUMMARY.md
CHANGED
|
@@ -56,7 +56,6 @@ The system implements a **three-stage pipeline** with strict contracts between s
|
|
| 56 |
## Recent Development Work
|
| 57 |
|
| 58 |
### Tag Categorization Pipeline (Latest Work - Feb 13-14, 2026)
|
| 59 |
-
**Branch**: `claude/tag-generation-pipeline-raigF`
|
| 60 |
|
| 61 |
Implementation of a categorized tag suggestion system based on the e621 tagging checklist:
|
| 62 |
|
|
@@ -150,15 +149,6 @@ Implementation of a categorized tag suggestion system based on the e621 tagging
|
|
| 150 |
|
| 151 |
---
|
| 152 |
|
| 153 |
-
## Git Branch Structure
|
| 154 |
-
|
| 155 |
-
### Current Active Branches
|
| 156 |
-
- `claude/tag-generation-pipeline-raigF` - Tag categorization work (current)
|
| 157 |
-
- `claude/prompt-squirrel-rag-3PZn7` - Previous work branch
|
| 158 |
-
- `claude/fix-eval-015ZwE7a5E6YVTrMpuB2pXX7` - Evaluation fixes
|
| 159 |
-
- `master` / `main` - Main branches
|
| 160 |
-
|
| 161 |
-
---
|
| 162 |
|
| 163 |
## Testing & Evaluation
|
| 164 |
|
|
|
|
| 56 |
## Recent Development Work
|
| 57 |
|
| 58 |
### Tag Categorization Pipeline (Latest Work - Feb 13-14, 2026)
|
|
|
|
| 59 |
|
| 60 |
Implementation of a categorized tag suggestion system based on the e621 tagging checklist:
|
| 61 |
|
|
|
|
| 149 |
|
| 150 |
---
|
| 151 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 152 |
|
| 153 |
## Testing & Evaluation
|
| 154 |
|
SESSION_QUICKSTART.md
CHANGED
|
@@ -9,10 +9,7 @@ A RAG system that converts natural language prompts → e621-style tags for furr
|
|
| 9 |
3. **Stage 3 (Selection)**: Candidates → final selected tags (LLM)
|
| 10 |
4. **Stage 3s (Structural)**: Selected tags → structural inferences (optional, e.g., clothing → topless)
|
| 11 |
|
| 12 |
-
##
|
| 13 |
-
`claude/tag-generation-pipeline-raigF`
|
| 14 |
-
|
| 15 |
-
## Latest Features (Feb 13-14, 2026)
|
| 16 |
- **Tag Categorization**: Organized suggestions by e621 checklist categories (species, clothing, posture, etc.)
|
| 17 |
- **Category Parser**: Parses checklist with tiers (CRITICAL/IMPORTANT/NICE_TO_HAVE/META) and constraints
|
| 18 |
- **Evaluation Metrics**: Per-category P/R/F1, ranking metrics (MRR, P@K, nDCG)
|
|
|
|
| 9 |
3. **Stage 3 (Selection)**: Candidates → final selected tags (LLM)
|
| 10 |
4. **Stage 3s (Structural)**: Selected tags → structural inferences (optional, e.g., clothing → topless)
|
| 11 |
|
| 12 |
+
## Latest Features (Feb 13-14, 2026)
|
|
|
|
|
|
|
|
|
|
| 13 |
- **Tag Categorization**: Organized suggestions by e621 checklist categories (species, clothing, posture, etc.)
|
| 14 |
- **Category Parser**: Parses checklist with tiers (CRITICAL/IMPORTANT/NICE_TO_HAVE/META) and constraints
|
| 15 |
- **Evaluation Metrics**: Per-category P/R/F1, ranking metrics (MRR, P@K, nDCG)
|