<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Workflow on Alwaldend</title>
		<link>https://alwaldend.com/tags/workflow/</link>
		<description>Recent content in Workflow on Alwaldend</description>
		<generator>Hugo</generator>
		<language>en</language>
		
		
		
		
			<atom:link href="https://alwaldend.com/tags/workflow/index.xml" rel="self" type="application/rss+xml" />
			<item>
				<title>Goal</title>
				<link>https://alwaldend.com/docs/projects/goal/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://alwaldend.com/docs/projects/goal/</guid>
				<description>&lt;p&gt;This project owns the goal execution skill and the deterministic local store&#xA;that supports it. Ordinary tasks use &lt;code&gt;init&lt;/code&gt; for the objective and acceptance,&#xA;&lt;code&gt;checkpoint --summary --subject --next-action&lt;/code&gt; for local progress, and &lt;code&gt;show&lt;/code&gt;&#xA;for bounded continuation. The store derives IDs and digests while retaining&#xA;explicit resource-version checks. Detailed attempt plans and histories remain&#xA;available for maintained goals, repeated failures, and complex coordination.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;projects/goal/&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  api/v1alpha1/      Portable resource types and domain validation&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  cmd/goal/          Cobra command wiring and command tests&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  docs/              Current architecture and generated diagrams&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  internal/fsstore/  Local persistence, per-goal locking, and store tests&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  skills/goal/       Model-facing execution protocol and evaluations&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Go dependencies flow from &lt;code&gt;cmd/goal&lt;/code&gt; to &lt;code&gt;internal/fsstore&lt;/code&gt; to&#xA;&lt;code&gt;api/v1alpha1&lt;/code&gt;. The API package has no filesystem or command dependency.&#xA;The Go toolchain is Bazel&amp;rsquo;s &lt;code&gt;@rules_go//go&lt;/code&gt;; run the package targets below&#xA;rather than a host-installed &lt;code&gt;go&lt;/code&gt;.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Goal command</title>
				<link>https://alwaldend.com/docs/projects/goal/cmd/goal/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://alwaldend.com/docs/projects/goal/cmd/goal/</guid>
				<description>&lt;p&gt;&lt;code&gt;goal&lt;/code&gt; is the command surface for the repository goal skill. Portable resource&#xA;types and domain validation live in &lt;code&gt;api/v1alpha1&lt;/code&gt;; deterministic local&#xA;persistence lives in &lt;code&gt;internal/fsstore&lt;/code&gt;. The command keeps authoritative&#xA;Kubernetes-inspired YAML envelopes and digest-bound attempt Markdown separate&#xA;from the bounded generated &lt;code&gt;README.md&lt;/code&gt; projection, uses the same record format&#xA;for workspace and project goals, and stores session focus separately under&#xA;ignored workspace scratch.&lt;/p&gt;&#xA;&lt;p&gt;The record layout is:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;goals/&amp;lt;goal-id&amp;gt;/&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  goal.yaml&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  criteria.yaml&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  criteria-revisions/&amp;lt;revision&amp;gt;.yaml&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  README.md&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  attempts/&amp;lt;attempt-id&amp;gt;/&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    attempt.yaml&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    plan.md&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    result.md&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    evidence/&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;code&gt;&amp;lt;owner-root&amp;gt;/goals/&amp;lt;goal-id&amp;gt;/&lt;/code&gt; is the preferred project placement, not a CLI&#xA;constraint. Direct initialization, promotion, and migration also accept other&#xA;safe in-workspace goals roots while recording the explicit owner root.&lt;/p&gt;</description>
			</item>
	</channel>
</rss>
