configured-agent

Reads .local.md files with YAML frontmatter to configure Claude Code plugins per project.

Updated Apr 1, 2026
One-click install
npx skills add https://github.com/jaimedhenriques/finsyt --skill configured-agent-jaimedhenriques
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: configured-agent
Source: https://github.com/jaimedhenriques/finsyt/tree/main/artifacts/platform/.agents/skills/configured-agent
Command: npx skills add https://github.com/jaimedhenriques/finsyt --skill configured-agent-jaimedhenriques

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill solves the problem of making Claude Code plugin behavior configurable per project without hardcoding settings into the plugin itself.

Core Features & Use Cases

  • Local Configuration Files: Stores plugin-specific settings and state in .claude plugin-local markdown files with YAML frontmatter.
  • Frontmatter Parsing: Reads boolean, numeric, string, and list values from user-managed configuration files to drive behavior.
  • Hook and Agent Integration: Supports hooks, commands, and agents that adapt their actions based on project-level settings.
  • Use Case: A team can enable strict validation for one repository while leaving another repository in standard mode by editing only the local settings file.

Quick Start

Ask the assistant to read the project’s local plugin settings and adjust the plugin behavior based on the YAML frontmatter in the matching .local.md file.

Frequently Asked Questions about configured-agent

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

FAQPage Schema
How do I make Claude Code plugin behavior configurable per project?

To make Claude Code plugin behavior configurable per project, you store plugin-specific settings in local markdown files with YAML frontmatter. The configured agent reads these local configuration files to apply project-specific overrides.

How does YAML frontmatter parsing work for local configuration files?

YAML frontmatter parsing works by reading boolean, numeric, string, and list values from user-managed local markdown files. The agent checks file presence and honors enabled flags and other configuration values to drive behavior.

Can I use hook automation to adjust actions based on project-level settings?

Yes, you can use hook automation to adjust actions based on project-level settings. Hooks, commands, and agents integrate with local configuration files to adapt their actions according to the parsed YAML frontmatter.

How do I enable strict validation for one repository while leaving another in standard mode?

You enable strict validation for one repository by editing only the local settings file in that project. The configured agent reads the YAML frontmatter in the matching .local.md file and applies the project-specific overrides.

Does this approach support agent state persistence across different projects?

Yes, this approach supports agent state persistence by storing plugin-specific settings and state in .claude plugin-local markdown files. The agent reads and applies these per-project configuration values during execution.

What are the limitations of managing plugin settings through local markdown files?

The limitation of managing plugin settings through local markdown files is that configuration requires manual editing of YAML frontmatter. The agent must parse frontmatter fields and check file presence, adding overhead to settings management.