Verify daplug configuration status and detect legacy settings
Verify daplug configuration status and detect legacy settings. Use this to check your current configuration and identify settings that need migration.
/plugin marketplace add cruzanstx/daplug/plugin install daplug@cruzanstx--json<step1_resolve_config_reader> Resolve the config reader utility:
PLUGIN_ROOT=$(jq -r '.plugins."daplug@cruzanstx"[0].installPath' ~/.claude/plugins/installed_plugins.json)
CONFIG_READER="$PLUGIN_ROOT/skills/config-reader/scripts/config.py"
</step1_resolve_config_reader>
<step2_show_status> Show status in human-readable form (default):
python3 "$CONFIG_READER" status
Show JSON (if requested):
python3 "$CONFIG_READER" status --json
</step2_show_status>
<step3_warn>
If needs_migration is true, recommend running /daplug:migrate-config.
</step3_warn>