agent-loop-ext
Crash-resilient external agent loop with state persistence and CI/CD integration
Regenerate .cursorrules for Cursor with preserved team directives
$ npx -y skills add jmagly/aiwg --skill aiwg-regenerate-cursorrules --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/aiwg-regenerate-cursorrulesContext preview
The summary Claude sees to decide when to auto-load this skill.
Regenerate .cursorrules for Cursor with preserved team directives
namespace: aiwg name: aiwg-regenerate-cursorrules platforms: [all] description: Regenerate .cursorrules for Cursor with preserved team directives
Regenerate the `.cursorrules` file for Cursor IDE integration, analyzing current project state while preserving team directives and organizational requirements.
**Hook file approach (default):** Generates `AIWG-cursor.md` and adds `@AIWG-cursor.md` directive to `.cursorrules`. Note: Cursor's @-link support in `.cursorrules` is partially confirmed — see #444.
**Full inject (`--full-inject`):** Embeds AIWG content inline with AIWG markers (safe fallback).
| Flag | Description | |------|-------------| | `--no-backup` | Skip creating backup file | | `--dry-run` | Preview changes without writing | | `--show-preserved` | List all detected preserved content and exit | | `--full` | Full regeneration, preserve nothing (destructive) |
Unless `--no-backup` specified:
1. Check if `.cursorrules` exists 2. If exists, copy to `.cursorrules.backup-{YYYYMMDD-HHMMSS}` 3. Report backup location
Same preservation patterns as other platforms:
1. **Explicit Preserve Blocks**: `<!-- PRESERVE -->` ... `<!-- /PRESERVE -->` 2. **Preserved Section Headings**: Team *, Org *, Definition of Done, etc. 3. **Inline Directives**: Lines with directive keywords
Check installed frameworks by scanning:
Read registry for framework versions.
**Document Structure:**
# .cursorrules
Project rules for Cursor AI assistance.
## Project Overview
{Description from README.md or package.json}
## Tech Stack
- **Language**: {detected languages}
- **Framework**: {detected frameworks}
- **Package Manager**: {npm/yarn/pnpm/etc.}
## Development Commands
| Command | Description |
|---------|-------------|
| `npm install` | Install dependencies |
| `npm run build` | Build project |
| `npm test` | Run tests |
## Project Structuresrc/ → Source code test/ → Test files docs/ → Documentation
## Code Conventions
{Project-specific conventions}
---
## Team Directives
<!-- PRESERVED SECTION -->
{ALL PRESERVED CONTENT}
<!-- /PRESERVED SECTION -->
---
## AIWG Framework Integration
This project uses AIWG SDLC framework with Cursor.
### Installed Frameworks
| Framework | Agents | Commands |
|-----------|--------|----------|
| sdlc-complete | 54 | 42 |
### Using Agents
Invoke agents via @-mention in Cursor:
```text
@security-architect Review the authentication implementation
@test-engineer Generate unit tests for the user service| Request | Maps To | |---------|---------| | "run security review" | flow-security-review-cycle | | "check status" | project-status | | "start iteration N" | flow-iteration-dual-track |
{If .aiwg/ exists:}
| Category | Location | |----------|----------| | Requirements | @.aiwg/requirements/ | | Architecture | @.aiwg/architecture/ |
| Topic | Reference | |-------|-----------| | Orchestration | @~/.local/share/ai-writing-guide/agentic/code/addons/aiwg-utils/prompts/core/orchestrator.md | | Agent Design | @~/.local/share/ai-writing-guide/agentic/code/addons/aiwg-utils/prompts/agents/design-rules.md |
{If SDLC framework installed:}
| Topic | Reference | |-------|-----------| | Natural Language | @~/.local/share/ai-writing-guide/agentic/code/frameworks/sdlc-complete/docs/simple-language-translations.md |
---
<!-- Add team-specific notes below. Content in preserved sections survives regeneration. -->
### Step 6: Write Output **If `--dry-run`:** Display content, do not write. **Otherwise:** 1. Write to `.cursorrules` 2. Report summary
.cursorrules Regenerated ========================
Backup: .cursorrules.backup-20251206-153512
Preserved: 2 sections, 15 lines Regenerated: Project overview, structure, AIWG integration
Output: .cursorrules (187 lines)
## Examples ```bash # Regenerate .cursorrules /aiwg-regenerate-cursorrules # Preview changes /aiwg-regenerate-cursorrules --dry-run # Check preserved content /aiwg-regenerate-cursorrules --show-preserved # Full regeneration /aiwg-regenerate-cursorrules --full
| Command | Regenerates | |---------|-------------| | `/aiwg-regenerate-claude` | CLAUDE.md | | `/aiwg-regenerate-warp` | WARP.md | | `/aiwg-regenerate-agents` | AGENTS.md | | `/aiwg-regenerate-cursorrules` | .cursorrules | | `/aiwg-regenerate-windsurfrules` | .windsurfrules | | `/aiwg-regenerate-copilot` | copilot-instructions.md | | `/aiwg-regenerate` | Auto-detect |
Reusable project context and specialist workflows for the AI tools you already use. Plan software, coordinate specialist reviews, prepare campaigns, investigate incidents, organize research, curate media, and maintain operational knowledge.
Repo: jmagly/aiwg
Crash-resilient external agent loop with state persistence and CI/CD integration
Detect requests for iterative autonomous agent loops and route to the appropriate loop executor
Automatically execute tests when code-generating agents modify source files, enforcing the execute-before-return pattern
Enable agent loops to learn from similar past tasks and share patterns across loops
Query and manage the executable feedback debug memory
Execute tests on generated code and iterate until passing