adapters

Conventions for platform adapter packages.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/thearnavrustagi/marketmenow/adapters
Clone the repo
git clone --depth 1 https://github.com/thearnavrustagi/marketmenow

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 457 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00457
Opus 5 $0.00000 $0.00229
Sonnet 5 $0.00000 $0.00091
Haiku 4.5 $0.00000 $0.00046

Measured yesterday against content hash 5a30f3539cd2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

adapters scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/adapters.mdc · 60 lines

What it actually says

Adapter Development Rules

Structure

Every adapter package follows this layout:

adapters/yourplatform/
├── __init__.py      # create_yourplatform_bundle(settings) -> PlatformBundle
├── adapter.py       # PlatformAdapter implementation
├── renderer.py      # ContentRenderer implementation
├── uploader.py      # Uploader implementation
├── settings.py      # pydantic BaseSettings for env vars
└── cli.py           # Typer sub-commands (optional)

Protocol Compliance

  • Implement protocols from marketmenow.ports via structural subtyping. Never subclass or inherit from the Protocol class.
  • Required: PlatformAdapter, ContentRenderer, Uploader.
  • Optional: AnalyticsCollector.
  • All adapter methods are async def.
  • platform_name is a @property returning a lowercase string.

Bundle Factory

Expose create_yourplatform_bundle(settings) in __init__.py. Construct a PlatformBundle(adapter=..., renderer=..., uploader=...).

Registration

Add a _try_yourplatform() function in marketmenow/core/registry_builder.py. Use lazy imports inside a try/except so missing credentials cause graceful skip.

Isolation

  • Never import from other adapter packages.
  • Never import adapter code in src/marketmenow/ (except core/registry_builder.py).
  • Settings use pydantic.BaseSettings or pydantic_settings.BaseSettings reading credentials from environment variables.

Browser Automation

Adapters that post via browser (Twitter, Reddit, Facebook, LinkedIn) use Playwright with chromium. Store browser state files in project root (gitignored).

CLI Integration

Create a Typer app in cli.py and register it in marketmenow/cli.py via app.add_typer(yourplatform_app, name="yourplatform", hidden=True). Adapter CLIs are hidden from mmn --help — the user-facing CLI uses mmn run <workflow>. Hidden commands remain callable by the web frontend.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 60 lines · 0 tokens per session scan A 5a30f3539cd2

Subscribe to this mod's changes

adapters is a cursor rule published in the GitHub repository thearnavrustagi/marketmenow (132 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 457 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.