Nvidia skillspector
Guides agents through working with the NVIDIA/SkillSpector codebase (Python, TypeScript, Shell). Use when extending, debugging, or navigating SkillSpector, or when the user mentions 'SkillSpector', 'NVIDIA/SkillSpector', or asks about its architecture, modules, or public API. Not for general Python, TypeScript, Shell questions unrelated to SkillSpector.From its SKILL.md
npx -y skills add jmxt3/gitscape.ai --skill nvidia-skillspectorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
6.5 KB, ~1.4k tokens by cl100k_base, as published. Nobody here has run it
Skillspector Code Skill
Overview
Security scanner for AI agent skills. Detect vulnerabilities, malicious patterns, and security risks before installing agent skills.
Top-level areas: .github/, contrib/, docs/, extensions/, src/, tests/.
Primary languages: Python, TypeScript, Shell. The codebase contains 282 public symbols across 69 source files.
Key symbols:
is_language_compatibledef is_language_compatible(rule_id: str, detected_language: str) -> bool— ReturnTruewhen rule_id is reliable for detected_language.annotate_findingsdef annotate_findings( issues: list[dict[str, object]], detected_language: str, ) -> list[dict[str, object]]— Add alanguage_compatiblefield to each issue dict.ApiKeyclass ApiKey— A single API key with concurrency and rate-limit metadata.ApiKey.availabledef available(self) -> bool—Truewhen this key can accept at least one more caller.ApiKeyPoolclass ApiKeyPool— Thread-safe pool of API keys with per-key concurrency slots.ApiKeyPool.__init__def __init__(self, keys: list[ApiKey]) -> NoneApiKeyPool.acquiredef acquire(self, timeout: float | None = None) -> ApiKey— Acquire a slot on the least-loaded available key.ApiKeyPool.try_acquiredef try_acquire(self) -> ApiKey | None— Non-blocking acquire — returns a key immediately orNone.ApiKeyPool.releasedef release(self, key: ApiKey, *, success: bool = True) -> None— Release a slot on key back to the pool.ApiKeyPool.record_retry_successdef record_retry_success(self) -> None— Increment the retry-success counter for reporting.ApiKeyPool.rate_limits_hitdef rate_limits_hit(self) -> int— Total number of 429 responses encountered across all keys.ApiKeyPool.retry_successesdef retry_successes(self) -> int— Total number of successful retries after a key switch.ApiKeyPool.keys_configureddef keys_configured(self) -> int— Total number of keys in the pool.ApiKeyPool.total_capacitydef total_capacity(self) -> int— Sum ofmax_concurrentacross all keys.ApiKeyPool.active_requestsdef active_requests(self) -> int— Total active requests across all keys.ApiKeyPool.snapshotdef snapshot(self) -> dict[str, object]— Return a snapshot dict suitable for report metadata.PooledChatModelclass PooledChatModel— LangChain-compatible chat model wrapper with transparent key switching.PooledChatModel.__init__def __init__( self, pool: ApiKeyPool, *, max_tokens: int = 4096, timeout: float = 30.0, max_retries: int = _MAX_RATE_LIMIT_RETRIES, ) -> NonePooledChatModel.invokedef invoke(self, prompt: str) -> object— Synchronous invoke with automatic key switching on rate-limit.PooledChatModel.ainvokedef ainvoke(self, prompt: str) -> object— Async invoke with automatic key switching on rate-limit.
…and 262 more — see references/api.md.
When to Use
- Understanding the architecture and module layout of SkillSpector
- Extending or modifying SkillSpector consistent with its existing patterns
- Debugging issues by tracing through SkillSpector's modules and dependencies
- Setting up, running, or configuring SkillSpector
- Calling functions, classes, or methods in SkillSpector's public API
When NOT to use: General Python, TypeScript, Shell questions, tutorials, or tasks unrelated to the SkillSpector codebase.
Related: For general Python, TypeScript, Shell guidance, use language-specific skills instead.
Core Process
Step 1: Understand the Architecture
Read the existing code in SkillSpector before making changes. Check references/architecture.md to understand the module layout, dependency graph, and internal import structure. The goal is to extend existing patterns, not invent new ones.
Step 2: Locate Relevant Modules
Use references/api.md to find the public symbols, functions, and classes relevant to the task. Trace the call chain through SkillSpector's internal imports to understand how the pieces connect.
Step 3: Make Changes Following Existing Patterns
Implement the change consistent with SkillSpector's established conventions: naming patterns, error handling style, module organization, and test structure. Consistency matters more than personal preference.
Step 4: Verify the Change
Run the project's test suite and confirm all tests pass. If no tests exist for the changed behavior, write them first. Check that no regressions were introduced in adjacent modules.
Common Rationalizations
| Rationalization | Reality |
|---|---|
| "I know SkillSpector well enough to skip reading the existing code" | Every session starts with stale context. Re-read the architecture reference before assuming you know the current state. |
| "This change is too small to need tests" | Small changes in unfamiliar codebases cause the most subtle regressions. A test that fails without the fix and passes with it is the minimum bar. |
| "I'll follow the patterns later, let me just get it working first" | Pattern violations compound. Code that works but violates the repository's conventions creates maintenance debt for every future contributor. |
Red Flags
- Making changes to SkillSpector without reading
references/architecture.mdfirst - Inventing new patterns instead of extending existing ones
- Skipping the test suite before declaring the task complete
- Modifying code outside the scope of the current task
Verification
Before declaring this workflow complete, confirm each item with evidence:
- Changes follow SkillSpector's existing patterns — evidence: diff review against
references/architecture.md - All tests pass — evidence: test runner output
- No regressions introduced in adjacent modules — evidence: full test suite output
- Code is consistent with the repository's naming and style conventions — evidence: code review
References
What ships with it: 11 files
2018.9 KB alongside SKILL.md, 2 of them executable
exporters/
- nvidia_skillspector_adk_skill.pyruns1.7 KB
- nvidia_skillspector_agno_skill.pyruns976 B
references/
- api.md48.1 KB
- architecture.md9.8 KB
- config.md73 B
- examples.md6.4 KB
- nvidia_skillspector_digest.txt1891.0 KB
- setup.md968 B
- manifest.json11.6 KB
- scan-report.json4.0 KB
- scan-report.sarif44.4 KB