trellis-meta
This skill guides users through the local file structure and configuration logic required to manage Trellis settings and workflows.
Install
mkdir -p .claude/skills/trellis-meta && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/2702" && unzip -o skill.zip -d .claude/skills/trellis-meta && rm skill.zipInstalls to .claude/skills/trellis-meta
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Understand and customize the local Trellis architecture inside a user project. Use when modifying .trellis plus platform hooks, settings, agents, skills, commands, prompts, or workflows generated by trellis init.Key capabilities
- →Modify local Trellis architecture files
- →Customize agent workflows and runtime settings
- →Manage multi-agent channel event logs
- →Configure platform-specific integration hooks
- →Update project-local task and spec systems
How it works
The skill provides guidance on navigating the layered Trellis architecture, including workflow templates, channel runtime agents, and platform-specific integration files. It directs users to specific reference files for customization entry points.
Inputs & outputs
When to use trellis-meta
- →Customizing project-specific agent workflows
- →Modifying Trellis configuration settings
- →Integrating Trellis hooks with IDE agents
- →Adding custom skills to local agent libraries
About this skill
Trellis Meta
This skill is for local Trellis users who have already run trellis init in a project. After reading it, an AI should understand the Trellis architecture, operating model, and customization entry points inside that user project, then modify the generated .trellis/ and platform directory files according to the user's request.
Trellis v0.6 adds three architectural surfaces on top of the pre-v0.6 workflow / persistence / platform model. First, a multi-agent collaboration runtime: trellis channel coordinates multiple AI worker processes through project-scoped JSONL event logs at ~/.trellis/channels/<project>/<channel>/events.jsonl, with worker OOM guard, forum/thread channels, durable idempotency keys, and bundled .trellis/agents/{check,implement}.md runtime definitions. Second, cross-session memory: trellis mem list | search | context | extract | projects reads raw Claude Code, Codex, and Pi Agent JSONL already on disk, slices by --phase brainstorm|implement|all, and never uploads anything. Third, a dual-package npm release: @mindfoldhq/trellis (CLI) and @mindfoldhq/trellis-core (SDK with /channel, /task, /mem, /testing subpaths) ship in lockstep on one version. Treat these as first-class customization surfaces alongside the per-platform integration files.
The default operating scope is local files in the user project:
.trellis/: workflow, config, tasks, spec, workspace, scripts, bundled runtime agents, and runtime state.- Platform directories:
.claude/,.codex/,.cursor/,.opencode/,.kiro/,.gemini/,.qoder/,.codebuddy/,.github/,.factory/,.pi/,.reasonix/,.kilocode/,.agent/,.devin/,.kimi-code/, and similar directories. Pi additionally exposes a nativetrellis_subagenttool withsingle/parallel/chaindispatch modes, throttled progress cards, andisTrellisAgent()validation on top of the file layout. Reasonix stores both workflow skills and subagent skills as.reasonix/skills/<name>/SKILL.md; subagent skills carryrunAs: subagentfrontmatter. Kimi Code keeps workflow skills in the shared.agents/skills/layer, delivers commands plus agent prompts as.kimi-code/skills/<name>/SKILL.md, and installs the same agent prompts as custom sub-agents under.kimi-code/agents/<name>.md. - Shared skill layer:
.agents/skills/. - User-owned channel store outside the project tree:
~/.trellis/channels/<project>/<channel>/events.jsonl. - Raw platform conversation logs queryable via
trellis mem:~/.claude/projects/,~/.codex/sessions/, and~/.pi/agent/sessions/(OpenCode adapter degraded for the v0.6 line).
Do not assume the user has the Trellis source repository. Do not default to modifying the global npm install directory or node_modules — both @mindfoldhq/trellis and @mindfoldhq/trellis-core ship as published packages sharing one version and one git tag per release.
How To Use
- Read
references/local-architecture/overview.mdfirst to establish the local Trellis system model. - If the request involves a specific AI tool, read
references/platform-files/platform-map.mdand the relevant platform file notes. - If the request involves multi-agent dispatch or channel workers, read
references/local-architecture/multi-agent-channel.mdand the bundled.trellis/agents/files. - If the user wants to change behavior, read
references/customize-local/overview.md, then open the specific customization topic. - Before editing, read the actual files in the user project and treat local content as authoritative.
References
Local Architecture
references/local-architecture/overview.md: The layered local Trellis architecture (workflow / persistence / platform / channel runtime) and customization principles.references/local-architecture/generated-files.md: Files generated bytrellis initand their customization boundaries, including.trellis/agents/.references/local-architecture/workflow.md: Phases, routing, workflow-state blocks, and selectable workflow templates (native,tdd,channel-driven-subagent-dispatch, marketplace) in.trellis/workflow.md.references/local-architecture/task-system.md: Task directories, active task, JSONL context, parent/child task trees, and task runtime.references/local-architecture/spec-system.md: How.trellis/spec/is organized, injected, and refreshed from aregistry.specsource.references/local-architecture/workspace-memory.md:.trellis/workspace/journals plustrellis memcross-session recall and the@mindfoldhq/trellis-core/memSDK.references/local-architecture/context-injection.md: Hooks, sub-agent preludes, and channel-runtime worker inbox routing.references/local-architecture/multi-agent-channel.md:trellis channelsubcommands, project-scoped event store, forum/thread channels, worker OOM guard, durable idempotency, and bundled.trellis/agents/runtime agents.references/local-architecture/bundled-skills.md: Auto-dispatched bundled skills (trellis-meta,trellis-spec-bootstrap,trellis-session-insight) and howgetBundledSkillTemplates()ships them to every platform skill root.
Platform Files
references/platform-files/overview.md: How shared.trellis/files relate to platform directories and the four platform integration modes (hook-driven, agent prelude, main-session workflow, channel runtime).references/platform-files/platform-map.md: Platform directories and paths for skills, agents, hooks, and extensions across all supported platforms including Reasonix and Pi's nativetrellis_subagentextension.references/platform-files/hooks-and-settings.md: How settings/config files, hooks, plugins, and extensions connect to Trellis; coverschannel.worker_guard.*andcodex.dispatch_mode.references/platform-files/agents.md: Per-platformtrellis-research/trellis-implement/trellis-checksub-agent files plus bundled.trellis/agents/{check,implement}.mdfor the channel runtime.references/platform-files/skills-and-commands.md: Differences between skills, commands, prompts, and workflows, plus how to change them.
Local Customization
references/customize-local/overview.md: Choose the right local customization entry point for the user's request.references/customize-local/change-workflow.md: Change phases, routing, next actions, workflow-state, and the selected workflow template.references/customize-local/change-task-lifecycle.md: Change task creation, status, archive behavior, parent/child links, archive slug collision handling, and lifecycle hooks.references/customize-local/change-context-loading.md: Change how tasks, specs, journals, hook context, channel inbox messages, andtrellis memrecall are loaded.references/customize-local/change-hooks.md: Change platform hooks, settings, task lifecycle hooks (hooks.after_*), and shell session bridges.references/customize-local/change-agents.md: Change research, implement, and check agent behavior across platform sub-agents, bundled channel runtime agents, and the Codexdispatch_modetoggle.references/customize-local/change-skills-or-commands.md: Add or modify local skills, commands, prompts, and workflows; covers upstream bundled-skill auto-dispatch.references/customize-local/change-spec-structure.md: Adjust the project spec structure under.trellis/spec/, including registry-backed sources.references/customize-local/add-project-local-conventions.md: Put team rules into project-local specs or local skills.
Current Rules
.trellis/workflow.mdis the local workflow source of truth; its initial content was selected from a workflow template (built-innative,tdd,channel-driven-subagent-dispatch, or a marketplace template) attrellis inittime and can be re-selected viatrellis workflow --template <id>. Missing.trellis/agents/<name>.mdfiles referenced by the active template trigger a non-blocking stderr warning pointing attrellis update..trellis/config.yamlis the project-level Trellis configuration entry point. It hosts task lifecycle hooks (hooks.after_create/after_start/after_finish/after_archive), journal shape (session_commit_message/max_journal_lines/session_auto_commit), channel worker guard (channel.worker_guard.idle_timeout/max_live_workers), Codex dispatch mode (codex.dispatch_mode: inline | sub-agent), and the spec registry block (registry.spec.source+registry.spec.template)..trellis/spec/stores the user's project-specific coding conventions and design constraints. Whenregistry.specis set, files are refreshed bytrellis update; local edits surface as "modified by user" conflicts in.trellis/.template-hashes.json..trellis/tasks/stores task PRDs, design notes, implement plans, research files, and JSONL context. Tasks form parent/child trees:task.py create --parent <slug>,task.py add-subtask <parent> <child>,task.py remove-subtask <parent> <child>, andtask.py list-context <task>.task.py createrejects a slug already present in.trellis/tasks/archive/**..trellis/workspace/stores deliberately written developer journals. Raw cross-session dialogue is not stored here — it lives on disk under~/.claude/projects/,~/.codex/sessions/, and~/.pi/agent/sessions/and is recovered viatrellis mem search|extract|context. The bundledtrellis-session-insightskill teaches when to reach formem..trellis/agents/{check,implement}.mdare bundled, platform-agnostic channel runtime agent definitions loaded bytrellis channel spawn --agent <name>. Editable;trellis updatebackfills missing ones. Editing the per-platformtrellis-implement.md/trellis-check.mddoes not change channel-runtime worker behavior.~/.trellis/channels/<project>/<channel>/events.jsonlis the channel runtime event log per project per channel. User-ow
Content truncated.
When not to use it
- →Modifying global npm install directories
- →Editing Trellis upstream source code
- →Hand-editing channel event log files
Prerequisites
Limitations
- →Cannot modify global npm packages
- →Requires local project-level access
How it compares
Unlike manual configuration, this skill provides a structured path for modifying project-local Trellis files while respecting the system's architectural boundaries.
Compared to similar skills
trellis-meta side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| trellis-meta (this skill) | 4 | 3mo | No flags | Intermediate |
| webapp-testing | 353 | 3mo | Review | Intermediate |
| resolve-conflicts | 81 | 8mo | Review | Intermediate |
| telegram-bot-builder | 106 | 6mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by mindfold-ai
View all by mindfold-ai →You might also like
webapp-testing
anthropics
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
resolve-conflicts
antinomyhq
Use this skill immediately when the user mentions merge conflicts that need to be resolved. Do not attempt to resolve conflicts directly - invoke this skill first. This skill specializes in providing a structured framework for merging imports, tests, lock files (regeneration), configuration files, and handling deleted-but-modified files with backup and analysis.
telegram-bot-builder
davila7
Expert in building Telegram bots that solve real problems - from simple automation to complex AI-powered bots. Covers bot architecture, the Telegram Bot API, user experience, monetization strategies, and scaling bots to thousands of users. Use when: telegram bot, bot api, telegram automation, chat bot telegram, tg bot.
dev-browser
SawyerHood
Browser automation with persistent page state. Use when users ask to navigate websites, fill forms, take screenshots, extract web data, test web apps, or automate browser workflows. Trigger phrases include "go to [url]", "click on", "fill out the form", "take a screenshot", "scrape", "automate", "test the website", "log into", or any browser interaction request.
openspec-onboard
studyzy
Guided onboarding for OpenSpec - walk through a complete workflow cycle with narration and real codebase work.
codex-cli-bridge
alirezarezvani
Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools