TEC-189 associate_wallet + TEC-200 user_agent (v1.7.0)#14
Merged
vvillait88 merged 9 commits intomainfrom Apr 22, 2026
Merged
Conversation
TEC-189: associate_wallet() and aassociate_wallet() post to
POST /v1/credentials/wallets. Fire-and-forget semantics documented;
idempotency_key is dropped when empty-string for parity with node-sdk.
TEC-200: new `user_agent` constructor option. Outbound User-Agent becomes
"{user_agent} (agentscore-py/{version})" when set.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
CI runs lint/typecheck/test; security runs osv-scan (and pip-audit for python). No Docker artifacts produced. ARM is cheaper and faster for Bun/Python tooling. publish.yml stays on ubuntu-latest for trusted publishing. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
useblacksmith/cache@v1 before install — caches the package manager's download cache on Blacksmith's persistent NVMe disk. ~2-3× faster installs on warm reruns. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
- concurrency cancel-in-progress so rapid pushes don't stack runs - 10-minute timeout so hung tests don't eat 6h of compute Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
- concurrency group=publish with cancel-in-progress: false so back-to-back tag pushes queue rather than cancel a mid-publish (partial releases are worse than waiting) - 15-minute timeout so a stuck publish doesn't hold the queue for 6h Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Blacksmith archived useblacksmith/cache on 2025-10-14 — their runners now transparently intercept upstream actions/cache@v4 and route it to the same fast colocated backend. Same performance, actively maintained, no Node.js 20 deprecation warning. https://github.com/useblacksmith/cache (archived) https://www.blacksmith.sh/blog/cache (migration rationale) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
- idna 3.11 → 3.12 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Parity with node-sdk. Server truncates at 200 chars; two distinct keys sharing the first 200 chars would silently dedup. Emit a logger.warning on the "agentscore" logger so this is visible in dev without changing behavior (still sends the full key; server truncates). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Feature (v1.7.0)
associate_wallet(...)+ asyncaassociate_wallet(...). Posts toPOST /v1/credentials/wallets. Empty-stringidempotency_keydropped (truthy check) for parity with node-sdk.user_agentconstructor option. Outbound header becomes"{user_agent} (agentscore-py/{version})".CI/Ops
actions/cache@v4for uv cache.Test plan
uv run pytestpasses (110 tests, sync + async parity)🤖 Generated with Claude Code