Skip to content

Conversation

@localden
Copy link
Collaborator

@localden localden commented Sep 21, 2025

Copilot AI review requested due to automatic review settings September 21, 2025 18:38

This comment was marked as outdated.

Copilot AI review requested due to automatic review settings September 21, 2025 18:46

This comment was marked as outdated.

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings September 21, 2025 18:51
localden and others added 2 commits September 21, 2025 11:51
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

This comment was marked as outdated.

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings September 21, 2025 18:51
localden and others added 2 commits September 21, 2025 11:51
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

This comment was marked as outdated.

Copilot AI review requested due to automatic review settings September 21, 2025 18:52

This comment was marked as outdated.

Copilot AI review requested due to automatic review settings September 21, 2025 19:32
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

Copilot reviewed 15 out of 15 changed files in this pull request and generated 2 comments.


Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

Copilot AI review requested due to automatic review settings September 21, 2025 19:53
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

Copilot reviewed 15 out of 15 changed files in this pull request and generated 3 comments.


Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings September 21, 2025 19:55
@localden localden merged commit 18236f2 into main Sep 21, 2025
2 checks passed
@localden localden deleted the spec-kit-vnext branch September 21, 2025 19:56
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

Copilot reviewed 15 out of 15 changed files in this pull request and generated 9 comments.


Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

"codex": ".codex/",
"windsurf": ".windsurf/",
"kilocode": ".kilocode/",
"auggie": ".auggie/",
Copy link

Copilot AI Sep 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Auggie folder is defined here as .auggie/ but elsewhere (packaging and agent context scripts) the path used is .augment/. This mismatch will lead to the security notice not matching the actual generated folder and may cause users to miss ignoring the correct directory. Standardize on one (likely .augment/ given other scripts) across all references.

Suggested change
"auggie": ".auggie/",
"auggie": ".augment/",

Copilot uses AI. Check for mistakes.
Comment on lines +170 to +171
mkdir -p "$base_dir/.augment/commands"
generate_commands auggie md "\$ARGUMENTS" "$base_dir/.augment/commands" "$script" ;;
Copy link

Copilot AI Sep 21, 2025

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.

Suggested change
mkdir -p "$base_dir/.augment/commands"
generate_commands auggie md "\$ARGUMENTS" "$base_dir/.augment/commands" "$script" ;;
mkdir -p "$base_dir/.auggie/commands"
generate_commands auggie md "\$ARGUMENTS" "$base_dir/.auggie/commands" "$script" ;;

Copilot uses AI. Check for mistakes.
$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'
Copy link

Copilot AI Sep 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Auggie path uses .augment while other code (agent_folder_map) uses .auggie/. Unify the directory naming to prevent users from updating one location while the tool expects another.

Suggested change
$AUGGIE_FILE = Join-Path $REPO_ROOT '.augment/rules/specify-rules.md'
$AUGGIE_FILE = Join-Path $REPO_ROOT '.auggie/rules/specify-rules.md'

Copilot uses AI. Check for mistakes.
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"
Copy link

Copilot AI Sep 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same Auggie directory naming inconsistency (.augment vs .auggie). Standardize the folder name across all scripts and documentation.

Suggested change
AUGGIE_FILE="$REPO_ROOT/.augment/rules/specify-rules.md"
AUGGIE_FILE="$REPO_ROOT/.auggie/rules/specify-rules.md"

Copilot uses AI. Check for mistakes.
specify init my-project --ai qwen
specify init my-project --ai opencode
specify init my-project --ai codex
specify init my-project --ai windsurf
Copy link

Copilot AI Sep 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Kilo Code is supported but missing from the usage examples; add specify init my-project --ai kilocode to keep examples exhaustive and consistent with supported agents.

Suggested change
specify init my-project --ai windsurf
specify init my-project --ai windsurf
specify init my-project --ai kilocode

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants