From agent-skills
Inspect a Twenty CRM object type by querying the live API. Use when investigating Twenty data structure, field availability, data quality, or record counts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-skills:inspect-twenty [object-name][object-name]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Inspect a Twenty CRM object by running the bundled analysis script, then interpret and contextualize the results.
Inspect a Twenty CRM object by running the bundled analysis script, then interpret and contextualize the results.
The script queries both API surfaces:
/rest/metadata/objects, /rest/metadata/fields) for authoritative field definitions (type, label, required, relations, custom vs standard)/rest/{object}) for actual records (sample values, null rates, CURRENCY decoding, anomaly detection)It also cross-references both sources to detect schema drift (fields that exist in metadata but not in data, or vice versa; type mismatches between declared and observed).
python Skills/inspect-twenty/scripts/inspect.py $ARGUMENTS
If the script is not found at that path, search for inspect-twenty/scripts/inspect.py in the workspace and additional directories.
--metadata-only - Schema definitions only, no record data (faster, no pagination)--data-only - Record analysis only, skip metadata (if metadata endpoint is unavailable)--env-file PATH - Explicit path to .env (default: searches upward from cwd)After the script runs, review its output and add context:
contractValue is the original signed amount, currentContractValue is the live ceiling after amendments).httpx: run pip install httpx and retry.env for TWENTY_API_KEY and TWENTY_BASE_URL--data-only as fallback./graphql): Could surface additional computed fields or deeper relation traversals not visible via REST. The REST metadata covers field definitions, but GraphQL may expose query capabilities (filtering, aggregation) that REST lacks. If the inspection reveals gaps, suggest a follow-up GraphQL introspection.npx claudepluginhub rexynexus/agent-skills --plugin agent-skillsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.