generated from eblume/project-template
Some checks failed
Build / validate (pull_request) Failing after 3s
Backend (TDD):
- task.promote {container_id, item_ref, attention?, project?}: mint a committed
task from the item_ref-th `- [ ]` context item (1-based, document order via a
new extract::context_item_lines) and rewrite that source line into a [[link]]
to it. Unit + rpc_socket tests.
- resolve_id now excludes canonical-context docs, so [[Task Title]] resolves to
the task, not its identically-titled context doc (deterministic; a general fix
surfaced by promotion's ULID-tiebreak ambiguity).
Plugin: :Heph promote / promote_under_cursor (save-if-dirty → compute item index
with a code-fence-aware scanner mirroring extract.rs → task.promote → reload the
rewritten buffer). e2e spec (f): promote a context line, assert the new task in
next, the source line became a link, and the container backlinks the task.
CI via Dagger: a test_nvim function bakes a pinned, arch-detected Neovim
(v0.11.2 — Debian's is too old for vim.uv) onto rust:1-bookworm, builds hephd,
and runs the self-contained shim suite (cargo + target cache volumes);
build.yaml calls `dagger call test-nvim`. run.lua now fails on zero specs (no
false-green). Validated end-to-end: passing suite → exit 0, failing spec →
Dagger exit 1.
117 Rust tests + 7 nvim e2e specs green.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
120 lines
3.6 KiB
Lua
120 lines
3.6 KiB
Lua
--- Task actions (tech-spec §8): capture, attention, state, skip, log. Actions
|
|
--- that operate on "the current task" resolve it from the buffer — either the
|
|
--- buffer is a `task` node, or it is a task's canonical-context doc, in which
|
|
--- case we follow the `canonical-context` backlink to its owning task.
|
|
|
|
local rpc = require("heph.rpc")
|
|
local util = require("heph.util")
|
|
|
|
local M = {}
|
|
|
|
--- Capture a committed task. `opts`: attention, do_date, late_on, recurrence,
|
|
--- project. Returns the created task.
|
|
function M.capture(title, opts)
|
|
opts = opts or {}
|
|
return rpc.call("task.create", {
|
|
title = title,
|
|
attention = opts.attention,
|
|
do_date = opts.do_date,
|
|
late_on = opts.late_on,
|
|
recurrence = opts.recurrence,
|
|
project_id = opts.project,
|
|
})
|
|
end
|
|
|
|
--- The committed task id associated with the current buffer, or nil.
|
|
function M.current_task_id()
|
|
local buf = vim.api.nvim_get_current_buf()
|
|
local id = vim.b[buf].heph_node_id
|
|
if not id then
|
|
return nil
|
|
end
|
|
if vim.b[buf].heph_node_kind == "task" then
|
|
return id
|
|
end
|
|
-- A canonical-context doc: its owning task is the src of the
|
|
-- canonical-context link pointing here.
|
|
for _, l in ipairs(rpc.call("links.backlinks", { id = id })) do
|
|
if l.link_type == "canonical-context" then
|
|
return l.src_id
|
|
end
|
|
end
|
|
return nil
|
|
end
|
|
|
|
local function with_task(action, what)
|
|
local id = M.current_task_id()
|
|
if not id then
|
|
util.notify("no task associated with this buffer", vim.log.levels.WARN)
|
|
return nil
|
|
end
|
|
action(id)
|
|
if what then
|
|
util.notify(what)
|
|
end
|
|
return id
|
|
end
|
|
|
|
--- Mark the current task done/dropped (recurring tasks roll forward on done).
|
|
function M.set_state_current(state)
|
|
return with_task(function(id)
|
|
rpc.call("task.set_state", { id = id, state = state })
|
|
end, "task " .. state)
|
|
end
|
|
|
|
--- Set the current task's attention.
|
|
function M.set_attention_current(attention)
|
|
return with_task(function(id)
|
|
rpc.call("task.set_attention", { id = id, attention = attention })
|
|
end, "attention → " .. attention)
|
|
end
|
|
|
|
--- Skip the current recurring task's occurrence (advance without logging).
|
|
function M.skip_current()
|
|
return with_task(function(id)
|
|
rpc.call("task.skip", { id = id })
|
|
end, "occurrence skipped")
|
|
end
|
|
|
|
--- Promote the context-item line under the cursor to a committed task; the
|
|
--- daemon rewrites that line into a `[[link]]` to the new task. `opts.attention`
|
|
--- optional. Returns the created task.
|
|
function M.promote_under_cursor(opts)
|
|
opts = opts or {}
|
|
local buf = vim.api.nvim_get_current_buf()
|
|
local container_id = vim.b[buf].heph_node_id
|
|
if not container_id then
|
|
util.notify("not in a heph node buffer", vim.log.levels.WARN)
|
|
return nil
|
|
end
|
|
-- Save first so the daemon's body matches what the user sees on screen.
|
|
if vim.bo[buf].modified then
|
|
require("heph.node").write(buf, vim.api.nvim_buf_get_name(buf))
|
|
end
|
|
local item_ref = util.context_item_index_at_cursor(buf)
|
|
if not item_ref then
|
|
util.notify("cursor is not on a context item (- [ ])", vim.log.levels.WARN)
|
|
return nil
|
|
end
|
|
local task = rpc.call("task.promote", {
|
|
container_id = container_id,
|
|
item_ref = item_ref,
|
|
attention = opts.attention,
|
|
})
|
|
require("heph.node").reload(container_id) -- pull the rewritten body
|
|
util.notify("promoted to a task")
|
|
return task
|
|
end
|
|
|
|
--- Append a line to the current task's log (the resumption breadcrumb).
|
|
function M.log_append_current(text)
|
|
if not text or #text == 0 then
|
|
util.notify("nothing to log", vim.log.levels.WARN)
|
|
return nil
|
|
end
|
|
return with_task(function(id)
|
|
rpc.call("log.append", { task_id = id, text = text })
|
|
end, "logged")
|
|
end
|
|
|
|
return M
|