Back to Skills

config-reader

verified

Read project config from .agents.yml and .agents.local.yml with local overrides. Supports dot notation for nested fields. Invoke with args "<field> <default>".

View on GitHub

Marketplace

majestic-marketplace

majesticlabs-dev/majestic-marketplace

Plugin

majestic-engineer

Repository

majesticlabs-dev/majestic-marketplace
19stars

plugins/majestic-engineer/skills/config-reader/SKILL.md

Last Verified

January 24, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/majesticlabs-dev/majestic-marketplace/blob/main/plugins/majestic-engineer/skills/config-reader/SKILL.md -a claude-code --skill config-reader

Installation paths:

Claude
.claude/skills/config-reader/
Powered by add-skill CLI

Instructions

# Config Reader

Read and merge `.agents.yml` and `.agents.local.yml` configuration files. Local config overrides base config.

**Requires:** yq (`brew install yq` or `snap install yq`)

## Arguments

`$ARGUMENTS` format: `<field> [default]`

Examples:
- `auto_preview false` - get top-level field, default to "false"
- `plan.auto_create_task false` - get nested field, default to "false"
- `tech_stack generic` - get top-level field, default to "generic"
- `browser.type chrome` - get nested browser type
- `toolbox.build_task.design_system_path` - get deeply nested field

## Execution

Run the config reader script with parsed arguments:

```bash
bash {baseDir}/scripts/config_reader.sh FIELD DEFAULT
```

Replace `FIELD` and `DEFAULT` with the parsed arguments from `$ARGUMENTS`.

## Return Value

Return ONLY the config value (single line):
- `true`
- `rails`
- `github`

## Merge Logic

1. **Local checked first** - `.agents.local.yml` wins if key exists
2. **Fall back to base** - `.agents.yml` if not in local
3. **Default** - provided default if neither has the key

## Common Fields

| Field | Description | Typical Default |
|-------|-------------|-----------------|
| `auto_preview` | Auto-open markdown files | `false` |
| `plan.auto_create_task` | Auto-create tasks from plans | `false` |
| `tech_stack` | Primary tech stack | `generic` |
| `task_management` | Task tracking backend | `none` |
| `workflow` | Git workflow style | `branches` |
| `toolbox.build_task.design_system_path` | Design system location | (none) |

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
1519 chars