Skip to content

Commit 9111699

Browse files
authored
Merge pull request #1288 from github/localden/updates
Small QOL updates
2 parents baeb829 + 0049b1c commit 9111699

File tree

8 files changed

+118
-98
lines changed

8 files changed

+118
-98
lines changed

AGENTS.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -29,25 +29,25 @@ Specify supports multiple AI agents by generating agent-specific command files a
2929

3030
### Current Supported Agents
3131

32-
| Agent | Directory | Format | CLI Tool | Description |
33-
|-------|-----------|---------|----------|-------------|
34-
| **Claude Code** | `.claude/commands/` | Markdown | `claude` | Anthropic's Claude Code CLI |
35-
| **Gemini CLI** | `.gemini/commands/` | TOML | `gemini` | Google's Gemini CLI |
36-
| **GitHub Copilot** | `.github/agents/` | Markdown | N/A (IDE-based) | GitHub Copilot in VS Code |
37-
| **Cursor** | `.cursor/commands/` | Markdown | `cursor-agent` | Cursor CLI |
38-
| **Qwen Code** | `.qwen/commands/` | TOML | `qwen` | Alibaba's Qwen Code CLI |
39-
| **opencode** | `.opencode/command/` | Markdown | `opencode` | opencode CLI |
40-
| **Codex CLI** | `.codex/commands/` | Markdown | `codex` | Codex CLI |
41-
| **Windsurf** | `.windsurf/workflows/` | Markdown | N/A (IDE-based) | Windsurf IDE workflows |
42-
| **Kilo Code** | `.kilocode/rules/` | Markdown | N/A (IDE-based) | Kilo Code IDE |
43-
| **Auggie CLI** | `.augment/rules/` | Markdown | `auggie` | Auggie CLI |
44-
| **Roo Code** | `.roo/rules/` | Markdown | N/A (IDE-based) | Roo Code IDE |
45-
| **CodeBuddy CLI** | `.codebuddy/commands/` | Markdown | `codebuddy` | CodeBuddy CLI |
46-
| **Qoder CLI** | `.qoder/commands/` | Markdown | `qoder` | Qoder CLI |
47-
| **Amazon Q Developer CLI** | `.amazonq/prompts/` | Markdown | `q` | Amazon Q Developer CLI |
48-
| **Amp** | `.agents/commands/` | Markdown | `amp` | Amp CLI |
49-
| **SHAI** | `.shai/commands/` | Markdown | `shai` | SHAI CLI |
50-
| **IBM Bob** | `.bob/commands/` | Markdown | N/A (IDE-based) | IBM Bob IDE |
32+
| Agent | Directory | Format | CLI Tool | Description |
33+
| -------------------------- | ---------------------- | -------- | --------------- | --------------------------- |
34+
| **Claude Code** | `.claude/commands/` | Markdown | `claude` | Anthropic's Claude Code CLI |
35+
| **Gemini CLI** | `.gemini/commands/` | TOML | `gemini` | Google's Gemini CLI |
36+
| **GitHub Copilot** | `.github/agents/` | Markdown | N/A (IDE-based) | GitHub Copilot in VS Code |
37+
| **Cursor** | `.cursor/commands/` | Markdown | `cursor-agent` | Cursor CLI |
38+
| **Qwen Code** | `.qwen/commands/` | TOML | `qwen` | Alibaba's Qwen Code CLI |
39+
| **opencode** | `.opencode/command/` | Markdown | `opencode` | opencode CLI |
40+
| **Codex CLI** | `.codex/commands/` | Markdown | `codex` | Codex CLI |
41+
| **Windsurf** | `.windsurf/workflows/` | Markdown | N/A (IDE-based) | Windsurf IDE workflows |
42+
| **Kilo Code** | `.kilocode/rules/` | Markdown | N/A (IDE-based) | Kilo Code IDE |
43+
| **Auggie CLI** | `.augment/rules/` | Markdown | `auggie` | Auggie CLI |
44+
| **Roo Code** | `.roo/rules/` | Markdown | N/A (IDE-based) | Roo Code IDE |
45+
| **CodeBuddy CLI** | `.codebuddy/commands/` | Markdown | `codebuddy` | CodeBuddy CLI |
46+
| **Qoder CLI** | `.qoder/commands/` | Markdown | `qoder` | Qoder CLI |
47+
| **Amazon Q Developer CLI** | `.amazonq/prompts/` | Markdown | `q` | Amazon Q Developer CLI |
48+
| **Amp** | `.agents/commands/` | Markdown | `amp` | Amp CLI |
49+
| **SHAI** | `.shai/commands/` | Markdown | `shai` | SHAI CLI |
50+
| **IBM Bob** | `.bob/commands/` | Markdown | N/A (IDE-based) | IBM Bob IDE |
5151

5252
### Step-by-Step Integration Guide
5353

@@ -153,7 +153,7 @@ Add to case statement:
153153
case "$AGENT_TYPE" in
154154
# ... existing cases ...
155155
windsurf) update_agent_file "$WINDSURF_FILE" "Windsurf" ;;
156-
"")
156+
"")
157157
# ... existing checks ...
158158
[ -f "$WINDSURF_FILE" ] && update_agent_file "$WINDSURF_FILE" "Windsurf";
159159
# Update default creation condition
@@ -307,7 +307,7 @@ echo "✅ Done"
307307
Require a command-line tool to be installed:
308308

309309
- **Claude Code**: `claude` CLI
310-
- **Gemini CLI**: `gemini` CLI
310+
- **Gemini CLI**: `gemini` CLI
311311
- **Cursor**: `cursor-agent` CLI
312312
- **Qwen Code**: `qwen` CLI
313313
- **opencode**: `opencode` CLI

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ include:
2323
Examples of unacceptable behavior by participants include:
2424

2525
- The use of sexualized language or imagery and unwelcome sexual attention or
26-
advances
26+
advances
2727
- Trolling, insulting/derogatory comments, and personal or political attacks
2828
- Public or private harassment
2929
- Publishing others' private information, such as a physical or electronic

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ On [GitHub Codespaces](https://github.com/features/codespaces) it's even simpler
3232

3333
## Submitting a pull request
3434

35-
>[!NOTE]
36-
>If your pull request introduces a large change that materially impacts the work of the CLI or the rest of the repository (e.g., you're introducing new templates, arguments, or otherwise major changes), make sure that it was **discussed and agreed upon** by the project maintainers. Pull requests with large changes that did not have a prior conversation and agreement will be closed.
35+
> [!NOTE]
36+
> If your pull request introduces a large change that materially impacts the work of the CLI or the rest of the repository (e.g., you're introducing new templates, arguments, or otherwise major changes), make sure that it was **discussed and agreed upon** by the project maintainers. Pull requests with large changes that did not have a prior conversation and agreement will be closed.
3737
3838
1. Fork and clone the repository
3939
1. Configure and install the dependencies: `uv sync`
@@ -71,13 +71,13 @@ To test your templates, commands, and other changes locally, follow these steps:
7171

7272
Run the following command to generate the local packages:
7373

74-
```
74+
```bash
7575
./.github/workflows/scripts/create-release-packages.sh v1.0.0
7676
```
7777

7878
2. **Copy the relevant package to your test project**
7979

80-
```
80+
```bash
8181
cp -r .genreleases/sdd-copilot-package-sh/. <path-to-test-project>/
8282
```
8383

@@ -122,7 +122,7 @@ When submitting AI-assisted contributions, please ensure they include:
122122

123123
- **Clear disclosure of AI use** - You are transparent about AI use and degree to which you're using it for the contribution
124124
- **Human understanding and testing** - You've personally tested the changes and understand what they do
125-
- **Clear rationale** - You can explain why the change is needed and how it fits within Spec Kit's goals
125+
- **Clear rationale** - You can explain why the change is needed and how it fits within Spec Kit's goals
126126
- **Concrete evidence** - Include test cases, scenarios, or examples that demonstrate the improvement
127127
- **Your own analysis** - Share your thoughts on the end-to-end developer experience
128128

0 commit comments

Comments
 (0)