-
Notifications
You must be signed in to change notification settings - Fork 5k
Spec Kit Improvements #451
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c65b0fb
86aaf2d
cef4e8f
33652bf
713af3c
ebf53e1
026aa69
ef05d48
39b33eb
dceb903
bc89608
494cded
ceba130
ecf1757
e9aed2d
974347c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -66,6 +66,8 @@ CURSOR_FILE="$REPO_ROOT/.cursor/rules/specify-rules.mdc" | |||||
| QWEN_FILE="$REPO_ROOT/QWEN.md" | ||||||
| AGENTS_FILE="$REPO_ROOT/AGENTS.md" | ||||||
| WINDSURF_FILE="$REPO_ROOT/.windsurf/rules/specify-rules.md" | ||||||
| KILOCODE_FILE="$REPO_ROOT/.kilocode/rules/specify-rules.md" | ||||||
| AUGGIE_FILE="$REPO_ROOT/.augment/rules/specify-rules.md" | ||||||
|
||||||
| AUGGIE_FILE="$REPO_ROOT/.augment/rules/specify-rules.md" | |
| AUGGIE_FILE="$REPO_ROOT/.auggie/rules/specify-rules.md" |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -25,7 +25,7 @@ Relies on common helper functions in common.ps1 | |||||
| #> | ||||||
| param( | ||||||
| [Parameter(Position=0)] | ||||||
| [ValidateSet('claude','gemini','copilot','cursor','qwen','opencode','codex','windsurf')] | ||||||
| [ValidateSet('claude','gemini','copilot','cursor','qwen','opencode','codex','windsurf','kilocode','auggie')] | ||||||
| [string]$AgentType | ||||||
| ) | ||||||
|
|
||||||
|
|
@@ -51,6 +51,8 @@ $CURSOR_FILE = Join-Path $REPO_ROOT '.cursor/rules/specify-rules.mdc' | |||||
| $QWEN_FILE = Join-Path $REPO_ROOT 'QWEN.md' | ||||||
| $AGENTS_FILE = Join-Path $REPO_ROOT 'AGENTS.md' | ||||||
| $WINDSURF_FILE = Join-Path $REPO_ROOT '.windsurf/rules/specify-rules.md' | ||||||
| $KILOCODE_FILE = Join-Path $REPO_ROOT '.kilocode/rules/specify-rules.md' | ||||||
| $AUGGIE_FILE = Join-Path $REPO_ROOT '.augment/rules/specify-rules.md' | ||||||
|
||||||
| $AUGGIE_FILE = Join-Path $REPO_ROOT '.augment/rules/specify-rules.md' | |
| $AUGGIE_FILE = Join-Path $REPO_ROOT '.auggie/rules/specify-rules.md' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uses .augment path while Python agent_folder_map uses .auggie/. Align this with the chosen canonical folder name to avoid inconsistent directory structures in generated templates.