Co scientist install
Skill panjose/Co-Scientist/skills/skills-claude-entry/co-scientist-install
Scientific agent skills for Claude Code and Codex that turn research goals into auditable hypothesis generation, review, ranking, evolution, and synthesis.
npx -y skills add panjose/Co-Scientist --skill co-scientist-installAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.8 KB, as published. Nobody here has run it
co-scientist-install
Goal:
- Explain or execute the project-local Co-Scientist skill installation flow for Claude Code users.
Expected input:
- no arguments for the standard install path
- or a user request to reconcile or uninstall the project-local install
Execution steps:
-
If the user wants a fresh install, tell them to run one of:
uvquick install:uv sync --extra dev --extra mcp pnpm --dir apps/dashboard install pnpm --dir apps/dashboard build powershell -File tools/install/install_co_scientist.ps1conda/pippath:conda create -n co-scientist python=3.12 -y conda activate co-scientist python -m pip install -e ".[dev,mcp]" pnpm --dir apps/dashboard install pnpm --dir apps/dashboard build powershell -File tools/install/install_co_scientist.ps1bash tools/install/install_co_scientist.sh -
If the user wants to refresh an existing project-local install, use:
powershell -File tools/install/install_co_scientist.ps1 -Reconcile -
If the user wants to remove the managed project-local install, use:
powershell -File tools/install/install_co_scientist.ps1 -Uninstall -
After install or reconcile, recommend:
uv run python -m tools.host.project_cli doctor -
Return a short summary of:
- what command to run
- what files should appear (
.claude/skills/,.co-scientist/installed-skills.json) - how to validate the environment with
doctor
Rules:
- Treat
skills/as canonical and.claude/skills/as the project-local Claude Code mirror. - Do not ask the user to edit
CLAUDE.md; the installer manages its own project-local surface. - Prefer
doctorafter installation instead of assuming the environment is ready.