custom-agent-skill

Validate kebab-case agent names against length and character rules.

376|31|Updated Jan 30, 2026
One-click install
npx skills add https://github.com/avifenesh/agnix --skill custom-agent-skill
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: custom-agent-skill
Source: https://github.com/avifenesh/agnix/tree/main/tests/fixtures/valid/skills/with-custom-agent
Command: npx skills add https://github.com/avifenesh/agnix --skill custom-agent-skill

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Ensures agent identifiers follow kebab-case conventions and length constraints, preventing configuration and validation errors in tests.

Core Features & Use Cases

  • Enforces kebab-case naming rules (lowercase letters, digits, and hyphens) for custom agents.
  • Validates length limits (1-64 characters) to avoid overly short or long identifiers.
  • Useful for testing agent configurations in CI pipelines and example datasets.

Quick Start

Test a sample agent name like 'my-test-agent' against the kebab-case validation rules.

Frequently Asked Questions about custom-agent-skill

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I validate kebab-case naming conventions for custom agent names?

You can validate kebab-case agent names by checking them against formatting rules that enforce lowercase letters, digits, and hyphens. This prevents configuration and validation errors during testing.

What are the length limits for kebab-case identifiers in CI pipelines?

Kebab-case identifiers in CI pipelines must be between 1 and 64 characters long. Enforcing these length constraints prevents overly short or long custom agent names from causing validation errors.

Why does custom agent configuration fail validation in test environments?

Custom agent configuration fails validation in test environments when identifiers do not follow kebab-case rules. Using uppercase letters, invalid characters, or exceeding length limits triggers validation errors in the workflow.

Can I use special characters in agent names for CI pipelines?

No, you cannot use special characters in agent names for CI pipelines. Kebab-case validation rules restrict custom agent identifiers to lowercase letters, digits, and hyphens to prevent misconfigurations.

What is the best way to test agent name validation rules in example datasets?

The best way to test agent name validation rules in example datasets is to validate sample identifiers like 'my-test-agent' against kebab-case constraints. This confirms length limits and allowed characters are properly enforced.