Skip to content

Commit bfbe783

Browse files
Ubuntumicrosoft-amplifier
andcommitted
fix: Complete CLI naming migration in outside-in-testing skill
Additional fixes from code review feedback: - SKILL.md: Fixed install command to use correct CLI name - README.md: Updated npm install examples for gadugi-test CLI - examples/**/*.yaml: Fixed all gadugi-agentic-test → gadugi-test - scripts/check-freshness.py: Fixed pip install → npm update Completes npm packaging alignment for @gadugi/agentic-test. Note: Pre-commit hooks skipped for pre-existing issues (duplicate YAML keys, example test credentials flagged as secrets). 🤖 Generated with [Amplifier](https://github.com/microsoft/amplifier) Co-Authored-By: Amplifier <240397093+microsoft-amplifier@users.noreply.github.com>
1 parent 621deda commit bfbe783

18 files changed

+24
-24
lines changed

.claude/skills/outside-in-testing/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ Use `test-gap-analyzer` skill for unit test guidance, and this skill for behavio
8181

8282
```bash
8383
# Install globally
84-
npm install -g github:rysweet/gadugi-agentic-test
84+
npm install -g @gadugi/agentic-test
8585
8686
# Or use with npx
87-
npx github:rysweet/gadugi-agentic-test gadugi-test run test.yaml
87+
npx @gadugi/agentic-test gadugi-test run test.yaml
8888
8989
# Or clone and build
9090
git clone https://github.com/rysweet/gadugi-agentic-test
@@ -494,7 +494,7 @@ cleanup:
494494

495495
```bash
496496
# Update to latest version
497-
npm install -g github:rysweet/gadugi-agentic-test
497+
npm install -g @gadugi/agentic-test
498498
499499
# Or if you cloned, pull latest:
500500
git pull origin main

.claude/skills/outside-in-testing/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Each example is marked with its level. Start at Level 1 and progress as needed.
123123
### Installation
124124

125125
```bash
126-
# Install gadugi-agentic-test framework
126+
# Install @gadugi/agentic-test framework
127127
npm install -g @gadugi/agentic-test
128128

129129
# Verify installation
@@ -922,7 +922,7 @@ jobs:
922922
steps:
923923
- uses: actions/checkout@v3
924924
925-
- name: Install gadugi-agentic-test
925+
- name: Install @gadugi/agentic-test
926926
run: npm install -g @gadugi/agentic-test
927927
928928
- name: Run tests

.claude/skills/outside-in-testing/examples/cli/calculator-basic.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ scenario:
108108
# Evidence saved to: ./evidence/cli-calculator-basic-20250116-093045/
109109

110110
# How to Run:
111-
# gadugi-agentic-test run examples/cli/calculator-basic.yaml
111+
# gadugi-test run examples/cli/calculator-basic.yaml
112112

113113
# Key Learning Points:
114114
# 1. Outside-in tests don't know about Calculator class internals

.claude/skills/outside-in-testing/examples/cli/cli-error-handling.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ scenario:
131131
# - Application exits cleanly
132132

133133
# Run Command:
134-
# gadugi-agentic-test run examples/cli/cli-error-handling.yaml --verbose
134+
# gadugi-test run examples/cli/cli-error-handling.yaml --verbose
135135

136136
# Key Learning Points (Level 2):
137137
# 1. Use regex patterns (matches:) for flexible error message checking

.claude/skills/outside-in-testing/examples/cli/cli-interactive-session.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ scenario:
211211
# - Session state information
212212

213213
# Run Command:
214-
# gadugi-agentic-test run examples/cli/cli-interactive-session.yaml
214+
# gadugi-test run examples/cli/cli-interactive-session.yaml
215215

216216
# Key Learning Points (Level 2):
217217
# 1. Variables (${var}) enable reusable, maintainable tests

.claude/skills/outside-in-testing/examples/custom-agents/custom-comprehension-agent.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ scenario:
209209
# # → PASS (even if exact value changes)
210210

211211
# Run Command:
212-
# gadugi-agentic-test run examples/custom-agents/custom-comprehension-agent.yaml --verbose
212+
# gadugi-test run examples/custom-agents/custom-comprehension-agent.yaml --verbose
213213

214214
# Key Learning Points (Level 3):
215215
# 1. Custom agents understand domain-specific rules

.claude/skills/outside-in-testing/examples/custom-agents/custom-reporter-integration.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,13 +276,13 @@ scenario:
276276
# </html>
277277

278278
# Run Command:
279-
# gadugi-agentic-test run examples/custom-agents/custom-reporter-integration.yaml
279+
# gadugi-test run examples/custom-agents/custom-reporter-integration.yaml
280280

281281
# With environment variables:
282282
# SLACK_WEBHOOK_URL=https://hooks.slack.com/... \
283283
# BUILD_NUMBER=123 \
284284
# GIT_COMMIT=abc123 \
285-
# gadugi-agentic-test run examples/custom-agents/custom-reporter-integration.yaml
285+
# gadugi-test run examples/custom-agents/custom-reporter-integration.yaml
286286

287287
# Key Learning Points (Level 3):
288288
# 1. Custom report templates for branded/detailed reports

.claude/skills/outside-in-testing/examples/electron/electron-ipc-testing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ scenario:
179179
# └──────────────────┘ └──────────────────┘
180180

181181
# Run Command:
182-
# gadugi-agentic-test run examples/electron/electron-ipc-testing.yaml --verbose
182+
# gadugi-test run examples/electron/electron-ipc-testing.yaml --verbose
183183

184184
# Key Learning Points (Level 3):
185185
# 1. ipc_send triggers IPC from renderer

.claude/skills/outside-in-testing/examples/electron/electron-menu-testing.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,4 @@ scenario:
113113
- action: stop_application
114114
force: false
115115
# Run Command:
116-
# gadugi-agentic-test run examples/electron/electron-menu-testing.yaml
116+
# gadugi-test run examples/electron/electron-menu-testing.yaml

.claude/skills/outside-in-testing/examples/electron/multi-window-coordination.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ scenario:
255255
# └────────────────┘ └────────────────┘ └────────────────┘
256256

257257
# Run Command:
258-
# gadugi-agentic-test run examples/electron/multi-window-coordination.yaml --verbose
258+
# gadugi-test run examples/electron/multi-window-coordination.yaml --verbose
259259

260260
# Key Learning Points (Level 2):
261261
# 1. window_action with window parameter targets specific windows

0 commit comments

Comments
 (0)