agentsclimarketplace

Template usage

Skill harness/harness-skills/skills/template-usage

A collection of structured AI agent skills that enable Claude Code, Cursor, GitHub Copilot, and other AI coding assistants to create, operate, debug, and govern Harness CI/CD workflows through natural language.

Install
npx -y skills add harness/harness-skills --skill template-usage

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

Track Harness template dependencies, usage, and adoption via MCP v2 tools. Find which pipelines or other templates reference a given template, analyze update impact, identify unused templates, and compare version adoption. Use when asked about template usage, template references, template dependencies, impact analysis before updating a template, finding unused templates, or tracking template adoption across projects. Trigger phrases: template usage, who uses template, template references, template dependencies, template impact, unused templates, template adoption. Do NOT use for creating or updating templates (use create-template instead).

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

5.4 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it

Template Usage Skill

Track template dependencies and usage across Harness via MCP v2 tools.

MCP v2 Tools Used

ToolResource TypePurpose
harness_searchtemplateFind templates by keyword across orgs/projects
harness_listtemplateList templates, filter by scope
harness_gettemplateGet template details, versions, and usage references
harness_describetemplateDiscover template resource schema and fields

Templates are managed via harness_list and harness_get only. For creating or updating templates, use the /create-template skill.

Template Types

TypeDescription
StepSingle step definition (build, test, deploy actions)
StageComplete stage with steps (CI stage, CD stage, approval)
PipelineFull pipeline definition
StepGroupGroup of related steps bundled together

Template Scopes

ScopeVisibilityQuery Parameters
AccountAll orgs and projectsNo org_id, no project_id
OrganizationAll projects in the orgorg_id only
ProjectOnly within the projectorg_id + project_id

Instructions

Step 1: Find the Template

Search by name or keyword:

harness_search(
  query="docker-build-push",
  resource_types=["template"],
  max_per_type=10,
  compact=true
)

Or list templates in a specific scope:

harness_list(
  resource_type="template",
  org_id="<org>",
  project_id="<project>",
  search_term="docker"
)

Step 2: Get Template Details

harness_get(
  resource_type="template",
  resource_id="<template_identifier>",
  org_id="<org>",
  project_id="<project>"
)

This returns the template definition, version history, and metadata.

Step 3: Check Usage References

harness_get(
  resource_type="template",
  resource_id="<template_identifier>",
  org_id="<org>",
  project_id="<project>"
)

Parse the response for referredEntities or usage data. The response includes which pipelines and other templates reference this template.

Step 4: Analyze and Present

Organize findings into a report.

For report templates (Usage Report, Impact Analysis, Unused Templates), consult references/report-templates.md.

Examples

Check who uses a template

/template-usage
Which pipelines are using the docker-build-push template?

Impact analysis before update

/template-usage
I want to make a breaking change to the k8s-deploy template. Show me what will be affected.

Find unused templates

/template-usage
Which templates in our account have no references? I want to clean up.

Track version adoption

/template-usage
Which version of the ci-stage template are different projects using?

Cross-project usage

/template-usage
Show me all usages of account-level templates across all projects

Dependency chain

/template-usage
Show me the full dependency chain for the release-pipeline template --
what does it reference and what references it?

Error Handling

ErrorCauseSolution
Template not foundWrong identifier or scopeVerify identifier and use correct org_id/project_id for the template's scope
No usage dataTemplate genuinely unused or scope mismatchSearch at broader scope; account templates may be used in any project
Empty search resultsNo templates match queryTry broader search terms or list all templates

Performance Notes

  • Paginate through all usage results before generating the impact report. Large templates may have many references.
  • Check usage across all scopes (account, org, project) for complete impact analysis.
  • Verify version information to distinguish between teams using current vs. outdated template versions.

Troubleshooting

No Usage Data Returned

  1. Template may genuinely have no references
  2. Query scope must match template scope -- an account-level template needs no org_id/project_id
  3. Use harness_search with broader terms to find the template first

Incomplete Usage List

  1. Paginate through results -- increment page until all results are retrieved
  2. Account-level templates can be referenced from any org/project -- check all scopes
  3. Check for both pipeline and template references (templates can nest)

Template Not Found

  1. Verify the exact identifier (case-sensitive, underscores not hyphens)
  2. Identifiers must match pattern: ^[a-zA-Z_][0-9a-zA-Z_]{0,127}$
  3. Check the correct scope -- project templates require org_id + project_id

What ships with it: 1 file

2.0 KB alongside SKILL.md

references/

Keep looking

Skills are one crate of 327,069. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.