-
Notifications
You must be signed in to change notification settings - Fork 0
Release 1.3.0 — nested .weft/legis/.gitignore (suite standard) + 6 cross-repo Weft seam conformance oracles #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
46544fe
6a750cc
6f50a33
47ec1b4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -611,6 +611,7 @@ def _run_install(args) -> int: | |
| OperatorKeyCustodyError, | ||
| choose_install_backend, | ||
| ensure_gitignore, | ||
| ensure_legis_dir_gitignore, | ||
| inject_instructions, | ||
| install_claude_code_hooks, | ||
| install_codex_skills, | ||
|
|
@@ -658,6 +659,11 @@ def _do_posture() -> tuple[bool, str]: | |
| (install_all or args.codex_skills, "Codex skill", lambda: install_codex_skills(project_root)), | ||
| (install_all or args.hooks, "Claude Code hook", lambda: install_claude_code_hooks(project_root)), | ||
| (install_all or args.gitignore, ".gitignore", lambda: ensure_gitignore(project_root)), | ||
| ( | ||
| install_all or args.gitignore, | ||
| ".weft/legis/.gitignore", | ||
| lambda: ensure_legis_dir_gitignore(project_root), | ||
|
Comment on lines
661
to
+665
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When Useful? React with 👍 / 👎.
Comment on lines
+663
to
+665
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
With Useful? React with 👍 / 👎. |
||
| ), | ||
| (install_all or args.mcp, ".mcp.json", lambda: register_mcp_json(project_root, args.agent_id)), | ||
| (install_all or args.posture, "posture ledger", _do_posture), | ||
| ] | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| { | ||
| "attestations": [ | ||
| { | ||
| "content_hash": "blake3:signoff-cleared", | ||
| "kind": "signoff_cleared", | ||
| "recorded_at": "2026-06-02T12:00:00+00:00", | ||
| "seq": 2, | ||
| "signoff_seq": 1 | ||
| }, | ||
| { | ||
| "content_hash": "blake3:operator-override", | ||
| "kind": "operator_override", | ||
| "recorded_at": "2026-06-02T12:00:00+00:00", | ||
| "seq": 3 | ||
| } | ||
| ], | ||
| "sei": "loomweave:eid:0000000000000000000000000000aaaa", | ||
| "status": "checked" | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This release bumps the package metadata to 1.3.0, but
src/legis/__init__.pystill defines__version__ = "1.2.0", and the CLI, FastAPI health/version, and MCPserverInfoall report that runtime value. In source/editable installs or any path that importslegis.__version__, users and clients will see the previous version for a 1.3.0 release, so the runtime version should be bumped in the same release change.Useful? React with 👍 / 👎.