소스 정보
- 저장소
- imbue-ai/keystone
- 최근 소스 활동
- 2026년 3월 24일 21:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 75
- 포크
- 4
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/imbue-ai/keystone --skill run-keystone명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | run-keystone |
| description | How to install and run the Keystone CLI to generate devcontainers |
| advertise | true |
Keystone generates a working .devcontainer/ configuration for any git repository. It creates a devcontainer.json, Dockerfile, and run_all_tests.sh by running a coding agent inside a Modal sandbox.
# From PyPI
pip install imbue-keystone
# Or run without installing
uvx imbue-keystone --help
Both install the keystone CLI command.
modal token set$ANTHROPIC_API_KEY — set in your environment (used by the agent inside the sandbox)$DOCKER_REGISTRY_MIRROR — URL of a Docker Hub pull-through cache (e.g. https://mirror.gcr.io), required when running in Modalgit clone https://github.com/psf/requests
keystone \
--project_root ./requests \
--provider claude \
--model claude-opus-4-6 \
--claude_reasoning_level medium \
--max_budget_usd 1.0 \
--test_artifacts_dir /tmp/test_artifacts
| Flag | Default | Description |
|---|---|---|
--project_root | (required) | Path to the git repo |
--test_artifacts_dir | (required) | Directory for JUnit XML test reports |
--provider | claude | LLM provider: claude, codex, or opencode |
--model | (required) | Model identifier (see below) |
--max_budget_usd | 1.0 | Cost cap for agent inference |
--agent_time_limit_seconds | 3600 | Agent timeout |
--image_build_timeout_seconds | 1800 | Docker build timeout |
--test_timeout_seconds | 1800 | Test suite timeout |
--agent_in_modal / --run_agent_locally_with_dangerously_skip_permissions | Modal | Run in Modal sandbox (default) or locally |
--claude_reasoning_level | (required for claude) | low, medium, or high |
--codex_reasoning_level | (required for codex) | low, medium, or high |
--guardrail / --no_guardrail | enabled | Structural checks on agent output |
--use_agents_md / --no_use_agents_md | disabled | Use AGENTS.md + short prompt instead of full inline prompt |
--log_db | ~/.imbue_keystone/log.sqlite | SQLite or PostgreSQL URL for caching/logging |
| Provider | Model ID | Enum |
|---|---|---|
| claude | claude-opus-4-6 | LLMModel.OPUS |
| claude | claude-haiku-4-5-20251001 | LLMModel.HAIKU |
| codex | gpt-5.1-codex-mini | LLMModel.CODEX_MINI |
| codex | gpt-5.2-codex | LLMModel.CODEX |
| codex | gpt-5.3-codex | LLMModel.CODEX_53 |
| codex | gpt-5.4 | LLMModel.GPT_54 |
| opencode | anthropic/claude-opus-4-6 | LLMModel.OPENCODE_OPUS |
| opencode | anthropic/claude-haiku-4-5 | LLMModel.OPENCODE_HAIKU |
| opencode | openai/gpt-5.1-codex-mini | LLMModel.OPENCODE_CODEX_MINI |
| opencode | openai/gpt-5.2-codex | LLMModel.OPENCODE_CODEX |
| opencode | openai/gpt-5.4 | LLMModel.OPENCODE_GPT_54 |
Keystone writes a BootstrapResult JSON to stdout (or --output_file) containing:
success — whether the devcontainer was built and tests passedagent — execution details (duration, cost, tokens, status messages)verification — image build time, test execution time, pass/fail countsgenerated_files — contents of the generated devcontainer.json, Dockerfile, and run_all_tests.sherror_message — what went wrong (if anything)The generated .devcontainer/ directory is also written directly into --project_root.
# Claude with high reasoning
keystone --project_root ./myrepo --provider claude --model claude-opus-4-6 \
--claude_reasoning_level high --max_budget_usd 5.0 \
--test_artifacts_dir /tmp/artifacts
# Codex
keystone --project_root ./myrepo --provider codex --model gpt-5.3-codex \
--codex_reasoning_level medium --max_budget_usd 5.0 \
--test_artifacts_dir /tmp/artifacts
# OpenCode (no reasoning level, no cost cap)
keystone --project_root ./myrepo --provider opencode \
--model anthropic/claude-opus-4-6 --max_budget_usd 0 \
--test_artifacts_dir /tmp/artifacts
# Run locally (no Modal sandbox — use with caution)
keystone --project_root ./myrepo --provider claude --model claude-opus-4-6 \
--claude_reasoning_level medium --max_budget_usd 1.0 \
--run_agent_locally_with_dangerously_skip_permissions \
--test_artifacts_dir /tmp/artifacts
# From source
uv run keystone --project_root ./myrepo --provider claude --model claude-opus-4-6 \
--claude_reasoning_level medium --max_budget_usd 1.0 \
--test_artifacts_dir /tmp/artifacts
--require_cache_hit | false | Fail on cache miss (for CI) |
--no_cache_replay | false | Skip cache, force fresh run |
--output_file | stdout | Write JSON result to file |
--docker_registry_mirror | $DOCKER_REGISTRY_MIRROR | Pull-through cache URL |
--cost_poll_interval_seconds | 30 | How often to poll cost and enforce budget (0 disables) |