Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path-to-signatures: "signatures/cla.json"
path-to-document: "https://github.com/bkd-dotcom/umbra-plugins/blob/main/CLA.md"
path-to-document: "https://github.com/Signetry/plugins/blob/main/CLA.md"
branch: "cla-signatures"
allowlist: "dependabot[bot],bkd-dotcom"
custom-notsigned-prcomment: "Thanks for your contribution! Before it can be merged, please read the **[Contributor License Agreement](https://github.com/bkd-dotcom/umbra-plugins/blob/main/CLA.md)** — Umbra is **All Rights Reserved**, and by signing you assign copyright/ownership of your contribution to the Owner (you may not use, sell, or commercialize it yourself). To agree, reply with exactly:"
custom-notsigned-prcomment: "Thanks for your contribution! Before it can be merged, please read the **[Contributor License Agreement](https://github.com/Signetry/plugins/blob/main/CLA.md)** — Umbra is **All Rights Reserved**, and by signing you assign copyright/ownership of your contribution to the Owner (you may not use, sell, or commercialize it yourself). To agree, reply with exactly:"
custom-pr-sign-comment: "I have read the CLA Document and I hereby sign the CLA"
custom-allsigned-prcomment: "All contributors have signed the CLA. ✅"
lock-pullrequest-aftermerge: false
2 changes: 1 addition & 1 deletion .github/workflows/reviewer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Reviewer
# Advisory PR review (umbra-reviewer): surfaces architecture + security issues
# and posts one recommendation comment. Advisory only — it never merges and never
# fails the PR. Changes to security-sensitive surfaces (workflows, packaging) are
# escalated to a human. See https://github.com/bkd-dotcom/umbra-reviewer
# escalated to a human. See https://github.com/Signetry/reviewer
on:
pull_request:

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-hooks.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Umbra pre-commit hook. Add to your repo's .pre-commit-config.yaml:
#
# repos:
# - repo: https://github.com/bkd-dotcom/umbra-plugins
# - repo: https://github.com/Signetry/plugins
# rev: v0.2.0
# hooks:
# - id: umbra-guard
Expand Down
4 changes: 2 additions & 2 deletions PRIVACY.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ in this repository) run entirely **locally and offline**:

- The `PreToolUse` guard hook reads the proposed file path or command from the
editor and checks it against your repository's `.umbra/admission.yaml` using the
local `umbra` command (from the [umbra-core](https://github.com/bkd-dotcom/umbra-core)
local `umbra` command (from the [umbra-core](https://github.com/Signetry/core)
Python package). No data leaves your machine.
- The plugin makes **no network requests**, sends **no telemetry or analytics**,
and stores **no personal data**. It has no servers and no backend.
Expand All @@ -22,5 +22,5 @@ Any network behavior is determined solely by tools **you** invoke (e.g. your own
## Contact

Questions: open an issue at
<https://github.com/bkd-dotcom/umbra-plugins/issues> or email
<https://github.com/Signetry/plugins/issues> or email
`binaydalai2024@gmail.com`.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

**Govern coding-agent changes inside your editor — and in CI — with signed receipts.**

Editor and agent integrations for [umbra-core](https://github.com/bkd-dotcom/umbra-core):
Editor and agent integrations for [umbra-core](https://github.com/Signetry/core):
Umbra decides how much authority an agent's change has earned and proves it. These
plugins bring that governance *into the tools where agents work* — enforced by
deterministic code, never by the model itself (an agent can't approve its own change).

> Prerequisite for all integrations: `pip install "umbra-core @ git+https://github.com/bkd-dotcom/umbra-core@v0.5.4"` and a
> Prerequisite for all integrations: `pip install "umbra-core @ git+https://github.com/Signetry/core@v0.5.4"` and a
> `.umbra/admission.yaml` in your repo (a conservative default applies without one).

## Claude Code plugin (deepest integration)
Expand Down
4 changes: 2 additions & 2 deletions claude-code/umbra/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"name": "bkd-dotcom",
"url": "https://github.com/bkd-dotcom"
},
"homepage": "https://github.com/bkd-dotcom/umbra-plugins",
"repository": "https://github.com/bkd-dotcom/umbra-plugins",
"homepage": "https://github.com/Signetry/plugins",
"repository": "https://github.com/Signetry/plugins",
"license": "MIT"
}
2 changes: 1 addition & 1 deletion claude-code/umbra/hooks/umbra-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ umbra_provision() {
venv_py="$venv/bin/python"
{
"$py" -m venv "$venv" \
&& "$venv_py" -m pip install --quiet --disable-pip-version-check "umbra-core @ git+https://github.com/bkd-dotcom/umbra-core@v0.5.4"
&& "$venv_py" -m pip install --quiet --disable-pip-version-check "umbra-core @ git+https://github.com/Signetry/core@v0.5.4"
} >/dev/null 2>&1 || true
[ -x "$venv_py" ] && "$venv_py" -c "import umbra_core" >/dev/null 2>&1
}
4 changes: 2 additions & 2 deletions claude-code/umbra/hooks/umbra-session-start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ fi

# Could not activate. Say so LOUDLY and specifically — do not pretend to protect.
if umbra_py311plus >/dev/null 2>&1; then
echo "Umbra plugin loaded but INACTIVE: could not install umbra-core (offline?). The guard is NOT enforcing anything. Fix with: pip install 'umbra-core @ git+https://github.com/bkd-dotcom/umbra-core@v0.5.4'"
echo "Umbra plugin loaded but INACTIVE: could not install umbra-core (offline?). The guard is NOT enforcing anything. Fix with: pip install 'umbra-core @ git+https://github.com/Signetry/core@v0.5.4'"
else
echo "Umbra plugin loaded but INACTIVE: needs Python >=3.11, which was not found (your default python3 may be older). The guard is NOT enforcing anything. Install Python 3.11+ and: pip install 'umbra-core @ git+https://github.com/bkd-dotcom/umbra-core@v0.5.4'"
echo "Umbra plugin loaded but INACTIVE: needs Python >=3.11, which was not found (your default python3 may be older). The guard is NOT enforcing anything. Install Python 3.11+ and: pip install 'umbra-core @ git+https://github.com/Signetry/core@v0.5.4'"
fi
exit 0
2 changes: 1 addition & 1 deletion claude-code/umbra/scripts/umbra-mcp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ for PY in python3.13 python3.12 python3.11 python3 python; do
exec "$PY" -m umbra_core.mcp_server
fi
done
echo "umbra-core[mcp] not available on a Python >=3.11; run: pip install 'umbra-core[mcp] @ git+https://github.com/bkd-dotcom/umbra-core@v0.5.4'" >&2
echo "umbra-core[mcp] not available on a Python >=3.11; run: pip install 'umbra-core[mcp] @ git+https://github.com/Signetry/core@v0.5.4'" >&2
exit 1
2 changes: 1 addition & 1 deletion claude-code/umbra/skills/admit/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ report the result to the user.
Steps:

1. Confirm `umbra` is available: run `umbra --help`. If it is not installed, tell
the user to run `pip install "umbra-core @ git+https://github.com/bkd-dotcom/umbra-core@v0.5.4"` and stop.
the user to run `pip install "umbra-core @ git+https://github.com/Signetry/core@v0.5.4"` and stop.
2. Run admission over the change already present in the working tree (no agent is
re-invoked — the change being governed is what's on disk):

Expand Down
4 changes: 2 additions & 2 deletions codex/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Umbra for Codex

Govern coding-agent changes in [OpenAI Codex](https://developers.openai.com/codex)
with [umbra-core](https://github.com/bkd-dotcom/umbra-core).
with [umbra-core](https://github.com/Signetry/core).

## Prerequisite

```bash
pip install "umbra-core @ git+https://github.com/bkd-dotcom/umbra-core@v0.5.4"
pip install "umbra-core @ git+https://github.com/Signetry/core@v0.5.4"
```

Add a `.umbra/admission.yaml` to your repo (allowed/forbidden paths, diff budget,
Expand Down
2 changes: 1 addition & 1 deletion codex/config.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Umbra MCP server for Codex — add to ~/.codex/config.toml
# Requires: pip install "umbra-core @ git+https://github.com/bkd-dotcom/umbra-core@v0.5.4"
# Requires: pip install "umbra-core @ git+https://github.com/Signetry/core@v0.5.4"

[mcp_servers.umbra]
command = "python"
Expand Down
4 changes: 2 additions & 2 deletions cursor/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Umbra for Cursor

Two ways to govern coding-agent changes in Cursor with
[umbra-core](https://github.com/bkd-dotcom/umbra-core).
[umbra-core](https://github.com/Signetry/core).

## Prerequisite

```bash
pip install "umbra-core @ git+https://github.com/bkd-dotcom/umbra-core@v0.5.4"
pip install "umbra-core @ git+https://github.com/Signetry/core@v0.5.4"
```

Add a `.umbra/admission.yaml` to your repo declaring allowed/forbidden paths,
Expand Down
4 changes: 2 additions & 2 deletions universal/umbra-guard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# or manually. It checks proposed file paths and/or a command against the repo's
# .umbra/admission.yaml and exits non-zero (blocking) on a violation.
#
# Requires: pip install "umbra-core @ git+https://github.com/bkd-dotcom/umbra-core@v0.5.4"
# Requires: pip install "umbra-core @ git+https://github.com/Signetry/core@v0.5.4"
#
# Usage:
# umbra-guard.sh --path src/app.py
Expand All @@ -17,7 +17,7 @@
set -euo pipefail

if ! command -v umbra >/dev/null 2>&1; then
echo "umbra-guard: umbra-core not installed. Run: pip install 'umbra-core @ git+https://github.com/bkd-dotcom/umbra-core@v0.5.4'" >&2
echo "umbra-guard: umbra-core not installed. Run: pip install 'umbra-core @ git+https://github.com/Signetry/core@v0.5.4'" >&2
# Fail open by default so this never blocks a commit unexpectedly; set
# UMBRA_GUARD_STRICT=1 to fail closed when umbra is missing.
[ "${UMBRA_GUARD_STRICT:-0}" = "1" ] && exit 1 || exit 0
Expand Down