tags-and-properties

tags-and-properties is a skill for Claude Code from dominodatalab/domino-claude-plugin. It costs 144 tokens per session (5,324 once invoked), scanned C, original, MIT.

A skill for managing tags and typed properties in Domino, a platform for running data science and machine-learning work. Tags are labels, while properties store values such as text, numbers, dates, choices, URLs, or users.

In plain words
What is it for?
Use it to create, update, merge, import, export, search, and assign tags, or to define and manage metadata fields and their values.
Why use it?
It gives projects, models, datasets, apps, templates, and storage volumes a consistent way to be organized and found. It also supports maintaining shared tag structures across Domino environments.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the domino-claude-plugin plugin — 23 skills, 4 commands, 3 agents, 1 MCP server shipped together

Good fit Use it to create, update, merge, import, export, search, and assign tags, or to define and manage metadata fields and their values.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dominodatalab/domino-claude-plugin/tags-and-properties
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.

Any agent
npx skills add dominodatalab/domino-claude-plugin --skill tags-and-properties
Clone the repo
git clone --depth 1 https://github.com/dominodatalab/domino-claude-plugin

Made for: Claude Code.

Or install domino-claude-plugin, the plugin that ships this one along with the rest of its 23 skills, 4 commands, 3 agents, 1 MCP server.

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 tags-and-properties

README.md
[![agentmods](https://agentmods.dev/badge/skills/dominodatalab/domino-claude-plugin/tags-and-properties/github.svg)](https://agentmods.dev/skills/dominodatalab/domino-claude-plugin/tags-and-properties)
Your own site
<a href="https://agentmods.dev/skills/dominodatalab/domino-claude-plugin/tags-and-properties"><img src="https://agentmods.dev/badge/skills/dominodatalab/domino-claude-plugin/tags-and-properties/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 tags-and-properties

Your own site · 80×15
<a href="https://agentmods.dev/skills/dominodatalab/domino-claude-plugin/tags-and-properties"><img src="https://agentmods.dev/badge/skills/dominodatalab/domino-claude-plugin/tags-and-properties.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 144 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,324 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. 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.00144 $0.05324
Opus 5 $0.00072 $0.02662
Sonnet 5 $0.00029 $0.01065
Haiku 4.5 $0.00014 $0.00532

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

Security

Grade C, and why

tags-and-properties scanned grade C with 2 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 12d 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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -s -H "$H" "$BASE/tags/autocomplete?q=clinical" | python3 -m json.tool

Makes network callslowCapability

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

It documents every public endpoint with curl examples that work today against
skills/tags-and-properties/SKILL.md · 452 lines

How it starts

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

Domino Tags and Properties Skill

Description

This skill covers Domino's Taxonomy API, which manages two complementary metadata systems for organizing entities (projects, models, datasets, apps, project templates, NetApp volumes):

  • Tags — hierarchical labels grouped into namespaces. An entity either has a tag or it doesn't.
  • Properties — typed metadata fields (text, number, date, select, …), each holding a value per entity.

It documents every public endpoint with curl examples that work today against a Domino cluster where the taxonomy service is enabled. Properties are covered in depth in PROPERTIES.md (definitions) and PROPERTY-VALUES.md (per-entity values).

Activation

Activate this skill when the user wants to:

  • Tag a project, model, dataset, app, project template, or NetApp volume
  • Find all entities that share a tag, or query by multiple tags
  • Build a hierarchical taxonomy (namespaces with nested tags)
  • Bulk-tag entities during onboarding
  • Migrate a taxonomy tree across Domino environments (CSV export/import)
  • Merge duplicate tags
  • Tune autocomplete results in a tagging UI
  • Define typed metadata fields (properties) — e.g. a Budget number, a Review Date, an Owner user, or a Status single-select
  • Set, read, or clear property values on an entity (incl. versioned entities like model_version / app_version)
  • Group properties or manage property definitions across a deployment

Configuration

Auth via the local access-token endpoint per the Skill Authoring Standards. Never use DOMINO_USER_API_KEY.

TOKEN=$(curl -s http://localhost:8899/access-token)
# Taxonomy is served through the Domino API host gateway.
BASE="$DOMINO_API_HOST/api/taxonomy/v1"
H="Authorization: Bearer $TOKEN"

Key Concepts

Concept Description
Namespace Top-level group for tags (e.g. Indication, Analysis). Has label, optional description, and allowMultipleAssignments flag.
Tag A label inside a namespace. Can be hierarchical via parentId (e.g. Clinical_Data / SDTM). Has label, namespaceId, optional description and parentId, and status (active / inactive).
Property A typed metadata field — has a label, a type (text, number, date, boolean, url, user, organization, user_or_org, select, multi_select), a set of allowedEntities, an optional groupName, and (for select types) allowedValues. See PROPERTIES.md.
Property value The typed value a property holds for one specific entity, set via PATCH /property-values. See PROPERTY-VALUES.md.
Property group Free-form groupName string that buckets properties in the values view; ungrouped properties fall under Miscellaneous.
EntityType Enum over entities. Tags apply to dataset, project, project_template, model, app, netapp_volume. Properties additionally support the versioned types model_version and app_version.
allowMultipleAssignments (Tags) When true, an entity can hold multiple tags from the same namespace. When false, applying a new tag from the namespace replaces any existing one.
Taxonomy tree The full nested view: namespaces → root tags → child tags. Returned by GET /taxonomy.
Limits GET /config returns maxDepth (max tag nesting), maxLabelLength (max characters per label), maxSelectAllowedValuesCount (max options on a select property), and maxSelectAllowedValueLength (max length of one option).

Read the full file on GitHub · 452 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 452 lines · 144 tokens per session scan C e74e262da687

Subscribe to this mod's changes

tags-and-properties is a skill published in the GitHub repository dominodatalab/domino-claude-plugin (7 stars, last pushed 2mo ago), licensed MIT. It adds 144 tokens to every session and 5,324 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

recipe-create-meet-space

Create a Google Meet meeting space and share the join link.

googleworkspace/cli · 18 tokens

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

atmos-config

Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.

cloudposse/atmos · 31 tokens

story-readiness

Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…

Donchitos/Claude-Code-Game-Studios · 77 tokens

magpie-security-issue-import-from-md

Open one or more tracking issues from a markdown file containing a batch of security findings. Each finding becomes one tracker landing in the Needs triage board column. The file itself is the full report — there is no inbound reporter to reply to and no PR to inspect.

apache/magpie · 73 tokens

remove

Remove a deployed framework or addon from the current workspace.

jmagly/aiwg · 12 tokens