Read project config from .agents.yml and .agents.local.yml with local overrides. Use when checking config values like auto_preview, tech_stack, task_management. Invoke with args "<field> <default>".
/plugin marketplace add majesticlabs-dev/majestic-marketplace/plugin install majestic-engineer@majestic-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
scripts/config_reader.shRead and merge .agents.yml and .agents.local.yml configuration files. Local config overrides base config.
$ARGUMENTS format: <field> [default]
Examples:
auto_preview false - get auto_preview, default to "false"tech_stack generic - get tech_stack, default to "generic"task_management - get task_management, no default (empty if not found)Parse the arguments and run:
bash -c '
FIELD="$1"
DEFAULT="${2:-}"
value=""
[[ -f .agents.local.yml ]] && value=$(grep -m1 "^${FIELD}:" .agents.local.yml 2>/dev/null | cut -d: -f2- | sed "s/^ *//")
[[ -z "$value" && -f .agents.yml ]] && value=$(grep -m1 "^${FIELD}:" .agents.yml 2>/dev/null | cut -d: -f2- | sed "s/^ *//")
echo "${value:-$DEFAULT}"
' -- FIELD DEFAULT
Replace FIELD and DEFAULT with the parsed arguments.
Return ONLY the config value (single line):
truerailsgithub.agents.local.yml wins if key exists.agents.yml if not in local| Field | Description | Typical Default |
|---|---|---|
auto_preview | Auto-open generated files | false |
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 |
default_branch | Main branch name | main |
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.