Add run-claude-osint skill (driver + man page)#7
Open
b3nadam50-star wants to merge 1 commit into
Open
Conversation
This repo is a Claude skills package, not an app. The skill validates the SKILL.md frontmatter Claude loads and exercises the two Python helpers the way CI does, via a one-shot smoke.sh driver: - py_compile secret_scan.py and h1_reference.py - secret_scan.py stdin detection (AWS key + JWT canaries) and directory scan - SKILL.md frontmatter validation (name/description/version/triggers, >=5) - sync-skill-content.sh --check - h1_reference.py live HackerOne fetch (non-fatal if offline) SKILL.md documents the driver as the primary path plus verified individual commands and the repo's non-obvious gotchas (sync is a no-op without docs/full-skills/, secret_scan self-filters noise dirs). Co-Authored-By: Claude Opus 4.8 <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.
What
Adds a
run-claude-osintskill at.claude/skills/run-claude-osint/so a future agent (or human) can build, validate, and drive this repo from a clean machine.This repo is a Claude skills package, not an app — its product is the two
SKILL.mdfiles plus two runnable Python helpers. "Running" it means validating the SKILL.md frontmatter Claude loads and exercising the helpers the way CI does.Contents
smoke.sh— one-shot driver (the harness). Six checks, exits 0/1:py_compileboth helperssecret_scan.pystdin detection (AWS key + JWT canaries)secret_scan.pydirectory scan emits JSONLSKILL.mdfrontmatter valid + complete (name/description/version/triggers, ≥5)sync-skill-content.sh --checkexits 0h1_reference.pylive HackerOne fetch (non-fatal if offline)SKILL.md— man page: documents the driver as the primary path, verified individual commands, and non-obvious gotchas (sync is a no-op withoutdocs/full-skills/;secret_scan.pyself-filters noise dirs).Verification
Driver runs green end-to-end on Linux (Python 3.13); every command in
SKILL.mdwas executed before commit.🤖 Generated with Claude Code