initialize-config
Set up Skene configuration for a project. Use when starting a new PLG analysis, when .skene.config is missing, or when the user says "skene init", "set up skene", or "configure skene".
pinned to #e2173a9updated 2 weeks ago
Ask your AI client: “install skills/initialize-config”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install skills/initialize-configmetahub onboarded this repo on the author's behalf.
If you own github.com/SkeneTechnologies/skene on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
120
Last commit
2 weeks ago
Latest release
published
- #ai-tools
- #anthropic
- #automation
- #cli
- #cli-tool
- #code-documentation
- #codebase-analysis
- #developer-tools
- #gemini
- #growth-hacking
- #llm
- #mcp
- #mcp-server
- #openai
- #plg
- #product-led-growth
- #pydantic
- #python
- #python3
- #tech-stack-detection
About this skill
Pulled from SKILL.md at publish time.
Set up Skene automatically. The user runs `/skene-init`, everything gets configured, and they see a one-line summary. **Zero questions unless something is genuinely missing and cannot be inferred.**
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.e2173a9· 2 weeks ago
Kind-specific
31Skill: SKILL.md present
found at cursor-plugin/skills/initialize-config/SKILL.md · frontmatter source: SKILL.md
Skill: body content present
436 words · 2,964 chars · 5 sections
Skill: triggers declaredwarn
No `trigger` phrases in SKILL.md frontmatter
Add `trigger:` lines so Claude knows when to activate this skill — e.g. `when building MCP servers` or `for diagram creation`.
Skill: allowed-tools scope
no allowed-tools restriction (Claude may use anything)
Release history
1- releasecurrente2173a9warn2 weeks ago
Contents
Initialize Skene Configuration
Set up Skene automatically. The user runs /skene-init, everything gets configured, and they see a one-line summary. Zero questions unless something is genuinely missing and cannot be inferred.
Config reference: Configuration guide.
Design principle
Make init invisible. Detect everything from existing config, env vars, and user-level config. Only ask the user if the agent truly cannot figure it out (e.g. API key missing everywhere).
Steps
-
Discover CLI options Run
uvx skene config --helpto see what flags are available. Use only flags that appear in the output. -
Check what already exists (run in parallel where possible):
ls .skene.config 2>/dev/null— project configls ~/.config/skene/config 2>/dev/null— user-level configecho n | uvx skene config --show— full resolved config (piped to avoid blocking)printenv SKENE_API_KEY SKENE_PROVIDER 2>/dev/null— env vars
-
Decide what to do (no user interaction needed):
Case A — Config exists and is valid (provider set, API key present, provider/model match): Done. Report summary.
Case B — Config exists but has issues (provider/model mismatch, missing API key, etc.): Fix what you can automatically:
- Provider/model mismatch → update
.skene.configwith correct defaults. - API key missing from file but
SKENE_API_KEYin env → fine, note it. - API key missing everywhere → ask user: "Set
SKENE_API_KEYin your environment, then re-run/skene-init."
Case C — No config at all:
- Run
uvx skene config --init(check --help first to confirm this flag exists). - If that fails with permission error, write
.skene.configTOML directly. - Infer provider from env vars or default to
openai. - Validate with
echo n | uvx skene config --show.
- Provider/model mismatch → update
-
Final validation
echo n | uvx skene config --showConfirm provider, model, API key. If good, report.
-
Report result "Skene init complete. Provider: X, model: Y. Run
/skene-analyzenext."
Terminal rules
The user CANNOT type into agent-spawned terminals. The agent handles ALL input.
- Always pipe
echo ntouvx skene config --showto skip the edit prompt. - NEVER run
uvx skene config(no flags) — multi-step interactive. Write.skene.configdirectly. - Stuck terminal: kill the process and re-run with piped input.
- Genuine blockers only: API key missing everywhere is the only thing that requires user action.
Error handling
- Permission error: Write
.skene.configmanually. Ifuvxitself can't run, tell user to runpip install uvin their terminal. - API key missing everywhere: Ask user to set
SKENE_API_KEY. - Provider/model mismatch: Fix automatically.
Output
One line: "Skene init complete. Provider: X, model: Y. Run /skene-analyze next."
Reviews
No reviews yet. Be the first.
Related
Gpt Researcher
An autonomous agent that conducts deep research on any data using any LLM providers
Browser Use
🌐 Make websites accessible for AI agents. Automate tasks online with ease.
Frontend Slides
Create beautiful slides on the web using Claude's frontend skills
mh install skills/initialize-config