@eddieparc/senpi-accounts

Senpi addon: multi-account subscription providers (Kiro) with cache-preserving routing, usage-aware placement and 429 failover.

Packages

Package details

extension

Install @eddieparc/senpi-accounts from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:@eddieparc/senpi-accounts
Package
@eddieparc/senpi-accounts
Version
0.4.4
Published
Aug 4, 2026
Downloads
937/mo · 937/wk
Author
eddieparc
License
MIT
Types
extension
Size
291.3 KB
Dependencies
1 dependency · 1 peer
Pi manifest JSON
{
  "extensions": [
    "./dist/index.js"
  ]
}

Security note

Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.

README

senpi-accounts

Multi-account subscription providers for senpi, with cache-preserving routing, usage-aware placement and automatic 429 failover.

Stock senpi is the base layer and is never modified. This addon sits on top of it and fills only the gaps stock leaves.

Purpose and scope

This is an open-source project published for learning and research purposes. It exists to explore how senpi's extension API composes providers, how prompt-cache affinity interacts with account rotation, and how subscription rate limits surface through a provider SDK.

It automates nothing you could not do by hand: it signs in with your own subscriptions, through each vendor's normal OAuth flow, and stores the resulting tokens in senpi's own auth.json. It does not share, pool, resell or redistribute accounts, and it does not bypass any vendor's authentication, billing or rate limits — when a subscription is exhausted this addon simply reports it and stops using that account until the vendor's own reset time.

You are responsible for complying with the terms of service of every provider you configure. Review them before using multiple accounts. Provided as-is, without warranty, under the MIT licence.

What this addon adds

Capability Status Where it comes from
Kiro subscription provider (Google / GitHub / AWS Builder ID) shipped, live-verified this addon
Multi-account pool with pin, rotation, 429 failover and timed failback shipped, live-verified this addon
Cache-preserving conversation affinity + usage-aware placement shipped this addon
Per-account and full logout; cache-first / balanced / spread modes shipped this addon
/usage dashboard across every subscription shipped this addon
TokenRouter provider (117 models behind one key) shipped, live-verified this addon
OpenGateway provider (Kimi K3 Ultrafast) shipped this addon
OpenAI Codex account pool experimental, enabled this addon
Anthropic multi-account stock /claude-account
Alibaba Model Studio workspace validated API-key login this addon
Alibaba Token Plan, OpenCode Go stock plan/API-key providers

Nothing marked stock is reimplemented here; the addon only surfaces it in the usage dashboard.

Kiro is the supported provider in this release. It is verified against the live API: four models (claude-opus-5, claude-opus-4.7, claude-sonnet-4.6, claude-haiku-4.5), two real accounts, per-account pinning, failover onto a second account when the first is rejected, automatic token refresh, and recovery after a cooldown expires.

Two stock bugs found while building this

Both were reported upstream rather than worked around here:

  • senpi#503/fast can never succeed. The command is registered only for openai-codex, but the catalog generator emits -fast priority variants only for the direct openai provider. Measured against chatgpt.com, service_tier: "priority" returns HTTP 200 and is then served at normal tier, while senpi bills it at up to 2.5x — so synthesising the missing variants would be a placebo that inflates reported cost. Fast mode is therefore not implemented here; the PR corrects the misleading message instead.
  • senpi#505 — Claude multi-account never rotates. Plan exhaustion arrives as prose ("You've hit your weekly limit") or as a bare error_during_execution with the cause only in terminal_reason, and neither was classified as a rate limit, so the exhausted account was never blocked.

Install

Requires senpi >= 2026.7.28 (verified against 2026.7.30).

One command — from the npm registry:

npm install @eddieparc/senpi-accounts

The git route works too and compiles on install:

npm install github:eddieparc/senpi-accounts

npm runs the package's prepare script for a git dependency, so dist/ is compiled during install. Then point senpi at the built entry:

senpi -e ./node_modules/@eddieparc/senpi-accounts

Or use the tarball attached to the v0.2.0 release:

npm install ./eddieparc-senpi-accounts-0.2.0.tgz

From source — the path this repo is developed against:

git clone https://github.com/eddieparc/senpi-accounts.git
cd senpi-accounts
npm install
npm run build

Then either load it per-run (substitute your own checkout path):

senpi -e /absolute/path/to/senpi-accounts

or enable it for every session by adding the built entry point to extensions in ~/.senpi/agent/settings.json:

{
  "extensions": ["/absolute/path/to/senpi-accounts/dist/index.js"]
}

Point at dist/index.js, not the repository root. senpi enumerates a bare directory and would load dist/ and src/ as two separate extensions.

Verify it loaded — this should print the Kiro models:

senpi -e /absolute/path/to/senpi-accounts --list-models | grep kiro

Kiro setup

/login kiro

/login kiro is a full account manager, not just a one-shot login:

Action What it does
Add an account Google / GitHub / AWS Builder ID sign-in, then names the slot
Log out of one account Deletes one account, leaving the rest intact
Log out of every account Empties the pool, clearing the pin and bindings too
Pin / Clear the pin Force every request onto one account
Clear a block Lift a rate-limit or auth block early
Scheduling mode cache-first (default), balanced or spread
Migration policy auto (default), ask or never — see Migration policy

Both logout paths live inside /login kiro, which is the account manager. Full logout asks for confirmation first, and clears the pin and conversation bindings along with the accounts so nothing points at a slot that no longer exists.

Then pick a model:

/model kiro/claude-opus-5

The built-in catalog follows Kiro CLI 2.15.2 and includes its Claude, GPT-5.6, DeepSeek, MiniMax, GLM and Qwen options. Availability still depends on the selected account. To replace the catalog without waiting for a package update:

export KIRO_MODELS_OVERRIDE=auto,claude-sonnet-5,gpt-5.6-sol

Automatic completion probing is intentionally disabled because probes consume credits and one pooled account's entitlement does not describe the whole pool.

For redacted Kiro protocol and request-failure diagnostics:

export KIRO_DEBUG=1

The log is written to $SENPI_CODING_AGENT_DIR/debug/debug.log. Credentials and authorization values are redacted, and logging is off by default.

Adding a second or third Kiro account

Kiro federates Google sign-in through its own Cognito pool, and Google keeps a browser-wide SSO cookie. Two consequences:

  • Signing out of Kiro alone is not enough — Google silently re-authenticates the same identity server-side, before any client-side prompt=select_account can apply.
  • Aside browser profiles do not help: they share one Google cookie jar, so every profile presents the same default Google account.

So a second Kiro account needs the Google account switched first. This sequence works:

  1. Sign out of Kiro: https://app.kiro.dev/home → account menu → Sign Out.
  2. Sign in to Google as the target account at https://accounts.google.com/. These accounts use a passkey, so this step needs a human at the machine (Touch ID); it cannot be automated.
  3. Confirm the switch stuck — https://app.kiro.dev/signin should say "currently signed in via Google as: ".
  4. Run the scripted login; it binds whichever identity Kiro now holds.

All three Kiro auth methods were exercised and all three resolve to whichever identity the browser/AWS session already holds:

Method Result
Google Kiro's Cognito session re-federates the current Google account
GitHub same Cognito session behaviour
AWS Builder ID device-code flow completes (요청 승인됨) but returns the same AWS identity

So switching accounts is a browser/AWS session action, not something the addon can drive. The duplicate guard below exists precisely because these flows all succeed while silently returning the identity you already had.

Verify which identity was actually captured — the login prints the email:

USAGE 0/0 jgplabs@gmail.com
SAVED jgplabs

If it prints the wrong address, the Google session did not switch; repeat step 2. Accounts are keyed by name, so a duplicate simply stores the same identity twice and yields no extra quota.

Scripted login

For CI or headless setup:

SENPI_CODING_AGENT_DIR=~/.senpi/agent \
  npx tsx scripts/login.mts <account-name> [google|github|builder-id]

It prints the authorize URL, captures the localhost callback automatically, and appends the account to the pool.

Other subscriptions

Alibaba now has two different key families that cannot share an endpoint:

  • Token/Coding Plan keys start with sk-sp-. Use stock alibaba-token-plan.
  • Workspace pay-as-you-go keys start with sk-ws-. Use this addon's alibaba-model-studio.

For a workspace key, copy the OpenAI compatible endpoint shown next to the key in Model Studio, then start senpi with it:

export ALIBABA_MODEL_STUDIO_BASE_URL="https://<workspace>.ap-southeast-1.maas.aliyuncs.com/compatible-mode/v1"

Login through the validated provider:

/login alibaba-model-studio

The login accepts only sk-ws- keys and sends a one-token qwen-plus request to the configured workspace endpoint before Senpi stores the credential. A malformed, revoked, or endpoint-mismatched key is rejected without echoing it.

Stock Token Plan and OpenCode Go remain available separately:

/login alibaba-token-plan     # or set ALIBABA_TOKEN_PLAN_API_KEY
/login opencode-go            # or set OPENCODE_API_KEY

Do not put a sk-ws- key into alibaba-token-plan: the stock plan endpoint rejects workspace keys with 401 invalid_api_key. Likewise, do not use a sk-sp- plan key with alibaba-model-studio.

Anthropic multi-account is stock; use /claude-account. This addon does not touch it.

TokenRouter

TokenRouter fronts ~117 models behind one OpenAI-compatible endpoint, and stock senpi has no tokenrouter provider — so the models are unreachable however the key is stored. This addon registers the provider id, which is what puts TokenRouter in the /login list:

/login tokenrouter            # or set TOKENROUTER_API_KEY

Issue the key at tokenrouter.com under Console -> API Keys. There is no account pool: TokenRouter meters one account, so rotating keys would buy nothing, and this is a single-credential provider like stock's opencode-go.

The catalog ships moonshotai/kimi-k3, moonshotai/kimi-k3-free, deepseek/deepseek-v4-pro, qwen/qwen3.7-max and z-ai/glm-5.2; TOKENROUTER_MODELS_OVERRIDE=<comma-separated ids> adds any other id the router serves. A catalog is mandatory rather than cosmetic — an extension-registered provider inherits no models, and without one --provider tokenrouter fails as Unknown provider.

Two measured quirks are encoded in the catalog's compat profile rather than left for a user to hit:

Request senpi sends by default TokenRouter's answer
role: "developer" HTTP 400 role 'developer' is not allowed
store: false HTTP 200 with a whitespace body and no completion

Both made a turn fail as 422 openai_error while a plain curl succeeded, so every model declares supportsDeveloperRole: false and supportsStore: false.

kimi-k3-free is slow, not broken. The free tier queued for 395s on a cold call before returning a normal HTTP 200. senpi bounds the wait to the first stream event at 90s by default, so a free-tier turn needs that raised:

{
  "retry": { "provider": { "streamStartTimeoutMs": 600000, "streamIdleTimeoutMs": 600000 } }
}

Paid moonshotai/kimi-k3 answers in 6-9s and needs no such setting.

OpenGateway

OpenGateway is an OpenAI-compatible gateway that stock senpi does not know, so its models are unreachable no matter where the key is stored. Registering the provider id is what puts it in the /login list, and senpi's own API-key prompt then stores, replaces and drops the key:

/login opengateway            # or set OPENGATEWAY_API_KEY

The catalog ships moonshotai/kimi-k3-ultrafast. OpenGateway publishes neither token limits nor pricing, so the limits mirror Kimi K3 elsewhere in senpi and cost stays zero rather than inventing billing data. Like TokenRouter this is a single-credential provider: one metered account, so there is no pool to rotate.

OpenAI Codex works out of the box as stock openai-codex. The addon's existing multi-account codex-pool is also registered by default, so it remains visible in /login without an environment gate.

codex-pool delegates streaming to stock's Codex Responses implementation while adding the same account pool, affinity and failover as Kiro. Manage it with /login codex-pool.

It is marked experimental because it has been verified with only one real account (rotation was proved using a deliberately invalid second slot, not two live subscriptions), and because it depends on resolving stock's Codex streamer at runtime — senpi is a peer dependency, so that resolution is anchored on the running senpi process. If it cannot be resolved the provider degrades on its own and Kiro is unaffected.

How routing works

The scarce resource is not quota alone but the upstream prompt-prefix cache. Moving a conversation to a different account makes that account's cache cold, which usually costs more than the quota it saves. So:

  1. Affinity first. A conversation is fingerprinted from its first user message and pinned to one account. Later turns reuse it, keeping the cache warm.
  2. Quota only when the cache is cold. For a conversation that has not been placed before, balanced mode picks the account with the most headroom using power-of-two-choices, which spreads load without herding onto one account.
  3. 429 failover last. A rate-limited, quota-exhausted, auth-failed or 5xx account is blocked and the request is replayed on the next account. Timed blocks expire on their own (failback); auth blocks persist until re-login.

Headroom comes from Kiro's own usage-limits endpoint, read from the CREDIT row of usageBreakdownList — the same numbers the account page shows. Snapshots are cached for 30s with a 2s ceiling per refresh, so routing never waits on a quota lookup, and an expired access token is refreshed before probing (a stale token answers HTTP 403, which would otherwise read as "headroom unknown" and quietly drop that account from placement).

Measured across three live Pro Max accounts, balanced mode places cold conversations by headroom and leaves the most-used account untouched; the per-mode figures are in Scheduling modes. When no provider reports a limit, placement degrades to an even spread rather than herding onto one account.

Scheduling modes

Mode Behaviour
cache-first (default) Hold one account per conversation. Maximises cache hits.
balanced Same, but new conversations go to the account with the most quota left.
spread Round-robin every request. Best load spread, ignores the cache.

Measured over the three live Pro Max accounts at 70.3% / 90.1% / 98.1% headroom, 300 cold conversations each:

Mode Placement
cache-first jgplabs01 111, jgp3620 98, jgplabs 91 — hashed, quota ignored
balanced jgplabs01 194, jgplabs 106, jgp3620 0 — most-used account starved
spread 100 / 100 / 100 — exactly even

The same conversation key placed twice returns the same account with reusedBinding=true, so affinity holds across turns.

The conversation key is senpi's session id when the runtime supplies one, and a hash of the first user message otherwise. The session id is preferred because it does not move: compaction replaces the first user message with the summary, which changed a content-derived key mid-conversation and dropped the binding on a conversation whose cache was warm.

Upstream congestion is not an account fault

Kiro's CodeWhisperer backend answers a busy moment with prose and no HTTP status:

Encountered unexpectedly high load when processing the request, please try again.

That used to block the account for 60s. One request walks the whole pool, so a twenty-second backend hiccup blocked all three accounts and the next request was refused with "All accounts are blocked (rate limited or awaiting re-login)" while every subscription still had quota — 22%, 60% and 35% in the observed incident.

Congestion is now transient: the same account is retried after a short bounded delay (400ms, doubling, capped at 2s), which also keeps its warm prompt cache. Only after repeated congestion on one account is it sidelined, for seconds rather than a minute, and never when it is the last selectable account. A genuine HTTP 5xx still blocks immediately.

Symptom Treated as Effect on the account
429, rate limit, throttled account is over its limit blocked, failover
quota / entitlement / billing subscription exhausted blocked, failover
401 / 403, bad token needs re-login blocked until /login
HTTP 5xx, bad gateway broken request blocked briefly, failover
"high load", "try again", "at capacity" upstream is busy not blocked; retried

The block window also grows properly now. blockAccount always computed base * 2**attempt, but the attempt counter lived in a map rebuilt on every request, so it was always 0 and every block lasted exactly 60s. The streak is persisted on the account and cleared by a success, so repeated failures back off 60s → 120s → 240s.

When the pool genuinely has nothing left, the error says so in full:

All 3 account(s) are blocked (server_error); earliest retry in 47s (jgplabs);
quota is not the limiting factor here.

/usage names the reason too, so it can no longer report available for an account that placement is refusing to use:

kiro  jgplabs: 22% remaining, available
kiro  jgplabs01: 60% remaining, blocked 47s (server_error)
kiro  jgp3620: 35% remaining, needs re-login

Migration policy

A conversation can lose the account holding its warm prompt cache in two very different ways, and only one of them is worth telling you about:

Case What it means Policy applies
Detour The account is rate limited, quota blocked or briefly failing. The block is a wall-clock window that expires, so the binding is kept and the conversation returns once it lifts. No — always allowed
Permanent rebind The bound account has left the pool (logged out, removed). The cache is gone with it. Yes
/kiro-account migrate <auto|ask|never>
Policy Behaviour on a permanent rebind
auto (default) Move to another account silently.
ask Move, and report which account the conversation left.
never Refuse: the request fails instead of silently moving to a cold account.

The policy is also reachable from the /login kiro menu as Migration policy, and the current value is shown by /kiro-account list.

Notices never interrupt a stream: they are emitted after placement and are suppressed in non-interactive modes (print, RPC without UI), where no one is watching. A failure inside the notification is swallowed rather than surfaced as a request failure.

never is for keeping a conversation and its cache on exactly one account, at the cost of the turn that would have moved it. It does not block a detour, because a detour is reversible.

Interaction with senpi's own fallback

senpi has a model-level fallback (SelectorCooldowns + fallback chains). This addon is account-level and sits underneath it:

request
 └─ addon: pick account → on 429 retry on the next account   (senpi never sees this)
     └─ only when every account is blocked, the error surfaces
         └─ senpi: suppress the model, fall back to the next model

When the pool is fully blocked, the addon raises AllAccountsBlockedError carrying retryAfterMs set to the real unblock time. senpi's cooldown prefers an explicit retryAfterMs over its keyword heuristics, so the model is suppressed for exactly as long as the pool is down instead of senpi's default 30-minute quota bucket.

Commands

Command Purpose
/login kiro Account manager: add, log out (one or all), pin, unblock, set scheduling mode
/usage Remaining usage across addon and stock subscriptions
/senpi-accounts Provider health, including any degraded provider

Reliability

Each provider is an isolated package under src/providers/, loaded lazily inside its own try/catch. A provider that fails to load, build or register is reported as degraded and skipped; every other provider still registers. Providers never import each other.

Credentials live in senpi's own auth.json, written atomically with 0600 permissions. A corrupt auth.json is never overwritten.

Keychain (optional, macOS)

src/core/keychain.ts can hold pools in the macOS Keychain instead of the filesystem. It is off by default because auth.json already matches stock's protection, and it is only used when keychainAvailable() proves a full write/read round-trip succeeds — presence of the security binary is not enough, since a locked or access-denied keychain would silently drop credentials.

The probe asks security default-keychain before attempting anything. An isolated HOME (CI, a sandbox, the README doc-check) has no login keychain, and a write in that state makes macOS raise a modal "keychain could not be found" dialog that blocks the run until someone clicks it. Reporting unavailable is the correct answer there, and it costs no write.

Publishing

Published to the npm registry as @eddieparc/senpi-accounts. A scoped package defaults to restricted access, which answers 402 Payment Required on a free account, so publishConfig.access is public in package.json and no flag is needed.

Releases go out from CI over trusted publishing: .github/workflows/release.yml authenticates to the registry with a short-lived OIDC token, so no npm credential is stored anywhere and no publish needs an interactive 2FA approval. Bump the version, then push the tag:

npm version patch          # or minor / major
git push origin main --follow-tags

The workflow also accepts a manual workflow_dispatch run. Either way prepublishOnly runs typecheck, the full suite and the build first, so an unverified tree cannot reach the registry, and npm attaches a signed provenance statement because the publish is attributable to the workflow that produced it.

Publishing this way depends on three things staying in agreement, and npm only reports a mismatch when a publish actually runs:

  • the trusted publisher registered on npmjs.com names eddieparc / senpi-accounts / release.yml, case-sensitive and including the extension
  • the workflow keeps permissions: id-token: write
  • repository.url in package.json matches the GitHub repository

Renaming the workflow file therefore breaks releases until the npm setting is renamed to match.

Development

npm install
npm run typecheck
npm test
npm run build