lightcone-cli 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lightcone/cli/__init__.py +16 -0
- lightcone/cli/claude/lightcone/agents/lc-extractor.md +114 -0
- lightcone/cli/claude/lightcone/guides/astra-reference.md +290 -0
- lightcone/cli/claude/lightcone/guides/lightcone-cli-reference.md +75 -0
- lightcone/cli/claude/lightcone/guides/ui-brand.md +86 -0
- lightcone/cli/claude/lightcone/hooks/langfuse_git_commit_hook.py +303 -0
- lightcone/cli/claude/lightcone/hooks/langfuse_hook.py +894 -0
- lightcone/cli/claude/lightcone/hooks/langfuse_prepare_commit_msg.py +142 -0
- lightcone/cli/claude/lightcone/hooks/langfuse_session_init_hook.py +83 -0
- lightcone/cli/claude/lightcone/hooks/langfuse_utils.py +457 -0
- lightcone/cli/claude/lightcone/scripts/activate-venv.sh +44 -0
- lightcone/cli/claude/lightcone/scripts/check-lc-run.sh +140 -0
- lightcone/cli/claude/lightcone/scripts/session-start.sh +140 -0
- lightcone/cli/claude/lightcone/scripts/validate-on-save.sh +77 -0
- lightcone/cli/claude/lightcone/skills/lc-build/SKILL.md +92 -0
- lightcone/cli/claude/lightcone/skills/lc-build/assets/loop-prompt.md +92 -0
- lightcone/cli/claude/lightcone/skills/lc-build/scripts/setup-lc-build.sh +240 -0
- lightcone/cli/claude/lightcone/skills/lc-feedback/SKILL.md +94 -0
- lightcone/cli/claude/lightcone/skills/lc-migrate/SKILL.md +98 -0
- lightcone/cli/claude/lightcone/skills/lc-new/SKILL.md +183 -0
- lightcone/cli/claude/lightcone/skills/lc-verify/SKILL.md +53 -0
- lightcone/cli/claude/lightcone/templates/CLAUDE.md +32 -0
- lightcone/cli/commands.py +2327 -0
- lightcone/cli/plugin.py +34 -0
- lightcone/engine/__init__.py +42 -0
- lightcone/engine/assets.py +418 -0
- lightcone/engine/container.py +370 -0
- lightcone/engine/io_manager.py +27 -0
- lightcone/engine/runner.py +1017 -0
- lightcone/engine/site_registry.py +142 -0
- lightcone/engine/status.py +135 -0
- lightcone/engine/targets.py +68 -0
- lightcone/engine/tree.py +245 -0
- lightcone/eval/__init__.py +25 -0
- lightcone/eval/build.py +148 -0
- lightcone/eval/cli.py +176 -0
- lightcone/eval/graders.py +192 -0
- lightcone/eval/harness.py +265 -0
- lightcone/eval/models.py +117 -0
- lightcone/eval/report.py +214 -0
- lightcone/eval/sandbox.py +394 -0
- lightcone_cli-0.2.0.dist-info/METADATA +16 -0
- lightcone_cli-0.2.0.dist-info/RECORD +46 -0
- lightcone_cli-0.2.0.dist-info/WHEEL +4 -0
- lightcone_cli-0.2.0.dist-info/entry_points.txt +2 -0
- lightcone_cli-0.2.0.dist-info/licenses/LICENSE +29 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# CLAUDE.md
|
|
2
|
+
|
|
3
|
+
## Project: {{name}}
|
|
4
|
+
|
|
5
|
+
ASTRA (Agentic Schema for Transparent Research Analysis) analysis project, built with lightcone-cli.
|
|
6
|
+
|
|
7
|
+
### Source of Truth
|
|
8
|
+
|
|
9
|
+
- `astra.yaml` -- The analysis specification. Read this first.
|
|
10
|
+
- `universes/` -- Decision selections (one YAML per universe).
|
|
11
|
+
- `.claude/guides/astra-reference.md` -- Full reference for astra.yaml structure, sub-analyses, decision parameterization, recipe format, prior insights, findings, and universe management. Read when you need spec syntax.
|
|
12
|
+
- `.claude/guides/lightcone-cli-reference.md` -- lightcone-cli execution reference: CLI commands, status interpretation, development workflow, failure diagnosis.
|
|
13
|
+
|
|
14
|
+
### Project Layout
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
astra.yaml # Specification: decisions, inputs, outputs
|
|
18
|
+
CLAUDE.md # This file
|
|
19
|
+
Containerfile # Container image for execution
|
|
20
|
+
requirements.txt # Python deps (keep in sync with scripts)
|
|
21
|
+
.lightcone/ # lightcone-cli internals
|
|
22
|
+
lightcone.yaml # lightcone-cli config (default target, etc.)
|
|
23
|
+
dagster.yaml # Dagster instance config
|
|
24
|
+
universes/
|
|
25
|
+
baseline.yaml # Default decision selections
|
|
26
|
+
scripts/ # Implementation scripts
|
|
27
|
+
results/<universe>/ # Outputs by universe (produced by lc run)
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Working Notes
|
|
31
|
+
|
|
32
|
+
Use this section for context that doesn't belong in `astra.yaml` but matters across sessions: sub-analyses spawned and why, design decisions that shaped the spec, open questions, blockers, and anything you'd want to know if resuming this project cold.
|