The problem Trellis solves
AI coding assistants are smart, but they don’t know your codebase. Every session starts blank. Claude doesn’t know you usesnake_case for database columns. Cursor doesn’t know your error handling pattern. You end up explaining the same things over and over.
Trellis fixes this by writing conventions down once and injecting them automatically. The AI gets your context before writing a single line of code.
Three systems, one workflow
Trellis has three main pieces:Specs
Your coding standards, written in markdown. Stored in.trellis/spec/.
Tasks
Work items with their own context. Stored in.trellis/tasks/.
implement agent only sees what it needs.
Workspace
Session history per developer. Stored in.trellis/workspace/.
How they connect
What makes this different
Other tools try to make AI “remember” things. Trellis doesn’t rely on memory. It injects context fresh every time. The AI can’t forget what you told it because you’re telling it again. This also means specs are version-controlled. When conventions change, you update the spec file. Everyone gets the new rules automatically.Next steps
Write specs
How to write specs that actually work.
Manage tasks
Create and track work with the task system.