@fuzzle/opencode-accountant 0.10.6 → 0.10.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -270,6 +270,15 @@ The pipeline automatically manages account declarations:
270
270
 
271
271
  **No manual account setup required.** Account declarations are created proactively before import attempts.
272
272
 
273
+ #### Commodity Declarations
274
+
275
+ For Swissquote investment imports, the pipeline automatically manages commodity declarations:
276
+
277
+ - Collects all stock ticker symbols from trades, dividends, and corporate actions
278
+ - Writes sorted `commodity "SYMBOL"` declarations to `ledger/investments/commodities.journal`
279
+ - Merges with existing declarations (idempotent)
280
+ - Ensures `hledger check --strict` validation passes for quoted commodity symbols
281
+
273
282
  #### Unknown Postings
274
283
 
275
284
  When a transaction doesn't match any `if` pattern in the rules file, hledger assigns it to `income:unknown` or `expenses:unknown` depending on the transaction direction. The pipeline will fail at the validation step, reporting the unknown postings so you can add appropriate rules before retrying.
@@ -164,6 +164,15 @@ The import pipeline automatically:
164
164
  - Prevents `hledger check --strict` failures due to missing account declarations
165
165
  - No manual account setup required
166
166
 
167
+ ### Automatic Commodity Declarations
168
+
169
+ For Swissquote investment imports, the pipeline automatically:
170
+
171
+ - Collects all stock ticker symbols from trades, dividends, and corporate actions
172
+ - Writes sorted `commodity "SYMBOL"` declarations to `ledger/investments/commodities.journal`
173
+ - Merges with existing declarations (idempotent)
174
+ - Prevents `hledger check --strict` failures due to missing commodity declarations
175
+
167
176
  ### Automatic Balance Detection
168
177
 
169
178
  The reconciliation step attempts to extract closing balance from:
package/dist/index.js CHANGED
@@ -4533,7 +4533,7 @@ var init_accountSuggester = __esm(() => {
4533
4533
 
4534
4534
  // src/index.ts
4535
4535
  init_agentLoader();
4536
- import { dirname as dirname6, join as join15 } from "path";
4536
+ import { dirname as dirname7, join as join15 } from "path";
4537
4537
  import { fileURLToPath as fileURLToPath3 } from "url";
4538
4538
 
4539
4539
  // node_modules/zod/v4/classic/external.js
@@ -17051,6 +17051,38 @@ function ensureYearJournalExists(directory, year) {
17051
17051
  }
17052
17052
  return yearJournalPath;
17053
17053
  }
17054
+ function ensureCommodityDeclarations(commodityJournalPath, symbols, logger) {
17055
+ const existing = new Set;
17056
+ if (fs4.existsSync(commodityJournalPath)) {
17057
+ const content2 = fs4.readFileSync(commodityJournalPath, "utf-8");
17058
+ for (const line of content2.split(`
17059
+ `)) {
17060
+ const match = line.trim().match(/^commodity\s+"(.+)"/);
17061
+ if (match) {
17062
+ existing.add(match[1]);
17063
+ }
17064
+ }
17065
+ }
17066
+ const missing = [];
17067
+ for (const symbol2 of symbols) {
17068
+ const upper = symbol2.toUpperCase();
17069
+ if (!existing.has(upper)) {
17070
+ missing.push(upper);
17071
+ existing.add(upper);
17072
+ }
17073
+ }
17074
+ if (missing.length === 0) {
17075
+ return { added: [], updated: false };
17076
+ }
17077
+ const sorted = Array.from(existing).sort((a, b) => a.localeCompare(b));
17078
+ const content = sorted.map((s) => `commodity "${s}"`).join(`
17079
+ `) + `
17080
+ `;
17081
+ ensureDirectory(path3.dirname(commodityJournalPath));
17082
+ fs4.writeFileSync(commodityJournalPath, content);
17083
+ logger?.info(`Commodity declarations: added ${missing.length} (${missing.join(", ")})`);
17084
+ return { added: missing.sort(), updated: true };
17085
+ }
17054
17086
 
17055
17087
  // src/utils/dateUtils.ts
17056
17088
  function formatDateISO(date5) {
@@ -25016,6 +25048,9 @@ function formatDate(dateStr) {
25016
25048
  function escapeDescription(desc) {
25017
25049
  return desc.replace(/[;|]/g, "-").trim();
25018
25050
  }
25051
+ function formatCommodity(symbol2) {
25052
+ return `"${symbol2.toUpperCase()}"`;
25053
+ }
25019
25054
  function formatQuantity(qty) {
25020
25055
  return qty.toFixed(6).replace(/\.?0+$/, "");
25021
25056
  }
@@ -25033,11 +25068,12 @@ function generateBuyEntry(trade, logger) {
25033
25068
  const fees = trade.costs;
25034
25069
  const cashOut = totalCost + fees;
25035
25070
  logger?.debug(`Generating Buy entry: ${qty} ${trade.symbol} @ ${price} ${trade.currency}`);
25071
+ const commodity = formatCommodity(trade.symbol);
25036
25072
  let entry = `${date5} ${description}
25037
25073
  `;
25038
25074
  entry += ` ; swissquote:order:${trade.orderNum} isin:${trade.isin}
25039
25075
  `;
25040
- entry += ` assets:investments:stocks:${trade.symbol} ${qty} @ ${price} ${trade.currency}
25076
+ entry += ` assets:investments:stocks:${trade.symbol} ${qty} ${commodity} @ ${price} ${trade.currency}
25041
25077
  `;
25042
25078
  if (fees > 0) {
25043
25079
  entry += ` expenses:fees:trading:swissquote ${formatAmount2(fees, trade.currency)}
@@ -25057,6 +25093,7 @@ function generateSellEntry(trade, consumed, logger) {
25057
25093
  const cashIn = saleProceeds - fees;
25058
25094
  const gain = calculateCapitalGain(consumed, salePrice, trade.quantity);
25059
25095
  logger?.debug(`Generating Sell entry: ${qty} ${trade.symbol} @ ${salePrice} ${trade.currency}, gain: ${gain.toFixed(2)}`);
25096
+ const commodity = formatCommodity(trade.symbol);
25060
25097
  let entry = `${date5} ${description}
25061
25098
  `;
25062
25099
  entry += ` ; swissquote:order:${trade.orderNum} isin:${trade.isin}
@@ -25067,7 +25104,7 @@ function generateSellEntry(trade, consumed, logger) {
25067
25104
  for (const c of consumed) {
25068
25105
  const lotQty = formatQuantity(c.quantity);
25069
25106
  const lotPrice = formatPrice(c.lot.costBasis);
25070
- entry += ` assets:investments:stocks:${trade.symbol} -${lotQty} @ ${lotPrice} ${trade.currency}
25107
+ entry += ` assets:investments:stocks:${trade.symbol} -${lotQty} ${commodity} @ ${lotPrice} ${trade.currency}
25071
25108
  `;
25072
25109
  }
25073
25110
  entry += ` assets:broker:swissquote:${trade.currency.toLowerCase()} ${formatAmount2(cashIn, trade.currency)}
@@ -25115,13 +25152,14 @@ function generateSplitEntry(action, oldQuantity, newQuantity, logger) {
25115
25152
  `;
25116
25153
  entry += ` ; Ratio: ${ratio.toFixed(4)} (${oldQuantity} -> ${newQuantity})
25117
25154
  `;
25118
- entry += ` assets:investments:stocks:${action.symbol} -${formatQuantity(oldQuantity)}
25155
+ const commodity = formatCommodity(action.symbol);
25156
+ entry += ` assets:investments:stocks:${action.symbol} -${formatQuantity(oldQuantity)} ${commodity}
25119
25157
  `;
25120
- entry += ` equity:conversion ${formatQuantity(oldQuantity)}
25158
+ entry += ` equity:conversion ${formatQuantity(oldQuantity)} ${commodity}
25121
25159
  `;
25122
- entry += ` equity:conversion -${formatQuantity(newQuantity)}
25160
+ entry += ` equity:conversion -${formatQuantity(newQuantity)} ${commodity}
25123
25161
  `;
25124
- entry += ` assets:investments:stocks:${action.symbol} ${formatQuantity(newQuantity)}
25162
+ entry += ` assets:investments:stocks:${action.symbol} ${formatQuantity(newQuantity)} ${commodity}
25125
25163
  `;
25126
25164
  return entry;
25127
25165
  }
@@ -25138,10 +25176,11 @@ function generateWorthlessEntry(action, removedLots, logger) {
25138
25176
  `;
25139
25177
  entry += ` ; Total loss: ${totalCost.toFixed(2)} ${currency}
25140
25178
  `;
25179
+ const commodity = formatCommodity(action.symbol);
25141
25180
  for (const lot of removedLots) {
25142
25181
  const qty = formatQuantity(lot.quantity);
25143
25182
  const price = formatPrice(lot.costBasis);
25144
- entry += ` assets:investments:stocks:${action.symbol} -${qty} @ ${price} ${currency}
25183
+ entry += ` assets:investments:stocks:${action.symbol} -${qty} ${commodity} @ ${price} ${currency}
25145
25184
  `;
25146
25185
  }
25147
25186
  entry += ` expenses:losses:capital ${formatAmount2(totalCost, currency)}
@@ -25166,16 +25205,18 @@ function generateMultiWayMergerEntry(group, crossCurrencyOutgoingSymbols, logger
25166
25205
  }
25167
25206
  for (const out of group.outgoing) {
25168
25207
  const qty = formatQuantity(Math.abs(out.quantity));
25169
- entry += ` assets:investments:stocks:${out.symbol} -${qty}
25208
+ const commodity = formatCommodity(out.symbol);
25209
+ entry += ` assets:investments:stocks:${out.symbol} -${qty} ${commodity}
25170
25210
  `;
25171
- entry += ` equity:conversion ${qty}
25211
+ entry += ` equity:conversion ${qty} ${commodity}
25172
25212
  `;
25173
25213
  }
25174
25214
  for (const inc of group.incoming) {
25175
25215
  const qty = formatQuantity(Math.abs(inc.quantity));
25176
- entry += ` equity:conversion -${qty}
25216
+ const commodity = formatCommodity(inc.symbol);
25217
+ entry += ` equity:conversion -${qty} ${commodity}
25177
25218
  `;
25178
- entry += ` assets:investments:stocks:${inc.symbol} ${qty}
25219
+ entry += ` assets:investments:stocks:${inc.symbol} ${qty} ${commodity}
25179
25220
  `;
25180
25221
  }
25181
25222
  return entry;
@@ -25185,11 +25226,12 @@ function generateRightsDistributionEntry(action, logger) {
25185
25226
  const qty = formatQuantity(Math.abs(action.quantity));
25186
25227
  const description = escapeDescription(`Rights Distribution: ${action.symbol} - ${action.name}`);
25187
25228
  logger?.debug(`Generating Rights Distribution entry: ${qty} ${action.symbol}`);
25229
+ const commodity = formatCommodity(action.symbol);
25188
25230
  let entry = `${date5} ${description}
25189
25231
  `;
25190
25232
  entry += ` ; swissquote:order:${action.orderNum} isin:${action.isin}
25191
25233
  `;
25192
- entry += ` assets:investments:stocks:${action.symbol} ${qty} @ 0.00 CAD
25234
+ entry += ` assets:investments:stocks:${action.symbol} ${qty} ${commodity} @ 0.00 CAD
25193
25235
  `;
25194
25236
  entry += ` income:capital-gains:rights-distribution 0.00 CAD
25195
25237
  `;
@@ -25757,6 +25799,23 @@ async function preprocessSwissquote(csvPath, projectDir, currency, year, lotInve
25757
25799
  logger?.logStep("write-journal", "success", `Created ${path13.basename(journalFile)} with ${journalEntries.length} entries`);
25758
25800
  }
25759
25801
  }
25802
+ const stockSymbols = new Set;
25803
+ for (const trade of trades) {
25804
+ stockSymbols.add(trade.symbol);
25805
+ }
25806
+ for (const dividend of dividends) {
25807
+ stockSymbols.add(dividend.symbol);
25808
+ }
25809
+ for (const action of corporateActions) {
25810
+ stockSymbols.add(action.symbol);
25811
+ if (action.newSymbol) {
25812
+ stockSymbols.add(action.newSymbol);
25813
+ }
25814
+ }
25815
+ if (stockSymbols.size > 0) {
25816
+ const commodityJournalPath = path13.join(projectDir, "ledger", "investments", "commodities.journal");
25817
+ ensureCommodityDeclarations(commodityJournalPath, stockSymbols, logger);
25818
+ }
25760
25819
  logger?.logResult({
25761
25820
  totalRows: stats.totalRows,
25762
25821
  simpleTransactions: stats.simpleTransactions,
@@ -26685,7 +26744,7 @@ to produce equity conversion entries for Bitcoin purchases.
26685
26744
  }
26686
26745
  });
26687
26746
  // src/index.ts
26688
- var __dirname2 = dirname6(fileURLToPath3(import.meta.url));
26747
+ var __dirname2 = dirname7(fileURLToPath3(import.meta.url));
26689
26748
  var AGENT_FILE = join15(__dirname2, "..", "agent", "accountant.md");
26690
26749
  var AccountantPlugin = async () => {
26691
26750
  const agent = loadAgent(AGENT_FILE);
@@ -220,7 +220,8 @@ See [classify-statements](classify-statements.md) for details.
220
220
  - **Rights Distributions**: adds shares at zero cost basis
221
221
  - **Cross-currency mergers**: saves outgoing side to pending state, loads when incoming side is processed
222
222
  8. Generates per-year investment journal entries (`ledger/investments/{year}-{currency}.journal`) based on the CSV filename's date range
223
- 9. Outputs filtered CSV (simple transactions only) for hledger rules import
223
+ 9. Collects all stock ticker symbols and writes commodity declarations to `ledger/investments/commodities.journal` (merged with existing, sorted, idempotent)
224
+ 10. Outputs filtered CSV (simple transactions only) for hledger rules import
224
225
 
225
226
  **Symbol Map**: Maps Swissquote's internal symbol names (e.g., `GOLD ROYALTY RG`, `VIZSLA WT 12.25`) to canonical ticker symbols (e.g., `GROY`, `VROY-WT`). Applied before any processing, so journal entries, lot inventory filenames, and account names all use the mapped symbols. See [Symbol Map Configuration](../configuration/symbol-map.md).
226
227
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fuzzle/opencode-accountant",
3
- "version": "0.10.6",
3
+ "version": "0.10.7",
4
4
  "description": "An OpenCode accounting agent, specialized in double-entry-bookkepping with hledger",
5
5
  "author": {
6
6
  "name": "ali bengali",