Skip to content

Commit 84f2657

Browse files
AndriySvyrydCopilot
andcommitted
Update .agents/skills/make-skill/SKILL.md
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 84af1e2 commit 84f2657

3 files changed

Lines changed: 8 additions & 12 deletions

File tree

.agents/skills/make-skill/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ Include these recommended sections, following this file's structure:
8484

8585
### Step 6: Write Scripts (Script-driven Only)
8686

87-
- Prefer Powershell, but can also use Python or Javascript
87+
- Prefer PowerShell, but can also use Python or JavaScript
8888
- Standard param block with defaults
89-
- For Powershell, use PowershellWrite-Section helper for consistent output
89+
- Ensure scripts produce clear, structured, and parseable console output (for example, section headers and status lines)
9090
- Emoji status: ✅ green / ⚠️ yellow / 🔴 red
9191
- **Fail-closed error handling** — Unknown ≠ Healthy
9292

.github/workflows/copilot-setup-steps.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040
--health-timeout=5s
4141
4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444

4545
- name: Restore .NET SDK
4646
continue-on-error: true
47-
run: ./restore.sh || true
47+
run: ./restore.sh
4848

4949
- name: Export environment variables for the agent's session
50-
run:
51-
echo 'Test__SqlServer__DefaultConnection=Server=localhost;Database=test;User=SA;Password=PLACEHOLDERPass$$w0rd;Connect Timeout=60;ConnectRetryCount=0;Trust Server Certificate=true' >> "$GITHUB_ENV"
52-
echo "$PWD/.dotnet/" >> $GITHUB_PATH
53-
echo "$PWD/.dotnet/" >> $DOTNET_ROOT
50+
run: |
51+
echo "Test__SqlServer__DefaultConnection=Server=localhost;Database=test;User=SA;Password=PLACEHOLDERPass$$w0rd;Connect Timeout=60;ConnectRetryCount=0;Trust Server Certificate=true" >> "$GITHUB_ENV"
52+
echo "DOTNET_ROOT=$PWD/.dotnet/" >> "$GITHUB_ENV"
53+
echo "$PWD/.dotnet/" >> $GITHUB_PATH

.vscode/mcp.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
"type": "http",
55
"url": "https://learn.microsoft.com/api/mcp"
66
},
7-
"mihubot": {
8-
"type": "http",
9-
"url": "https://mihubot.xyz/mcp"
10-
},
117
"nuget": {
128
"type": "stdio",
139
"command": "dnx",

0 commit comments

Comments
 (0)