get-director-details

get-director-details is a skill for Claude Code from sophymarine/openregistry. It costs 102 tokens per session (585 once invoked), scanned A, original, Apache-2.0.

A lookup for a company’s current and former directors, secretaries, board members, or other officers recorded in its company registry.

In plain words
What is it for?
Use it to list current or historical officers, their roles and dates, and whether each person is still active.
Why use it?
It shows who has officially held management roles and when they were appointed or resigned.

Skill for Claude Code

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

Part of the openregistry plugin — 35 skills, 6 commands, 1 MCP server shipped together

Good fit Use it to list current or historical officers, their roles and dates, and whether each person is still active.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sophymarine/openregistry/get-director-details
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 sophymarine/openregistry --skill get-director-details
Clone the repo
git clone --depth 1 https://github.com/sophymarine/openregistry

Made for: Claude Code.

Or install openregistry, the plugin that ships this one along with the rest of its 35 skills, 6 commands, 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 get-director-details

README.md
[![agentmods](https://agentmods.dev/badge/skills/sophymarine/openregistry/get-director-details/github.svg)](https://agentmods.dev/skills/sophymarine/openregistry/get-director-details)
Your own site
<a href="https://agentmods.dev/skills/sophymarine/openregistry/get-director-details"><img src="https://agentmods.dev/badge/skills/sophymarine/openregistry/get-director-details/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 get-director-details

Your own site · 80×15
<a href="https://agentmods.dev/skills/sophymarine/openregistry/get-director-details"><img src="https://agentmods.dev/badge/skills/sophymarine/openregistry/get-director-details.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 585 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00102 $0.00585
Opus 5 $0.00051 $0.00293
Sonnet 5 $0.00020 $0.00117
Haiku 4.5 $0.00010 $0.00059

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

Security

Grade A, and why

get-director-details 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 11d 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.

skills/get-director-details/SKILL.md · 57 lines

What it actually says

Get Director Details

Current and historical officers of one known company.

When to use

  • "Who are the directors of Tesla Limited?"
  • "Who's on the board of company 03058989?"
  • "List all current officers of Acme."
  • "Did John Smith resign from Acme last year?"

When NOT to use

  • User gave only a name → run find-company first to get company_id, then this skill
  • User wants ownership → get-shareholder-details
  • User wants the underlying officer-change filing as a document → get-filings({ category: 'officers' }) then fetch

Example

Who runs Tesla Limited (GB 03058989)? Include resigned directors.

Workflow

1. If user only gave a name, run find-company first to capture company_id.

2. get_officers({ jurisdiction, company_id, include_resigned: <bool> })
     - include_resigned defaults to true; pass false when user asks "current only"
     - pass group_by_person: true (CZ only) to dedupe multi-role appointments

3. REPORT (newest appointment first):
     - One row per officer: name | role | appointed_on | resigned_on | is_active
     - Role labels stay in the registry's native language (Styremedlem, Président,
       Předseda představenstva, PREZES ZARZĄDU). Do not translate unless asked.
     - Cite officer_id verbatim on each row.

Edge cases

  • GDPR masking: some EU jurisdictions mask DoB / nationality / address — surface honestly, do not infer.
  • Corporate officers: keyed by the corporate's own company_id, not a personal officer_id.
  • 501: not all jurisdictions publish officer rosters publicly. Report the gap, don't substitute.
  • Stable IDs vary: some registries use synthetic per-record indices; do not assume officer_id is the same across two companies.
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. 11d ago First seen · 57 lines · 102 tokens per session scan A 0e0970f54519

Subscribe to this mod's changes

get-director-details is a skill published in the GitHub repository sophymarine/openregistry (17 stars, last pushed 4d ago), licensed Apache-2.0. It adds 102 tokens to every session and 585 once invoked, about $0.0005 per session on Opus 5. 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-30.

Related

Other skills, from other repositories

corporate-ownership-investigation

Trace who ultimately owns or controls a company, screen it for sanctions, and report the result without overclaiming. Use when asked "who owns X", "who is behind X", "is X sanctioned", "is X connected to Y", "what does X own", or when doing KYC/AML/due-diligence, counterparty checks, supply-chain screening, or…

Hei33enberg/WhiteIntel-OS · 117 tokens

qcc-executive-background

A Chinese company and executive background-check workflow examines a named person together with a company's Unified Social Credit Code, the identifier used for Chinese businesses.

zhanglunet/qcc · 333 tokens

qcc-risk-screen

A full risk-screening workflow for Chinese companies using Qichacha, a business-information service. It checks legal, enforcement, tax, bankruptcy, ownership, operating, and other company-risk records.

zhanglunet/qcc · 279 tokens

qcc-basic-profile

A workflow for Qichacha, a Chinese company-information service, that gathers a basic business summary in one pass. It covers registration, contacts, key people, tax and invoice details, branches, listings, and annual reports.

zhanglunet/qcc · 206 tokens

qcc-ipr-portfolio

A Chinese-language workflow for listing a company's intellectual-property and online assets. It covers patents, trademarks, copyrights, integrated-circuit layouts, standards, licenses, websites, apps, online shops, and social-media accounts.

zhanglunet/qcc · 248 tokens

qcc-ownership-trace

A workflow for tracing a company's ownership, including its controlling person, direct shareholders, investments, beneficial owners, and registration changes.

zhanglunet/qcc · 231 tokens