CONTEXT

CONTEXT is an agent for coding agents from moabualruz/fulcrum. It costs 0 tokens per session (638 once invoked), scanned A, original, MIT.

An application service for managing agent profiles, which are saved configurations for coding agents. It lists and updates profiles, hides authentication values in the interface, and records profile test results.

In plain words
What is it for?
Use it to list or save agent profiles, show masked authentication settings, display advisory capability tags, assemble page data, and record whether a profile test passed.
Why use it?
It keeps profile management and authentication-value display in one place without showing those values directly in the user interface.

Agent

Part of the fulcrum plugin — 32 skills, 5 agents shipped together

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 agents/moabualruz/fulcrum/context
Clone the repo
git clone --depth 1 https://github.com/moabualruz/fulcrum

Or install fulcrum, the plugin that ships this one along with the rest of its 32 skills, 5 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for CONTEXT

README.md
[![agentmods](https://agentmods.dev/badge/agents/moabualruz/fulcrum/context.svg)](https://agentmods.dev/agents/moabualruz/fulcrum/context)
Your own site
<a href="https://agentmods.dev/agents/moabualruz/fulcrum/context"><img src="https://agentmods.dev/badge/agents/moabualruz/fulcrum/context.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 638 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.00638
Opus 5 $0.00000 $0.00319
Sonnet 5 $0.00000 $0.00128
Haiku 4.5 $0.00000 $0.00064

Measured 3d ago against content hash a261a9916fd9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

CONTEXT 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 3d ago.

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.

services/execution-orchestration/src/application/agents/CONTEXT.md · 45 lines

How it starts

The opening of the file, as written. The whole thing — 45 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agents

Application-layer reads and writes over AgentProfile rows: listing, upserting, masking secrets for the UI, and recording test outcomes. Inherits the parent service vocabulary (AgentProfile, AgentRun, Org) and only sharpens the terms that exist solely inside this folder.

Language

MaskedProfileRow: A UI-safe projection of an AgentProfileRow where each authEnv value is replaced with a fixed-width mask, plus derived capabilities and sessions_count. Avoid: Sanitized profile, redacted profile, view-model.

AuthEnvEntry: One KEY=VALUE string inside AgentProfile.authEnvVars; parsed into a {key, maskedValue} pair for display. Avoid: Credential, secret pair, env tuple.

Capability: A tag (LLM, code, multi-modal, search, browser, general) derived from an AgentProfile.name heuristic; advisory UI hint only. Avoid: Skill, feature, ability.

ProfileTestOutcome: The boolean verdict (testPassed) plus lastTestedAt timestamp recorded by testProfileAction; emits an agent_profile / tested event. Avoid: Health check, smoke test result.

AgentProfilesPageData: The bundle (profiles, projects, tasks) assembled for the profile-list UI route. Avoid: Page payload, view data.

Relationships

  • One AgentProfile has exactly one MaskedProfileRow projection per render.
  • One MaskedProfileRow has zero-or-more AuthEnvEntry items and zero-or-more Capability tags.
  • One AgentProfile has at most one current ProfileTestOutcome (testPassed + lastTestedAt).
  • One AgentProfilesPageData aggregates many MaskedProfileRows with the Org's ProjectOption and TaskOption lists from work-management.

Example dialogue

Dev: "Why does maskProfile derive Capability tags from the name?" Domain expert: "It's a UI hint, not a domain fact — the AgentProfile itself doesn't store capabilities. The list view needs badges, so we infer them from the agent name until a real capability field exists." Dev: "And the AuthEnvEntry values?" Domain expert: "Always masked at the application boundary. Raw authEnvVars never leave this module unmasked; the MaskedProfileRow is the only shape the interface layer sees."

Read the full file on GitHub · 45 lines

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. 3d ago First seen · 45 lines · 0 tokens per session scan A a261a9916fd9

Subscribe to this mod's changes

CONTEXT is an agent published in the GitHub repository moabualruz/fulcrum (3 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 638 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-08-31.

Related

Other agents, from other repositories

pr-manager-lite

Finish GitHub pull requests for tinyhumansai/openhuman when the PR branch is ALREADY checked out locally (e.g. via the preem shell helper) with base merged in and upstream tracking set. Skips fetch/checkout/conflict-resolution; goes straight to collecting reviewer/bot feedback, applying every actionable fix, running…

tinyhumansai/openhuman · 96 tokens

taskmaster

Development Pipeline Orchestrator who manages entire development workflows by coordinating specialist agents through configurable pipelines for any type of project.

tinyhumansai/openhuman · 26 tokens

designguru

Expert Design Guidance & Analysis Specialist who provides professional UI/UX insights, design system guidance, and visual recommendations for any type of application.

tinyhumansai/openhuman · 30 tokens

qualityqueen

Quality Assurance & Code Standards Specialist who ensures code meets project standards across any technology stack. Fixes basic issues and escalates complex problems with detailed analysis.

tinyhumansai/openhuman · 33 tokens

codecrusher

Senior Developer & Implementation Expert who transforms architectural plans into high-quality, production-ready code across any technology stack.

tinyhumansai/openhuman · 24 tokens

ship-and-babysit

Commit local changes, push the branch to the user's fork, open or reuse a PR against tinyhumansai/openhuman:main, then babysit CI and CodeRabbit feedback until the PR is green and clean. Use when the user wants an end-to-end ship flow, not just implementation.

tinyhumansai/openhuman · 66 tokens