obscure-package-master
by amberlee2427
Use this skill if your uncertainty with a package's API is > 5% to create a deterministic, versioned mirror of the package repo with a built-in coordinate system, installed as an additional skill.
安装
claude skill add --url https://github.com/openclaw/skills文档
Obscure Package Master
This skill allows you to ground yourself in the objective reality of a package's source code by generating a deterministic "grep map" and a local mirror of its source.
Trigger Scenarios
- You are working with a library that is not in your top-tier training set (e.g., NOT
numpy,pandas,requests). - You find yourself searching for basic API signatures or parameters for a library.
- You have a >= 5% uncertainty about a package's API behavior or structure.
- The package's documentation is sparse or confusing.
Instructions
When the trigger conditions are met, follow these steps to generate a grounded reference for the package:
-
Identify the Package & Version: Determine the package name and the exact version you need (e.g., from
requirements.txt,pyproject.toml, orpip show). -
Run the Generator: Execute the
generate_mirror.pyscript to create a local skill for that specific package version.bashpython3 <path_to_scripts>/generate_mirror.py <package> <version> -
Activate the New Skill: Once generated, a new skill will be available in
.skills/<package>-<version>. -
Use the Grep Map: Read the
SKILL.mdof the newly created skill. It contains a map of all classes and functions with their exact line ranges. -
Targeted Reading: Use the map to perform surgical
read_filecalls on the files in thereferences/directory of the new skill.- Example: "I see
MyClass.my_methodis inreferences/utils.pylines 120-145. I will read those lines now."
- Example: "I see
Core Principles
- Deterministic: The map is a direct reflection of the source code (AST-parsed). No LLM interpretation is involved in building the map.
- Coordinate System: Use the provided line ranges to avoid reading large files. Only grep exactly what you need.
- Grounding: If the package source is available, there is no excuse for API hallucinations.
Provider Compatibility
This skill is designed to work with any AI agent provider that can execute Python scripts. The output location is configurable for each provider:
| Provider | Default skills path | Auto-detected via env var(s) |
|---|---|---|
| Claude | ~/.claude/skills | ANTHROPIC_API_KEY, CLAUDE_API_KEY |
| Gemini | ~/.gemini/skills | GEMINI_API_KEY, GOOGLE_GENERATIVEAI_API_KEY |
| Codex | ~/.copilot/skills | CODEX_API_KEY, GITHUB_COPILOT_TOKEN |
| Cursor | ~/.cursor/skills | — |
| OpenAI | ~/.openai/skills | OPENAI_API_KEY |
| OpenClaw | ~/.openclaw/skills | — |
| Cline | ~/.cline/skills | — |
Configuration priority (highest wins):
AGENT_SKILLS_PATHenvironment variableskills_pathinconfig.json- Provider-specific default (auto-detected or set via
providerinconfig.json/AGENT_PROVIDERenv var) .skills/in the current working directory
Example config.json for explicit provider selection:
{
"provider": "gemini"
}
Note: This skill currently supports Python packages via PyPI.