The last agent tool. When the PM states standing intent ("pilots come first"),
Reginald logs it verbatim to an append-only JSONL ledger in the pm-state repo —
a directive is intent; its effects still land through propose_change. This
completes Reginald's tool surface: query_project · propose_change · capture_work
· record_directive.
core (@commitea/core):
- directives/record-directive-v0: schema (kind/quote/target/params/rationale +
id/ts/status), serialize/parseDirectiveLog (ts-ordered, seq computed on read,
corrupt lines skipped), appendDirective (concatenation merge), toDirectiveInput.
- RECORD_DIRECTIVE_TOOL + system prompt update ("log standing intent; never claim
a change is applied").
- gitea client: getFile/putFile (contents API, base64-agnostic) for the pm-state repo.
app:
- main: a pm-state client (same token, `commitea-pm-state` repo — the purity
split, D4); appendDirectiveEntry (read→append→write, id/ts stamped here),
readDirectives. model:chat executes record_directive; pmstate:directives reads
the ledger. Degrades cleanly when the pm-state repo is absent.
- Directives screen shows the real ledger when present, the fixture demo otherwise.
Note: the pm-state repo isn't created yet — my token lacks write:user (repo
creation). Create `commitea-pm-state` (private) to activate the live path; all the
code + tests are in place. Override with COMMITEA_PMSTATE_REPO.
Verified: 116 core tests green (8 directive + 2 contents-API added), desktop
typecheck clean, 14 fixture e2e green. Gated live test: the real gemma-4-26b calls
record_directive for "pilots come first" (logs intent, doesn't claim to apply it);
the append/read + POST/PUT contents paths are unit-tested.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
115 lines
3.1 KiB
TypeScript
115 lines
3.1 KiB
TypeScript
export {
|
|
ESTIMATE_LABELS,
|
|
PRIORITY_LABELS,
|
|
HARD_DEADLINE_LABEL,
|
|
extractLabelFacts,
|
|
isCommiteaLabel,
|
|
parseEstimateLabel,
|
|
parsePriorityLabel,
|
|
} from './labels/label-schema.js'
|
|
export type { EstimateLabel, LabelFacts, PriorityLabel } from './labels/label-schema.js'
|
|
|
|
export { createGiteaClient, normalizeIssue, normalizeMilestone, normalizeTimeline } from './gitea/client.js'
|
|
export type { GiteaClient, ListIssuesOptions } from './gitea/client.js'
|
|
export { GiteaApiError } from './gitea/types.js'
|
|
export type {
|
|
FetchLike,
|
|
GiteaConfig,
|
|
GiteaHttpResponse,
|
|
GiteaIssue,
|
|
GiteaLabel,
|
|
GiteaMilestone,
|
|
GiteaMilestoneRef,
|
|
GiteaRequestInit,
|
|
} from './gitea/types.js'
|
|
|
|
export { describeChange, planIssueChange, proposalsFor } from './changes/apply-changes-v0.js'
|
|
export type { ChangeProposal, IssueChange, LabelPlan, ProposeChangeArgs } from './changes/apply-changes-v0.js'
|
|
|
|
export {
|
|
inferColumnV0,
|
|
inferLifecycle,
|
|
LIFECYCLE_COLUMNS,
|
|
workingDaysBetween,
|
|
} from './lifecycle/lifecycle-v0.js'
|
|
export type {
|
|
LifecycleColumn,
|
|
LifecycleEvent,
|
|
LifecycleEventType,
|
|
LifecycleInference,
|
|
LifecycleStages,
|
|
} from './lifecycle/lifecycle-v0.js'
|
|
|
|
export { DEFAULT_ESTIMATE_DAYS, schedule, selectFocus } from './scheduler/scheduler-v0.js'
|
|
export type {
|
|
DependencyEdge,
|
|
Focus,
|
|
SchedulableIssue,
|
|
ScheduledItem,
|
|
SchedulePlan,
|
|
} from './scheduler/scheduler-v0.js'
|
|
|
|
export {
|
|
COLD_START_PRIORS,
|
|
durationParams,
|
|
forecast,
|
|
nearestBucket,
|
|
PRIOR_BUCKETS,
|
|
priorForEstimate,
|
|
} from './forecast/forecast-v0.js'
|
|
export type {
|
|
BurnUpPoint,
|
|
DurationModel,
|
|
Forecast,
|
|
ForecastOptions,
|
|
LognormalPrior,
|
|
} from './forecast/forecast-v0.js'
|
|
|
|
export {
|
|
CALIBRATION_BUCKET_FLOOR,
|
|
calibrationSamples,
|
|
COLD_START_THRESHOLD,
|
|
fitCalibration,
|
|
toDurationModel,
|
|
} from './calibration/calibration-v0.js'
|
|
export type {
|
|
BucketFit,
|
|
CalibrationModel,
|
|
CalibrationSample,
|
|
PersonBias,
|
|
} from './calibration/calibration-v0.js'
|
|
|
|
export { createChatClient } from './agent/chat-client.js'
|
|
export type { ChatClient, ChatMessage, CompletionResult, ModelConfig, ToolCall, ToolDecl } from './agent/chat-client.js'
|
|
export { pickModel } from './agent/model-router.js'
|
|
export type { ModelRouter, TaskKind } from './agent/model-router.js'
|
|
export { runAgentTurn } from './agent/agent-loop.js'
|
|
export type { AgentStep, AgentTurn, ToolExecutor } from './agent/agent-loop.js'
|
|
export {
|
|
PROPOSE_CHANGE_TOOL,
|
|
QUERY_PROJECT_TOOL,
|
|
RECORD_DIRECTIVE_TOOL,
|
|
REGINALD_SYSTEM,
|
|
REGINALD_TOOLS,
|
|
} from './agent/agent-tools.js'
|
|
export { buildProjectView } from './agent/query-project.js'
|
|
export type { ProjectSnapshot, ProjectView, QueryFilters } from './agent/query-project.js'
|
|
export { CAPTURE_SYSTEM, captureWork, parseCaptureArgs, PROPOSE_ISSUES_TOOL } from './agent/capture-work.js'
|
|
export type { CaptureProposal, ProposedIssue } from './agent/capture-work.js'
|
|
|
|
export {
|
|
appendDirective,
|
|
makeDirectiveEntry,
|
|
parseDirectiveLog,
|
|
serializeDirective,
|
|
toDirectiveInput,
|
|
} from './directives/record-directive-v0.js'
|
|
export type {
|
|
DirectiveEntry,
|
|
DirectiveInput,
|
|
DirectiveKind,
|
|
DirectiveRecord,
|
|
DirectiveStatus,
|
|
DirectiveTarget,
|
|
} from './directives/record-directive-v0.js'
|