Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
28b347e
feat: scheduled Netlify rebuild + part-2 edits
SamMorrowDrums May 20, 2026
aa56fa6
Update progressive-discovery-in-mcp-part-2.md
SamMorrowDrums May 20, 2026
e45d8d7
Enhance discussion on skills over MCP and server design
SamMorrowDrums May 21, 2026
a69b870
Part 2: typo fixes, citations, and Try it yourself section
Copilot May 21, 2026
5184b0d
Part 2: more typo/citation fixes + light restructuring
Copilot May 21, 2026
81c69f2
Part 2: link MCP Discord to official contributor invite
Copilot May 21, 2026
32310b8
Part 2: retitle to 'The Skill Dealer: Skills over MCP'
Copilot May 21, 2026
e215874
Part 2: point MCP spec links at 2025-11-25 + correct anchors
Copilot May 21, 2026
65dfe08
Part 2: tighten the GitHub MCP server-instructions sentence
Copilot May 21, 2026
46fea03
Part 2: expand the server-instructions limitation paragraph
Copilot May 21, 2026
b86ac8a
Part 2: add 'I really want this to work better' beat
Copilot May 21, 2026
518a7d2
Part 2: clean up typos in server-instructions paragraph
Copilot May 21, 2026
1214d28
Part 2: 'provided to the task' -> 'provided to the model'
Copilot May 21, 2026
be557c6
Part 2: 'loaded into context when the skill is invoked'
Copilot May 21, 2026
6bf85b3
Part 2: drop 'at least at time of writing.' qualifier
Copilot May 21, 2026
3357a11
Part 2: drop 'and to' before 'thin out tool descriptions'
Copilot May 21, 2026
095aa31
Part 2: add missing article 'an' before 'always up-to-date set'
Copilot May 21, 2026
92d07a8
Part 2: drop 'Those folks would be correct, and' preamble
Copilot May 21, 2026
fb3390f
Part 2: link Claude Code citation to David Soria Parra's LinkedIn post
Copilot May 21, 2026
2656fa5
Part 2: extend Claude Code link anchor to 'by default in Claude Code'
Copilot May 21, 2026
28c3768
Part 2: drop rhetorical 'Why did I want every tool to be covered'
Copilot May 21, 2026
6dbe224
Part 2: restore PR #2382 hyperlink in 'For MCP server developers'
Copilot May 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/scheduled-rebuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Scheduled Netlify rebuild

on:
schedule:
# Every Wednesday at 12:00 UTC — picks up posts dated for that day
- cron: '0 12 * * 3'
workflow_dispatch:

jobs:
trigger-rebuild:
runs-on: ubuntu-latest
steps:
- name: Trigger Netlify build hook
env:
NETLIFY_BUILD_HOOK: ${{ secrets.NETLIFY_BUILD_HOOK }}
run: |
if [ -z "$NETLIFY_BUILD_HOOK" ]; then
echo "NETLIFY_BUILD_HOOK secret is not set"
exit 1
fi
curl -fsSL -X POST -d '{}' "$NETLIFY_BUILD_HOOK"
Loading