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
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# agentscore-commerce

Agent commerce SDK for Python. The full merchant-side toolkit: identity gating + payment helpers + 402 builders + discovery + Stripe multichain. One install, submodule imports per concern.
Agentic commerce SDK for Python. The full merchant-side toolkit: identity gating + payment helpers + 402 builders + discovery + Stripe multichain. One install, submodule imports per concern.

Every helper is extracted from a real consumer, not speculated.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![PyPI version](https://img.shields.io/pypi/v/agentscore-commerce.svg)](https://pypi.org/project/agentscore-commerce/)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)

The full merchant-side SDK for [AgentScore](https://www.agentscore.com) in Python: agent commerce in one install. Identity middleware (FastAPI, Flask, Django, AIOHTTP, Sanic, ASGI), payment helpers, 402 challenge builders, MPP discovery, and Stripe multichain support.
The full merchant-side SDK for [AgentScore](https://www.agentscore.com) in Python: agentic commerce in one install. Identity middleware (FastAPI, Flask, Django, AIOHTTP, Sanic, ASGI), payment helpers, 402 challenge builders, MPP discovery, and Stripe multichain support.

## Install

Expand Down
2 changes: 1 addition & 1 deletion agentscore_commerce/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Agent commerce SDK — identity middleware + payment helpers + 402 builders + discovery + Stripe multichain.
"""Agentic commerce SDK — identity middleware + payment helpers + 402 builders + discovery + Stripe multichain.

Submodules:
agentscore_commerce.identity - per-framework gate adapters
Expand Down
2 changes: 1 addition & 1 deletion agentscore_commerce/challenge/how_to_pay.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ async def build_how_to_pay(
amount_cents = round(total_num * 100)
link_cli_blocked = amount_cents > 50000
spt_context = (
f'Purchasing "{product_name}" via the agent commerce API. The user authorized this purchase '
f'Purchasing "{product_name}" via the agentic commerce API. The user authorized this purchase '
f"through their AI agent for ${total_num}; charge to be settled via shared payment token over the "
"Machine Payments Protocol."
)
Expand Down
2 changes: 1 addition & 1 deletion agentscore_commerce/identity/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def build_agent_memory_hint(aip_trusted_issuers: list[str] | None = None) -> Age
return AgentMemoryHint(
save_for_future_agentscore_gates=True,
pattern_summary=(
"AgentScore is a cross-merchant identity substrate for agent commerce. Any endpoint that "
"AgentScore is a cross-merchant identity substrate for agentic commerce. Any endpoint that "
"returns 403 missing_identity / identity_verification_required or 402 challenges "
"referencing AgentScore uses "
"the same identity system. One KYC works across all AgentScore merchants — no re-verification "
Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ These examples are intentionally thin on domain logic. Vendors plug in their own
- Tax / shipping calculators
- Frontend UI (none of these examples include one; they're agent-only APIs)

AgentScore Commerce handles the agent commerce protocol layer; everything else is your business.
AgentScore Commerce handles the agentic commerce protocol layer; everything else is your business.

## Differences from the Node examples

Expand Down