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.
Files changed (46) hide show
  1. lightcone/cli/__init__.py +16 -0
  2. lightcone/cli/claude/lightcone/agents/lc-extractor.md +114 -0
  3. lightcone/cli/claude/lightcone/guides/astra-reference.md +290 -0
  4. lightcone/cli/claude/lightcone/guides/lightcone-cli-reference.md +75 -0
  5. lightcone/cli/claude/lightcone/guides/ui-brand.md +86 -0
  6. lightcone/cli/claude/lightcone/hooks/langfuse_git_commit_hook.py +303 -0
  7. lightcone/cli/claude/lightcone/hooks/langfuse_hook.py +894 -0
  8. lightcone/cli/claude/lightcone/hooks/langfuse_prepare_commit_msg.py +142 -0
  9. lightcone/cli/claude/lightcone/hooks/langfuse_session_init_hook.py +83 -0
  10. lightcone/cli/claude/lightcone/hooks/langfuse_utils.py +457 -0
  11. lightcone/cli/claude/lightcone/scripts/activate-venv.sh +44 -0
  12. lightcone/cli/claude/lightcone/scripts/check-lc-run.sh +140 -0
  13. lightcone/cli/claude/lightcone/scripts/session-start.sh +140 -0
  14. lightcone/cli/claude/lightcone/scripts/validate-on-save.sh +77 -0
  15. lightcone/cli/claude/lightcone/skills/lc-build/SKILL.md +92 -0
  16. lightcone/cli/claude/lightcone/skills/lc-build/assets/loop-prompt.md +92 -0
  17. lightcone/cli/claude/lightcone/skills/lc-build/scripts/setup-lc-build.sh +240 -0
  18. lightcone/cli/claude/lightcone/skills/lc-feedback/SKILL.md +94 -0
  19. lightcone/cli/claude/lightcone/skills/lc-migrate/SKILL.md +98 -0
  20. lightcone/cli/claude/lightcone/skills/lc-new/SKILL.md +183 -0
  21. lightcone/cli/claude/lightcone/skills/lc-verify/SKILL.md +53 -0
  22. lightcone/cli/claude/lightcone/templates/CLAUDE.md +32 -0
  23. lightcone/cli/commands.py +2327 -0
  24. lightcone/cli/plugin.py +34 -0
  25. lightcone/engine/__init__.py +42 -0
  26. lightcone/engine/assets.py +418 -0
  27. lightcone/engine/container.py +370 -0
  28. lightcone/engine/io_manager.py +27 -0
  29. lightcone/engine/runner.py +1017 -0
  30. lightcone/engine/site_registry.py +142 -0
  31. lightcone/engine/status.py +135 -0
  32. lightcone/engine/targets.py +68 -0
  33. lightcone/engine/tree.py +245 -0
  34. lightcone/eval/__init__.py +25 -0
  35. lightcone/eval/build.py +148 -0
  36. lightcone/eval/cli.py +176 -0
  37. lightcone/eval/graders.py +192 -0
  38. lightcone/eval/harness.py +265 -0
  39. lightcone/eval/models.py +117 -0
  40. lightcone/eval/report.py +214 -0
  41. lightcone/eval/sandbox.py +394 -0
  42. lightcone_cli-0.2.0.dist-info/METADATA +16 -0
  43. lightcone_cli-0.2.0.dist-info/RECORD +46 -0
  44. lightcone_cli-0.2.0.dist-info/WHEEL +4 -0
  45. lightcone_cli-0.2.0.dist-info/entry_points.txt +2 -0
  46. 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.