flow-ptr-app

flow-ptr-app is a skill for Claude Code, Codex from autodesk-platform-services/skills. It costs 83 tokens per session (2,232 once invoked), scanned A, original, MIT.

A guide for building new apps for Flow Production Tracking, a production-management system also known as ShotGrid, using its Toolkit framework. It organizes development around a written specification.

In plain words
What is it for?
Use it to plan and develop a new Toolkit app, check whether existing code can be reused, validate its specification, and verify the finished app.
Why use it?
It helps keep requirements, implementation, testing, release, and maintenance aligned instead of building the app without a shared plan.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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 skills/autodesk-platform-services/skills/flow-ptr-app
Any agent
npx skills add autodesk-platform-services/skills --skill flow-ptr-app
Clone the repo
git clone --depth 1 https://github.com/autodesk-platform-services/skills

Made for: Claude Code, Codex.

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 flow-ptr-app

README.md
[![agentmods](https://agentmods.dev/badge/skills/autodesk-platform-services/skills/flow-ptr-app.svg)](https://agentmods.dev/skills/autodesk-platform-services/skills/flow-ptr-app)
Your own site
<a href="https://agentmods.dev/skills/autodesk-platform-services/skills/flow-ptr-app"><img src="https://agentmods.dev/badge/skills/autodesk-platform-services/skills/flow-ptr-app.svg" alt="Measured on agentmods" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,232 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.1 $0.00083 $0.02232
Opus 5 $0.00042 $0.01116
Sonnet 5 $0.00017 $0.00446
Haiku 4.5 $0.00008 $0.00223

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

Security

Grade A, and why

flow-ptr-app 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 6d 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/flow-ptr-app/SKILL.md · 127 lines

How it starts

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

Create a Flow Production Tracking (FPTR) Toolkit App

This skill guides developers and pipeline engineers through building an FPTR app, following a spec-driven way — capture intent, check for reuse, write and validate a spec, plan, then implement, verify, release, and maintain against that spec. Tell the user which phase (below) you're starting before acting in it, so they can track progress and step in between phases.

Reference guide: Developing a Toolkit App Default app template repo: https://github.com/shotgunsoftware/tk-multi-starterapp

App spec-driven lifecycle

Each step below that has mechanical how-to links to a references/*.md guide — read it while executing that step, not before; keep the skill itself light and pull in detail only when it's actually needed. Phases 2, 7, and 9 have no dedicated guide — they're about the spec and process rather than a tool/config action.

  • Phase 1 — Requirements/Intent capture
    • Step 1.1 — Ask for the business need, and capture it in a short spec (one paragraph or a few bullet points) — what the app should do, on which context and environment it will run, whether it needs a UI, whether it needs toolkit hooks, constraints and acceptance criteria.
    • Step 1.2 — Find if an existing app / project setting / hook cover fully or partially the requirements, and confirm with the user whether later we will fork/extend from that tool or scaffold a new app from the starter template. Read references/existing-functionality.md while executing this step.
  • Phase 2 — Specification — before cloning anything, write down what the app does:
    • Step 2.1 — Clarify the goal, the app name, dependencies on Flow PTR frameworks/engines, the environment the tool runs in (e.g. Sequence/Shot/Episode-specific), the entities involved, the settings schema, which hooks the tool may need to expose and why, whether it needs a UI, and its acceptance criteria.
    • Step 2.2 — Validate the spec before planning: check it for internal contradictions, missing edge cases (no-UI/headless path, permissions, multi-engine support), and security/data-privacy concerns (e.g. what PTR fields/entities the app reads or writes). Flag gaps to the user instead of assuming an answer; only move to Phase 3 once the spec is complete and consistent.
  • Phase 3 — Plan/Design
    • Step 3.1 — Locate the project's pipeline configuration and figure out how it's set up (centralized vs. distributed). Read references/locating-config.md while executing this step.
    • Step 3.2 — Find or create a sandbox or a dev configuration if it doesn't exist. Read references/sandbox-dev-configuration.md while executing this step.
    • Step 3.3 — Clarify where the app's source code should live, and how it will be installed into the target configuration (dev path vs. install_app + switch_app). Read references/cloning-template.md and references/install-app.md while executing this step.
    • Step 3.4 — Break the spec into a technical plan: architecture decisions, file/module breakdown, sequencing of work, identification of risks or open questions. Where practical, decide to keep core logic separate from UI code (e.g. app.py/a logic module stays UI-agnostic, with dialog.py calling into it) — this is what lets Phase 6 exercise the tool as a headless command in tk-shell before wiring up the dialog. Read references/implement-app.md while executing this step for how that split plays out in code.
    • Step 3.5 — Split the plan into discrete, independently verifiable tasks/tickets, each with clear inputs/outputs and acceptance criteria, so that the work can be parallelized and tracked.
  • Phase 4 — Scaffold
    • Step 4.1 — Clone the reference tool — tk-multi-starterapp by default, or whichever existing app Phase 1 found as a better fit. Read references/cloning-template.md while executing this step.
  • Phase 5 — Implement against spec
  • Phase 6 — Verify against spec
    • Step 6.1 — Test and iterate using Toolkit's "Reload and Restart" menu item, checked against acceptance criteria, not just "does it run". If possible and it has a dependency on UI, test first in tk-shell or a batch context, then in tk-desktop and then in the target DCC engine, if applicable. If app is a Menu Action Item, test it in the FPTR Desktop and then in the web UI. Read references/test-app.md while executing this step.
  • Phase 7 — Change management
    • Step 7.1 — Commit in git, pushing changes only to the sandbox configuration, not production.
    • Step 7.2 — Future feature changes update the spec first (Phase 2, re-validating it per Step 2.2), then cascade forward through Phases 3-6 — the spec stays the source of truth, not the code.
  • Phase 8 — Release to production
    • Step 8.1 — Once ready for release, warn the user about the implications of bringing to production the new changes. Analyse possible side effects or interruptions to workflow.
    • Step 8.2 — Tag a release and push the sandbox config changes to the production pipeline configuration. Read references/release.md while executing this step.
  • Phase 9 — Maintenance
    • Step 9.1 — Treat post-release bug reports or new asks as spec changes, not code patches: update the spec first (back to Phase 2), validate it again, then re-enter Phase 3 and cascade forward through Phases 4-8 — the spec stays the source of truth for the life of the app, not just during initial development.

Read the full file on GitHub · 127 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. 6d ago First seen · 127 lines · 83 tokens per session scan A 0a5b37acd14f

Subscribe to this mod's changes

flow-ptr-app is a skill published in the GitHub repository autodesk-platform-services/skills (44 stars, last pushed 12d ago), licensed MIT. It adds 83 tokens to every session and 2,232 once invoked, about $0.0004 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens