Make AI coding work survive the next thread.

Small changes stay conversational. When continuity matters, dot-agents stores work items, plans, and verification in your repo’s plain .agents/ folder so the next thread can continue.

Add it to your repo.

Run this from your repository root. It creates AGENTS.md and .agents/, and preserves your work when you sync.

terminal — repo rootbash
 curl -fsSL https://raw.githubusercontent.com/colmarius/dot-agents/main/install.sh | bash

Reviewcurl -fsSL https://raw.githubusercontent.com/colmarius/dot-agents/main/install.sh | less

Pin v0.5.0curl -fsSL https://raw.githubusercontent.com/colmarius/dot-agents/main/install.sh | bash -s -- --ref v0.5.0

Then tell your agent: Run adapt.

Choose the smallest useful path

Keep simple work simple. Make durable work resumable.

Stay in the conversation when one thread is enough. Open a work item only when continuity, coordination, decisions, or a handoff makes repository context worth maintaining.

Request or change

Self-contained

Stay in this conversation

Use no repository workflow artifacts when the scope is clear and one conversation is enough.

  1. 01

    Plan and execute

    Work directly from the request in the current conversation.

  2. 02

    Verify

    Run checks that match the change’s risk.

  3. 03

    Report

    Summarize the outcome and any remaining uncertainty.

Continuity has value

Create durable context

Use a work item when work must resume, coordinate, preserve decisions, or move between threads.

  1. 01

    Work item

    index.md owns status and the exact next action.

  2. 02 · optional

    Context

    Add research or requirements only when unknowns need them.

  3. 03

    Plan

    Define scoped tasks and planned verification.

  4. 04

    Execute

    Implement in the current thread by default.

  5. 05

    Evidence and closeout

    Record proof, promote reusable lessons, commit the final snapshot, then remove the work item.

What lands in your repo

Plain files. One place to resume.

A new thread reads index.md, then loads only the plan, research, or progress it needs.

Why durable context?
your-project/tracked
├── AGENTS.md       # project instructions
└── .agents/
    ├── work/       # durable work items
    ├── research/   # reusable findings
    ├── references/ # local reference repos
    ├── skills/     # repeatable workflows
    └── scripts/    # safe sync updates
work/feature/user-authentication/index.md● saved
# User authentication

Status: planned
Category: feature
Updated: 2026-06-22

## Why
Users need secure access across sessions.

## Summary
Add auth flows and session persistence.

## Next Action
Implement Task 1 from plan.md.

Start with these prompts

Ask for what you need.

Use these prompts as written. Add detail only when it helps.

Run adapt

Fill AGENTS.md with the repo’s commands and conventions.

Create a new work item for ...

Start durable context under .agents/work/.

Create a plan for ...

Plan conversationally, or turn durable context into implementation-ready tasks.

Write a handoff prompt for ...

Prepare a scoped prompt when another thread would help.