The plugin's SessionStart hook asked for a project_id via plugin userConfig — which pins a single install to one project. The operator works across many repos/projects, so that assumption was wrong. Resolve the active project server-side from the working repo's git remote instead (a stable identifier, not a dir-name guess).
services/repo_bindings — normalize_repo_key collapses ssh/https/scp/creds/port/.git to host/owner/repo; resolve_project / set / list / delete.
GET /api/plugin/context?repo=<remote> — resolves the bound project; an unbound repo returns standing rules + a "bind this repo" hint with a ready bind_repo() call. project_id kept only as a manual override.
Refs task 755 (Scribe-as-plugin push channel). CI green on dev (run 809).
Post-merge
Rebuild the instance (the running image predates /api/plugin/context), then bind this repo once: bind_repo("https://git.fabledsword.com/bvandeusen/FabledScribe.git", 2).
## Why
The plugin's SessionStart hook asked for a `project_id` via plugin userConfig — which pins a single install to one project. The operator works across many repos/projects, so that assumption was wrong. Resolve the active project **server-side from the working repo's git remote** instead (a stable identifier, not a dir-name guess).
## What changed
- **`repo_bindings` table** (migration `0064`) + `RepoBinding` model — `(user, repo_key) → project`, FKs CASCADE.
- **`services/repo_bindings`** — `normalize_repo_key` collapses ssh/https/scp/creds/port/`.git` to `host/owner/repo`; `resolve_project` / `set` / `list` / `delete`.
- **`GET /api/plugin/context?repo=<remote>`** — resolves the bound project; an unbound repo returns standing rules + a "bind this repo" hint with a ready `bind_repo()` call. `project_id` kept only as a manual override.
- **MCP tools** — `bind_repo` / `list_repo_bindings` / `unbind_repo`.
- **Hook** — sends `?repo=$(git remote get-url origin)` URL-encoded; all `project_id` handling removed.
- **`plugin.json`** — drops the `project_id` userConfig (`0.1.2 → 0.1.3`).
- **Tests** — normalization equivalence classes + unbound-hint rendering.
Refs task 755 (Scribe-as-plugin push channel). CI green on `dev` (run 809).
## Post-merge
Rebuild the instance (the running image predates `/api/plugin/context`), then bind this repo once: `bind_repo("https://git.fabledsword.com/bvandeusen/FabledScribe.git", 2)`.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
The SessionStart hook asked for a project_id via plugin userConfig, which pins
one install to a single project — wrong for an operator working across many
repos/projects. Resolve the active project server-side from the working repo's
git remote instead (a stable identifier, not a dir-name guess).
- repo_bindings table (migration 0064) + RepoBinding model: (user, repo_key) ->
project, FKs CASCADE.
- services/repo_bindings: normalize_repo_key collapses ssh/https/scp/creds/port/
.git to host/owner/repo; resolve/set/list/delete.
- GET /api/plugin/context takes ?repo=<remote>; unbound repo -> a "bind this
repo" hint with a ready bind_repo() call. project_id kept as manual override.
- MCP tools: bind_repo / list_repo_bindings / unbind_repo.
- Hook sends ?repo=$(git remote get-url origin) URL-encoded; all project_id
handling removed. plugin.json drops the project_id userConfig (0.1.2 -> 0.1.3).
- Tests: normalize equivalence classes + unbound-hint rendering.
Refs task 755 (Scribe-as-plugin push channel).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Why
The plugin's SessionStart hook asked for a
project_idvia plugin userConfig — which pins a single install to one project. The operator works across many repos/projects, so that assumption was wrong. Resolve the active project server-side from the working repo's git remote instead (a stable identifier, not a dir-name guess).What changed
repo_bindingstable (migration0064) +RepoBindingmodel —(user, repo_key) → project, FKs CASCADE.services/repo_bindings—normalize_repo_keycollapses ssh/https/scp/creds/port/.gittohost/owner/repo;resolve_project/set/list/delete.GET /api/plugin/context?repo=<remote>— resolves the bound project; an unbound repo returns standing rules + a "bind this repo" hint with a readybind_repo()call.project_idkept only as a manual override.bind_repo/list_repo_bindings/unbind_repo.?repo=$(git remote get-url origin)URL-encoded; allproject_idhandling removed.plugin.json— drops theproject_iduserConfig (0.1.2 → 0.1.3).Refs task 755 (Scribe-as-plugin push channel). CI green on
dev(run 809).Post-merge
Rebuild the instance (the running image predates
/api/plugin/context), then bind this repo once:bind_repo("https://git.fabledsword.com/bvandeusen/FabledScribe.git", 2).🤖 Generated with Claude Code