From 69d3d6d8dd3d7a866482d7d63cd6a05b27995ae2 Mon Sep 17 00:00:00 2001 From: Jimmy Carson Date: Mon, 9 Feb 2026 11:43:58 -0500 Subject: [PATCH] fix: remove unsupported frontmatter attributes from SKILL.md Remove 'argument-hint' and 'disable-model-invocation' from the skill frontmatter as they are not supported attributes. Claude Code skill files only support: name, description, compatibility, license, and metadata. Arguments are still passed via $ARGUMENTS and work without argument-hint. --- use-cases/build-with-agent-team/SKILL.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/use-cases/build-with-agent-team/SKILL.md b/use-cases/build-with-agent-team/SKILL.md index 9bd33cdae..494da454d 100644 --- a/use-cases/build-with-agent-team/SKILL.md +++ b/use-cases/build-with-agent-team/SKILL.md @@ -1,8 +1,6 @@ --- name: build-with-agent-team description: Build a project using Claude Code Agent Teams with tmux split panes. Takes a plan document path and optional team size. Use when you want multiple agents collaborating on a build. -argument-hint: [plan-path] [num-agents] -disable-model-invocation: true --- # Build with Agent Team