feat: live Wikipedia sync for auto-updating AI patterns (v2.3.0)#44
Open
justinmassa wants to merge 1 commit intoblader:mainfrom
Open
feat: live Wikipedia sync for auto-updating AI patterns (v2.3.0)#44justinmassa wants to merge 1 commit intoblader:mainfrom
justinmassa wants to merge 1 commit intoblader:mainfrom
Conversation
Add automatic fetching and caching of Wikipedia's "Signs of AI writing" patterns before each humanization run. The skill now stays current with new AI tells discovered by the community without manual updates. - Fetch latest patterns from Wikipedia's MediaWiki API via curl - Cache locally with 7-day refresh interval - Fall back to built-in static patterns if fetch fails - Add .gitignore for runtime cache file - Add Bash and WebFetch to allowed-tools - Update README with feature docs and version history Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
curlagainst the MediaWiki API, caches locally for 7 days, falls back gracefully to built-in static patterns on failureBashandWebFetchtoallowed-toolsin SKILL.md frontmatter.gitignorefor the runtime cache fileWhy curl over WebFetch?
During testing, Wikipedia returned 403 for all WebFetch requests (direct URL, mobile URL, and API URL).
curlwith a standard browser user-agent works reliably against the MediaWiki API, so the skill now uses curl as the primary fetch method with WebFetch as a fallback.Test plan
.gitignoreexcludes cache file from commits🤖 Generated with Claude Code