add-agent-property — ai agent property modification add-agent-property, coding-agents-matrix, community, ai agent property modification, ide skills, schema reference management, workflow file editing, property key specification, cell type configuration, install ai coding agents

v1.0.0

About this Skill

Perfect for AI Agent Developers needing customized agent properties and advanced board modification capabilities. add-agent-property is a technical skill that allows developers to add new properties to AI agents, enhancing their functionality and customization.

Features

Modifies schema references using references/schema.md
Supports workflow file modification in sequence
Gathers property details, including property key and display label
Allows cell type specification, including badge and text options
Enables group assignment for organized property management

# Core Topics

PackmindHub PackmindHub
[8]
[0]
Updated: 3/9/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
8/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

Perfect for AI Agent Developers needing customized agent properties and advanced board modification capabilities. add-agent-property is a technical skill that allows developers to add new properties to AI agents, enhancing their functionality and customization.

Core Value

Empowers agents to modify four files in sequence, adding new properties with specified keys, display labels, tooltip descriptions, cell types, and groups, utilizing schema references for data structures.

Ideal Agent Persona

Perfect for AI Agent Developers needing customized agent properties and advanced board modification capabilities.

Capabilities Granted for add-agent-property

Modifying agent boards with new properties
Customizing property keys and display labels
Adding tooltips for enhanced user experience

! Prerequisites & Limits

  • Requires sequential file modification
  • Limited to four specific files
  • Adherence to schema references for data structures

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is add-agent-property?

Perfect for AI Agent Developers needing customized agent properties and advanced board modification capabilities. add-agent-property is a technical skill that allows developers to add new properties to AI agents, enhancing their functionality and customization.

How do I install add-agent-property?

Run the command: npx killer-skills add PackmindHub/coding-agents-matrix. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for add-agent-property?

Key use cases include: Modifying agent boards with new properties, Customizing property keys and display labels, Adding tooltips for enhanced user experience.

Which IDEs are compatible with add-agent-property?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for add-agent-property?

Requires sequential file modification. Limited to four specific files. Adherence to schema references for data structures.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add PackmindHub/coding-agents-matrix. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use add-agent-property immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

add-agent-property

Install add-agent-property, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Add Agent Property

Add a new property to the agents board by modifying four files in sequence.

Schema reference: See references/schema.md for data structures.

Workflow

1. Gather Property Details

Ask the user for:

  • Property key (camelCase, e.g., contextWindow)
  • Display label (short, e.g., "Context Window")
  • Tooltip description (1 sentence explaining the property)
  • Cell type: badge (yes/no/partial) or text (free-form)
  • Group: identity, packaging, or features

2. Update agents-detailed.json

Add the property to every agent in src/data/agents-detailed.json:

json
1"propertyKey": { 2 "value": null, 3 "detail": null 4}

Insert after the last feature property, before additionalInfo.

3. Update groups.json

Add the property key to the appropriate group's columns array in src/data/groups.json:

json
1{ 2 "id": "features", 3 "label": "Features", 4 "columns": ["existingProp", "propertyKey"] 5}

4. Update AgentTable.jsx

Add column definition to the columns array in src/components/AgentTable.jsx:

javascript
1{ key: 'propertyKey', label: 'Label', sortable: true, cellType: 'badge', tooltip: 'Description' }

Insert at the position matching its group order.

5. Update useAgentsData.js

Add transformation in src/hooks/useAgentsData.js:

javascript
1propertyKey: agent.propertyKey.value, 2propertyKeyDetail: agent.propertyKey.detail,

6. Update FilterBar.jsx (for filterable properties)

If the property is in packaging or features group and has cellType: 'badge', add it to the featureOptions array in src/components/FilterBar.jsx:

javascript
1{ key: 'propertyKey', label: 'Label' }

Insert in the appropriate section (Packaging or Features) following the existing order.

7. Update GitHub Issue Templates

01-update-agent.md - Add under Features section:

markdown
1- [ ] **Property Label** (`propertyKey`) 2 - New value: <!-- yes/no/partial/null --> 3 - Detail:

02-add-new-agent.md - Add new section with property definition, value format, and examples.

Checklist

  • Property added to all agents in agents-detailed.json
  • Property key added to correct group in groups.json
  • Column definition added to AgentTable.jsx
  • Transformation added to useAgentsData.js
  • Filter option added to FilterBar.jsx (if badge in packaging/features)
  • Update template modified in .github/ISSUE_TEMPLATE/01-update-agent.md
  • New agent template modified in .github/ISSUE_TEMPLATE/02-add-new-agent.md

Related Skills

Looking for an alternative to add-agent-property or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer