aionui-config

Configure DCode assistants, skills, MCP servers, providers, and cron jobs via the bundled dcode-core CLI.

Updated Aug 19, 2026
One-click install
npx skills add https://github.com/Dhanuzh/DCode-Core --skill aionui-config-dhanuzh
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aionui-config
Source: https://github.com/Dhanuzh/DCode-Core/tree/main/crates/dcode-app/assets/builtin-skills/auto-inject/aionui-config
Command: npx skills add https://github.com/Dhanuzh/DCode-Core --skill aionui-config-dhanuzh

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing a DCode installation normally requires navigating many settings screens for assistants, skills, MCP servers, model providers, and scheduled tasks. This Skill lets an agent perform all of that configuration directly from a conversation through the bundled dcode-core config CLI, with read-before-write safety and clear reporting of when changes take effect. ## Core Features & Use Cases - Assistant Management: Create, update, enable, and inspect assistants, including editing their system-prompt rules and attaching default skills. - Skills, MCP, and Providers: List, inspect, and import skills; create and test MCP server connections; configure model providers with protocol detection and health checks. - Settings, Agents, and Scheduled Tasks: Patch backend and client settings, manage agents and custom agent binaries, and create or update cron jobs tied to conversations. - Use Case: A user asks the agent to create a "Requirements Analyst" assistant with a custom system prompt, attach the cron skill, and schedule a weekday 6 PM summary task — all completed and read back in one conversation. ## Quick Start Ask the agent to show the current assistant's configuration and then update its description or attach a skill using the dcode-core config CLI.

Frequently Asked Questions about aionui-config

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

FAQPage Schema
How do I configure a DCode assistant from a conversation?

Use the dcode-core config CLI with commands like config assistants create or config assistants update, passing input as stdin JSON. Read the assistant first, make the change, then read back to verify the saved result.

How do I attach skills to a DCode assistant?

Update the assistant's enabled_skills field with the full intended list via config assistants update. Read the assistant first and merge the existing list locally rather than appending blindly, since the update replaces the whole value.

Do assistant changes apply to the current conversation?

No. Identity fields like name and description save immediately but may need a UI refresh, while runtime fields such as rules, default model, skills, and MCP defaults apply only to new conversations created from that assistant.

How do I add an MCP server to DCode?

Use config mcp servers create with a stdin JSON payload defining the name and transport, such as a stdio command with args. You can validate the configuration first with config mcp test-connection before saving it.

Why did my config command fail with a CONFIG error?

Failures print a stable CONFIG_... error line to stderr, which is authoritative. Run config capabilities to check which commands and stdin fields your dcode-core version supports, then retry with valid input.

Can I schedule recurring tasks for the current conversation?

Yes. Use config cron current create with a cron expression, description, and message to attach a scheduled task to the current conversation, or use config cron jobs for global administration with tagged schedule objects.