Files
sure/app/models/assistant/function/record_valuation.rb
Claude ec38a89d0c Expose the Statement Vault to external agents over MCP
A user wants to manage patrimonial history — a document-backed record of a
family's wealth where every figure traces back to the statement it came from —
by pointing an external agent harness at Sure. That model belongs in the
harness, not in Sure: it needs numbered build deltas, golden tests and closed
periods that a mutable Postgres row cannot provide.

What Sure was missing was the seam. The Statement Vault already does most of
the work — original bytes retained, SHA-256 dedup, period detection, account
matching with a confidence score, reconciliation against ledger balances, and a
month-by-month coverage map — but it is reachable only from the web UI. An
agent could not archive a document, cite one, or check for gaps.

Adds five preview MCP tools over what already exists, plus a citation grammar
for values the agent writes:

- upload_account_statement, list_account_statements, get_account_statement,
  get_statement_coverage
- record_valuation, whose source citation is parsed rather than trusted:
  ["estimated: "] citation [" (grade: A|B|C)"]. An uncited or free-styled
  value is rejected at the write boundary instead of landing in the ledger
  looking authoritative.

link and reject are deliberately not exposed. Attaching a statement to an
account is the human's decision, and the vault UI is where it is made; the
agent reports the suggested match and stops there.

Assistant.function_classes now takes a user so preview tools stay out of the
default surface. They are hidden from tools/list and not callable by name
without the preference enabled, and the vault tools re-check the manager role
and per-account permissions, since MCP calls never pass through a controller.

Docs: the blueprint this implements, and a guide covering which side owns which
layer, the vocabulary map between the two, the monthly runbook, and the gaps
(non-user holders, non-statement documents, one value per date).

No migrations, no API endpoints, no UI.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01JFDp9HhXDeswadu4cxFojn
2026-08-01 00:00:12 -07:00

160 lines
5.1 KiB
Ruby

# frozen_string_literal: true
class Assistant::Function::RecordValuation < Assistant::Function
class << self
def name
"record_valuation"
end
def description
<<~INSTRUCTIONS
Record the value of an account on a given date, with a citation for where
the number came from.
Use this for holdings the app cannot value on its own property,
off-bank positions, private company stakes, collectibles and to correct
a manual account's balance from a primary-source document.
The `source` citation is required and is checked against this grammar:
["estimated: "] citation [" (grade: A|B|C)"]
- `estimated: ` prefix — the value was interpolated or proxied, not read
off a document. Estimates must carry a grade.
- grade `A` — an official document for that exact date (statement, filed
return, capital account); `B` — derived with a document; `C` — a proxy
or assumption, i.e. a standing TODO to re-derive from the real source.
Examples of valid citations:
"Private bank statement 2026-03-31, securities subtotal (grade: A)"
"estimated: linear interpolation over 2024-08 / 2024-12 anchors (grade: C)"
If you do not have a document to cite, do not invent one and do not call
this function — ask the user for the source. A value with no provenance
is worse than a missing value, because it looks authoritative.
Recording a valuation on a date that already has one replaces it.
Example:
```
record_valuation({
account_id: "abc123-def456",
date: "2026-03-31",
amount: 412500.00,
source: "Appraisal report 2026-03-12 by {firm} (grade: A)"
})
```
INSTRUCTIONS
end
end
def strict_mode?
false
end
def params_schema
build_schema(
required: %w[account_id date amount source],
properties: {
account_id: {
type: "string",
description: "UUID of the account to value. The user must have write access to it."
},
date: {
type: "string",
description: "ISO 8601 date (YYYY-MM-DD) the value applies to. For a period-end value, use the last day of the period."
},
amount: {
type: "number",
description: "The account's value on that date, in the account's own currency."
},
source: {
type: "string",
description: "Required citation naming the document this value came from, in the grammar: [\"estimated: \"] citation [\" (grade: A|B|C)\"]."
}
}
)
end
def call(params = {})
citation = Provenance::Citation.parse!(params["source"])
date = parse_date(params["date"])
return error("invalid_date", "date must be an ISO 8601 date (YYYY-MM-DD).") unless date
amount = parse_decimal(params["amount"])
return error("invalid_amount", "amount must be a number.") if amount.nil?
account_id = params["account_id"].to_s
return error("invalid_account_id", "account_id must be a UUID.") unless valid_uuid?(account_id)
account = family.accounts.writable_by(user).find_by(id: account_id)
return error("account_not_found", "No account found with that ID that this user can write to.") unless account
entry = nil
replaced_existing = false
failure_message = nil
ActiveRecord::Base.transaction do
account.lock!
replaced_existing = account.entries.valuations.exists?(date: date)
result = account.create_reconciliation(balance: amount, date: date)
unless result.success?
failure_message = result.error_message
raise ActiveRecord::Rollback
end
entry = account.entries.valuations.find_by!(date: date)
entry.update!(notes: citation.to_s)
end
unless entry
return error("valuation_failed", failure_message.presence || "The valuation could not be recorded.")
end
{
success: true,
entry_id: entry.id,
account: { id: account.id, name: account.name, currency: account.currency },
date: date.iso8601,
amount: entry.amount.to_s,
amount_formatted: entry.amount_money.format,
replaced_existing: replaced_existing,
provenance: citation.to_h,
message: "Recorded #{entry.amount_money.format} for #{account.name} on #{date.iso8601}, cited as: #{citation}."
}
rescue Provenance::Citation::InvalidError => e
error(
"invalid_source_citation",
"#{e.message}. Every recorded value must cite its source, in the grammar: #{Provenance::Citation.grammar}."
)
rescue ActiveRecord::RecordInvalid => e
error("validation_failed", e.record.errors.full_messages.join("; "))
end
private
def parse_date(value)
return nil if value.blank?
Date.iso8601(value.to_s)
rescue Date::Error
nil
end
def parse_decimal(value)
return nil if value.nil? || value.to_s.strip.empty?
BigDecimal(value.to_s)
rescue ArgumentError, TypeError
nil
end
def error(key, message, extras = {})
{ success: false, error: key, message: message }.merge(extras)
end
end