A personal control center for grad school workflows.
Project description
Docent
A personal CLI control center for grad-school workflows — papers, research, writing tools, subprocess wrappers — all behind a single docent <tool> command. Built so a web dashboard can wrap the same tool registry later without rewriting anything.
Built with AI, Architected by a Human: Much of the codebase for Docent was written by Claude Code (Opus 4.7) and OpenCode Go subscription models (Kimi K2.6, DeepSeek V4 Pro, Qwen 3.5 Plus, MiniMax M2.7), but the architecture was strictly human-directed — designed, planned, tested, and iterated over many sessions.
What works today
docent --version,docent --help,docent list,docent info <tool>- Tool contract — two shapes:
- Single-action: subclass
Tool, setinput_schema, overriderun(). CLI:docent <tool> --flag ... - Multi-action: decorate methods with
@action(...). CLI:docent <tool> <action> --flag ... - A tool is one or the other — registry enforces mutual exclusivity at import time.
- Single-action: subclass
- Auto-discovery: drop a file in
src/docent/tools/, decorate with@register_tool, and Typer commands generate at startup from the Pydantic input schema. No CLI edits. - Context plumbing:
context.settings(Pydantic +~/.docent/config.toml+ env overrides),context.llm(lazy litellm wrapper),context.executor(list-args subprocess, no shell-injection surface). docent.learning.RunLog: per-namespace JSONL run-log with cap-and-roll, for tools that want a "what did I do recently" history (used bypaper's mutators).readingtool: reading queue CRUD (next / show / search / stats / remove / edit / done / start / export);add(guidance mode — ingestion goes through Mendeley);sync-from-mendeley(reconciles the configured Mendeley collection into the local queue, overlays fresh metadata on display);sync-pull(Unpaywall OA download);sync-status;move-up / move-down / move-to; deadline notifications at startup;config-show / config-set;queue-clear. Mendeley is the source of truth for title/authors/year/doi — the reading tool is a thin workflow layer on top.ReadingQueueStore: persistence seam inreading_store.py. Actions mutate queue state through the store, never by reaching into JSON directly.MendeleyCache: read-through file-backed cache (5-min TTL) used bynext / show / searchto overlay live Mendeley metadata. Degrades gracefully to queue snapshot on auth/transport failure.- Themed Rich console singleton; tools never touch it directly (they return typed data; CLI renders).
Install
Requires uv and Python 3.11+.
uv sync
uv run docent --version
For a global install once you want docent on your PATH:
uv tool install .
docent --version
Architecture
See Docent_Architecture.md for the full design. The short version:
- Tool registry — tools self-register via
@register_toolat import time. Registry stores the class, not an instance, so nothing runs until the tool is actually invoked. - Context object — frozen dataclass passed to every tool. Provides
settings,llm(lazy litellm), andexecutor(subprocess wrapper). - UI / logic boundary — tools return typed Pydantic data. They never import
docent.uiand never touch Rich. The CLI renders; the future dashboard will serialize the same data to JSON. - Plugin system — drop a file in
src/docent/tools/, decorate with@register_tool, and Typer commands generate at startup. No CLI edits needed.
Tools
reading — Reading Queue
Manages your academic reading queue and syncs with Mendeley.
Workflow: Drop a PDF in your database_dir → Mendeley auto-imports it → drag it into your Docent-Queue collection in Mendeley → run docent reading sync-from-mendeley. The category of each entry is automatically detected from Mendeley sub-collections (e.g. a paper in Docent-Queue/TestCourse701/ParticularTopic gets category="TestCourse701/ParticularTopic").
Queue management
| Command | Description |
|---|---|
docent reading next |
Show the next paper to read (lowest order number) |
docent reading next --course-name CES701 |
Next paper for a specific course |
docent reading show <id> |
Show full details for one entry |
docent reading search <query> |
Search by title, authors, notes, tags, or id |
docent reading stats |
Counts by status, category, and course |
docent reading export |
Export queue as JSON (default) or Markdown table |
docent reading export --format markdown --status queued |
Filtered export, sorted by reading order |
Status transitions
| Command | Description |
|---|---|
docent reading start <id> |
Mark as currently reading (stamps started timestamp) |
docent reading done <id> |
Mark as finished (stamps finished timestamp) |
docent reading remove <id> |
Remove entry from queue |
Editing
| Command | Description |
|---|---|
docent reading edit <id> --order 1 |
Set reading priority (1 = read first) |
docent reading set-deadline <id> --deadline 2026-06-15 |
Set a reading deadline |
docent reading set-deadline <id> --deadline '' |
Clear a deadline |
docent reading edit <id> --notes "Key paper for lit review" |
Add notes |
docent reading edit <id> --tags tag1 tag2 |
Set tags |
docent reading edit <id> --type book_chapter |
Set entry type (paper / book / book_chapter) |
docent reading move-up <id> |
Move one position earlier |
docent reading move-down <id> |
Move one position later |
docent reading move-to <id> --position 3 |
Move to a specific position |
Deadlines: Set via set-deadline --deadline YYYY-MM-DD. Docent prints a startup warning for entries due within 3 days or overdue — once per calendar day.
Entry types: Automatically detected from Mendeley document type on sync (journal_article → paper, book → book, book_section → book chapter). Override with edit --type book_chapter.
Mendeley sync
| Command | Description |
|---|---|
docent reading sync-from-mendeley |
Pull from your Mendeley Docent-Queue collection |
docent reading sync-from-mendeley --dry-run |
Preview changes without writing |
docent reading sync-status |
Report queue size and PDFs in database_dir |
Configuration
| Command | Description |
|---|---|
docent reading config-show |
Show current reading settings |
docent reading config-set database_dir ~/path/to/Papers |
Set the PDF database folder |
docent reading config-set queue_collection "Docent-Queue" |
Set the Mendeley collection name |
Other
| Command | Description |
|---|---|
docent reading queue-clear --yes |
Wipe the entire queue (irreversible) |
Adding a tool
Single-action tools are the simplest shape:
# src/docent/tools/echo.py
from pydantic import BaseModel, Field
from docent.core import Context, Tool, register_tool
class EchoInputs(BaseModel):
msg: str = Field(..., description="Message to echo.")
count: int = Field(1, description="Times to repeat.")
@register_tool
class Echo(Tool):
name = "echo"
description = "Repeat a message N times."
category = "demo"
input_schema = EchoInputs
def run(self, inputs: EchoInputs, context: Context) -> str:
return (inputs.msg + " ") * inputs.count
Then docent echo --msg hi --count 3 just works. No CLI edits, no registration code — the decorator is enough.
For tools with several related operations on shared state (a reading queue, a research notebook, a browser session), use the multi-action shape — decorate methods with @action(...) instead of overriding run(). Each action gets its own Pydantic input schema and becomes docent <tool> <action> --flag .... See src/docent/tools/reading.py for the reference implementation.
Why
I have a pile of Claude Code skills I actually use (research-to-notebook, paper-pipeline, feynman wrappers, literature-review, etc.) but they only work inside a Claude session. Docent is the terminal-first home for the same workflows — scriptable, pipeable, cron-able, and eventually a dashboard. MCP is not a replacement; Docent can later expose itself through MCP, but that's a late-stage adapter, not the core.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file docent_cli-1.0.0.tar.gz.
File metadata
- Download URL: docent_cli-1.0.0.tar.gz
- Upload date:
- Size: 35.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2ef951974a151f97d4cd4532f532fb804252baaa798e720a2f3eb9ce2ae6fac
|
|
| MD5 |
f134e3ce5633d7c8c3ee34848ab7dea0
|
|
| BLAKE2b-256 |
8ae708b07c068418d21fb381e7573bf410f16f5cff2dbe550081b6d56dc16a54
|
File details
Details for the file docent_cli-1.0.0-py3-none-any.whl.
File metadata
- Download URL: docent_cli-1.0.0-py3-none-any.whl
- Upload date:
- Size: 46.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.11 {"installer":{"name":"uv","version":"0.11.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d23c25cf1bff1d275ef37828419bc7266c26187ab2ecef80171dad644422696
|
|
| MD5 |
0780bc6bc47ad5abf90ead59607b87d8
|
|
| BLAKE2b-256 |
cfb6900fadcaba46c38dccab71c44256de2027e50a7572cfc6b18af08c95a28b
|