asset-manager

asset-manager is an agent for Claude Code from octavehq/lfgtm. It costs 145 tokens per session (1,216 once invoked), scanned A, original, MIT.

An asset management agent for publishing local websites, documents, and file bundles online through the Octave assets service. It also manages who can access them, their versions, share links, and related publishing details.

In plain words
What is it for?
Use it to publish or update a local folder or file, set privacy, create share or vanity links, roll back to an earlier version, handle access requests, and check viewing information.
Why use it?
It keeps online files and their access settings in one place instead of requiring separate manual tasks for publishing, updating, sharing, and tracking them.

Agent for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT variable. Also seen: model in frontmatter; reads .claude/ paths; mentions subagents.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the octave plugin — 29 skills, 7 agents shipped together

Good fit Use it to publish or update a local folder or file, set privacy, create share or vanity links, roll back to an earlier version, handle access requests, and check viewing information.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add octavehq/lfgtm
Claude Code
/plugin install octave

Made for: Claude Code.

Or install octave, the plugin that ships this one along with the rest of its 29 skills, 7 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 asset-manager

README.md
[![agentmods](https://agentmods.dev/badge/agents/octavehq/lfgtm/asset-manager/github.svg)](https://agentmods.dev/agents/octavehq/lfgtm/asset-manager)
Your own site
<a href="https://agentmods.dev/agents/octavehq/lfgtm/asset-manager"><img src="https://agentmods.dev/badge/agents/octavehq/lfgtm/asset-manager/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for asset-manager

Your own site · 80×15
<a href="https://agentmods.dev/agents/octavehq/lfgtm/asset-manager"><img src="https://agentmods.dev/badge/agents/octavehq/lfgtm/asset-manager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 145 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,216 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00145 $0.01216
Opus 5 $0.00072 $0.00608
Sonnet 5 $0.00029 $0.00243
Haiku 4.5 $0.00015 $0.00122

Measured 10d ago against content hash 4c4d3f659560, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

asset-manager scanned grade A with 1 finding 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 10d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

4. **MCP tools are tool calls**: never simulate, echo, curl, or "assume" an MCP tool's result in shell — a check whose tool result is not in your transcript did not happen. If you are blocked on a token, the fix is the `
agents/asset-manager.md · 41 lines

How it starts

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

Asset Manager

You are the asset lifecycle manager for the Octave assets service. You publish local sources (HTML sites, markdown docs, file bundles) as hosted assets, manage their privacy tier (only_me / workspace / public), share links, immutable file versions (rollback + pinned @vN URLs), viewer access requests, and vanity URLs, answer "who opened it" from stats and verified-visitor lists, and maintain a persistent registry of everything published in this project.

How You Work

Follow the workflow in the asset-manager skill exactly — it is preloaded into your context. If it is not, load it via Bash before doing anything else (Bash expands the variable; a Read tool call would not): cat "${CLAUDE_PLUGIN_ROOT:-.}/skills/asset-manager/SKILL.md".

The five rules that must never be violated:

  1. Routing: file bytes (upload/replace/download, including a pinned --version download) go through the bundled bash scripts; everything else (metadata, privacy, status, vanity slugs, shares, tokens, listing, versions, access requests, stats/visitors) goes through the MCP asset_* tools.
  2. Token rotation: every MCP asset call invalidates the previously issued access token. Mint via asset_generate_access_token immediately before running scripts; on a script 401, asset_refresh_access_token and retry once. Never write the plaintext token anywhere — registry gets prefix + expiresAt only.
  3. Check before create (Cache Rule): the asset store is a cache — before any new upload, run a fresh assets_list and match the intended asset against what already exists (identifier keywords, description, type). Surface plausible matches with their links and only create once it's confirmed new. Matches may be owned by a workspace teammate (owner field) — those are read-only: reuse/download them, never mutate them. Never rely on the local registry alone for this check.
  4. MCP tools are tool calls: never simulate, echo, curl, or "assume" an MCP tool's result in shell — a check whose tool result is not in your transcript did not happen. If you are blocked on a token, the fix is the asset_generate_access_token tool call, not another script and not punting to the user.
  5. No shell beyond the bundled four scripts (plus the one-line staging cp/rm where documented). The whole publish is ~3 tool calls + 1 script run. The registry lives at the CURRENT PROJECT's .claude/agent-memory/asset-manager/MEMORY.md — never ~/.claude/...; read it before ever creating one.

Read the full file on GitHub · 41 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. 10d ago First seen · 41 lines · 145 tokens per session scan A 4c4d3f659560

Subscribe to this mod's changes

asset-manager is an agent published in the GitHub repository octavehq/lfgtm (11 stars, last pushed 19d ago), licensed MIT. It adds 145 tokens to every session and 1,216 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

aws-architecture-review-expert

Provides expert AWS architecture and CloudFormation review capabilities specializing in Well-Architected Framework compliance, security best practices, cost optimization, and IaC quality. Validates AWS architectures and CloudFormation templates for scalability, reliability, and operational excellence. Use PROACTIVELY…

giuseppe-trisciuoglio/developer-kit · 76 tokens

azure-architect

Designs Azure cloud architecture, optimizes costs, and implements security best practices. Use when designing Azure infrastructure, selecting Azure services, or optimizing Azure deployments.

armanzeroeight/fastagent-plugins · 35 tokens

database-migration

Database migration and modernization specialist. USE FOR: planning database migrations, designing migration strategies, validating data integrity. DO NOT USE FOR: operational database management, routine backups.

ivegamsft/basecoat · 37 tokens

deployment-verifier

Verifies local deployment health — checks ports, starts app, polls health endpoint, inspects Docker containers.

asysta-act/agent-flow · 24 tokens

llm2bedrock-report-generator

Synthesize all prior phase results into a final Markdown migration report — model mapping, eval scores, code diffs, cost comparison, next steps. Writes MIGRATIONREPORT .md and returns a structured report object.

awslabs/startups · 52 tokens

staff-sre

Production reliability specialist. Use PROACTIVELY for incident response, production readiness reviews, SLO enforcement, capacity planning, and any production concern. First responder for incidents.

caiaffa/claude-code-ultimate-engineering-system · 38 tokens