Update commands.

This commit is contained in:
Shawn Anderson 2025-10-14 19:48:52 -07:00
parent a7e2cfc089
commit 3e8edec6b3
3 changed files with 46 additions and 13 deletions

View File

@ -1,10 +0,0 @@
# Context The Full Initial Infinite Agentic Loop
RUN:
git ls-files
READ:
ai_docs/full-initial.md
.claude/commands/infinite-web.md
DASHBOARD.md

View File

@ -1,8 +1,11 @@
# Context Window Prime
# Context The Full Initial Infinite Agentic Loop
RUN:
git ls-files
@.claude/commands/sync.md
READ:
README.md
ai_docs/claude_code_fresh_tutorials.md
ai_docs/full-initial.md
.claude/commands/infinite-web.md
DASHBOARD.md

40
.claude/commands/sync.md Normal file
View File

@ -0,0 +1,40 @@
# Agent Synchronization Report
## Instructions
Run these commands IN PARALLEL to gather sync data:
### Recent Activity (Last Hour)
1. **Recent commits with details:**
```bash
git log --since="1 hour ago" --pretty=format:"%h|%ar|%an|%s" --stat
```
2. **If no recent commits, show last 3:**
```bash
git log -3 --pretty=format:"%h|%ar|%an|%s" --stat
```
3. **Current branch and status:**
```bash
git branch --show-current && echo "---" && git status --short
```
### Development Velocity
4. **Commits this week:**
```bash
git log --since="1 week ago" --oneline | wc -l
```
5. **Commits today:**
```bash
git log --since="midnight" --oneline | wc -l
```
6. **Files changed today:**
```bash
git log --since="midnight" --numstat --pretty="" | wc -l
```