@yegor256/dogent 0.6.1 → 0.6.2

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
@@ -90,6 +90,9 @@ It sends the manifesto together with one instruction per rule,
90
90
  then prints any violation the model reports for ambiguity,
91
91
  weak phrasing, and instructions that only pretend to be commands.
92
92
  The model defaults to `gpt-4o-mini`; override it with `OPENAI_MODEL`.
93
+ After the report, `dogent` prints a one-line usage summary to standard error,
94
+ naming the model, the tokens sent and received, and an estimated cost,
95
+ for example `OpenAI: gpt-4o-mini, 1234 sent, 567 received, ~$0.0005`.
93
96
 
94
97
  ```bash
95
98
  export OPENAI_API_KEY=...
package/package.json CHANGED
@@ -40,5 +40,8 @@
40
40
  "lint": "eslint .",
41
41
  "test": "mocha 'test/**/*.js' --timeout 60000"
42
42
  },
43
- "version": "0.6.1"
43
+ "version": "0.6.2",
44
+ "dependencies": {
45
+ "minimist": "^1.2.8"
46
+ }
44
47
  }
package/src/args.js CHANGED
@@ -5,32 +5,35 @@
5
5
 
6
6
  'use strict';
7
7
 
8
+ const minimist = require('minimist');
9
+
8
10
  /**
9
11
  * Args.
10
12
  *
11
- * The command-line arguments handed to dogent. It splits the raw argv into
12
- * recognized options and the manifesto paths that remain. The `--sarif`
13
- * flag switches the report to SARIF, while `--offline` forbids any talk to
14
- * the LLM even when a token sits in the environment.
13
+ * The command-line arguments handed to dogent. It leans on minimist to split
14
+ * the raw argv into recognized options and the manifesto paths that remain.
15
+ * The `--sarif` flag switches the report to SARIF, while `--offline` forbids
16
+ * any talk to the LLM even when a token sits in the environment. Everything
17
+ * after a `--` separator counts as a path, never as an option.
15
18
  */
16
19
  class Args {
17
- constructor(argv, flags = ['--sarif', '--offline']) {
18
- this.argv = argv;
20
+ constructor(argv, flags = ['sarif', 'offline']) {
19
21
  this.flags = flags;
22
+ this.parsed = minimist(argv, {boolean: flags, '--': true});
20
23
  }
21
24
  sarif() {
22
- return this.argv.includes('--sarif');
25
+ return this.parsed.sarif === true;
23
26
  }
24
27
  offline() {
25
- return this.argv.includes('--offline');
28
+ return this.parsed.offline === true;
26
29
  }
27
30
  paths() {
28
- return this.argv.filter((arg) => !arg.startsWith('-'));
31
+ return this.parsed._.concat(this.parsed['--']).map(String);
29
32
  }
30
33
  unknown() {
31
- return this.argv.filter(
32
- (arg) => arg.startsWith('-') && !this.flags.includes(arg)
33
- );
34
+ return Object.keys(this.parsed)
35
+ .filter((key) => key !== '_' && key !== '--' && !this.flags.includes(key))
36
+ .map((key) => `${key.length === 1 ? '-' : '--'}${key}`);
34
37
  }
35
38
  }
36
39
 
package/src/dogent.js CHANGED
@@ -13,6 +13,7 @@ const Report = require('./report');
13
13
  const Sources = require('./sources');
14
14
  const Openai = require('./openai');
15
15
  const Oracle = require('./oracle');
16
+ const Usage = require('./usage');
16
17
  const rules = require('./rules');
17
18
 
18
19
  const args = new Args(process.argv.slice(2));
@@ -41,27 +42,43 @@ documents.forEach((document) => {
41
42
  });
42
43
  });
43
44
  const key = process.env.OPENAI_API_KEY;
45
+ const audit = async (docs) => {
46
+ const oracle = new Oracle(
47
+ rules(),
48
+ new Openai(
49
+ key,
50
+ process.env.OPENAI_MODEL || 'gpt-4o-mini',
51
+ (url, options) => globalThis.fetch(url, options)
52
+ )
53
+ );
54
+ const replies = await Promise.all(docs.map((doc) => oracle.violations(doc)));
55
+ return replies.reduce(
56
+ (acc, reply) => ({
57
+ extra: acc.extra.concat(reply.found),
58
+ usage: acc.usage.plus(reply.usage)
59
+ }),
60
+ {extra: [], usage: new Usage('', 0, 0)}
61
+ );
62
+ };
63
+ const finish = (usage) => {
64
+ const report = new Report('dogent', found);
65
+ process.stdout.write(`${sarif ? JSON.stringify(report.sarif(), null, 2) : report.text()}\n`);
66
+ if (usage !== null) {
67
+ process.stderr.write(`${usage.text()}\n`);
68
+ }
69
+ process.exit(report.count() > 0 ? 1 : 0);
70
+ };
44
71
  (async () => {
72
+ let usage = null;
45
73
  if (found.length === 0 && key && !args.offline()) {
46
74
  try {
47
- const oracle = new Oracle(
48
- rules(),
49
- new Openai(
50
- key,
51
- process.env.OPENAI_MODEL || 'gpt-4o-mini',
52
- (url, options) => globalThis.fetch(url, options)
53
- )
54
- );
55
- const extra = await Promise.all(
56
- documents.map((document) => oracle.violations(document))
57
- );
58
- extra.forEach((bag) => bag.forEach((violation) => found.push(violation)));
75
+ const result = await audit(documents);
76
+ result.extra.forEach((violation) => found.push(violation));
77
+ ({usage} = result);
59
78
  } catch (error) {
60
79
  process.stderr.write(`AI verification failed: ${error.message}\n`);
61
80
  process.exit(2);
62
81
  }
63
82
  }
64
- const report = new Report('dogent', found);
65
- process.stdout.write(`${sarif ? JSON.stringify(report.sarif(), null, 2) : report.text()}\n`);
66
- process.exit(report.count() > 0 ? 1 : 0);
83
+ finish(usage);
67
84
  })();
package/src/openai.js CHANGED
@@ -5,11 +5,14 @@
5
5
 
6
6
  'use strict';
7
7
 
8
+ const Usage = require('./usage');
9
+
8
10
  /**
9
11
  * Openai.
10
12
  *
11
13
  * A thin adapter over the OpenAI chat-completions endpoint. Sends one
12
- * prompt, demands a JSON object back, and returns the assistant text.
14
+ * prompt, demands a JSON object back, and returns the assistant text
15
+ * paired with a Usage tally of the model and the tokens it consumed.
13
16
  * The transport is injected so the class runs in tests without a socket.
14
17
  */
15
18
  class Openai {
@@ -38,7 +41,16 @@ class Openai {
38
41
  if (!response.ok) {
39
42
  throw new Error(`OpenAI request rejected with status ${response.status}`);
40
43
  }
41
- return (await response.json()).choices[0].message.content;
44
+ const body = await response.json();
45
+ const usage = body.usage || {};
46
+ return {
47
+ content: body.choices[0].message.content,
48
+ usage: new Usage(
49
+ this.model,
50
+ usage.prompt_tokens || 0,
51
+ usage.completion_tokens || 0
52
+ )
53
+ };
42
54
  }
43
55
  }
44
56
 
package/src/oracle.js CHANGED
@@ -13,7 +13,8 @@ const Answer = require('./answer');
13
13
  *
14
14
  * The AI second opinion. Wraps the rules and a chat endpoint, builds one
15
15
  * prompt from a document, asks the endpoint, and parses the reply into
16
- * violations. Mirrors a rule, but consults a model instead of guessing.
16
+ * violations paired with the token usage the model reported. Mirrors a
17
+ * rule, but consults a model instead of guessing.
17
18
  */
18
19
  class Oracle {
19
20
  constructor(rules, chat) {
@@ -21,9 +22,11 @@ class Oracle {
21
22
  this.chat = chat;
22
23
  }
23
24
  async violations(document) {
24
- return new Answer(
25
- await this.chat.answer(new Prompt(this.rules, document).text())
26
- ).violations();
25
+ const reply = await this.chat.answer(new Prompt(this.rules, document).text());
26
+ return {
27
+ found: new Answer(reply.content).violations(),
28
+ usage: reply.usage
29
+ };
27
30
  }
28
31
  }
29
32
 
@@ -13,6 +13,9 @@ const Region = require('../region');
13
13
  *
14
14
  * Demands that every instruction and every heading stay within a
15
15
  * maximum width. Code snippets are exempt, since code is not prose.
16
+ *
17
+ * The check is standalone and deterministic, so prompt() returns an
18
+ * empty string and the AI oracle never re-checks this rule.
16
19
  */
17
20
  class LineLength {
18
21
  constructor(max) {
@@ -20,7 +23,7 @@ class LineLength {
20
23
  this.max = max;
21
24
  }
22
25
  prompt() {
23
- return `${this.id}: flag any instruction too wordy to grasp in a single read`;
26
+ return '';
24
27
  }
25
28
  violations(document) {
26
29
  const uri = document.uri();
package/src/usage.js ADDED
@@ -0,0 +1,52 @@
1
+ /*
2
+ * SPDX-FileCopyrightText: Copyright (c) 2026 Yegor Bugayenko
3
+ * SPDX-License-Identifier: MIT
4
+ */
5
+
6
+ 'use strict';
7
+
8
+ /**
9
+ * Price table.
10
+ *
11
+ * United States dollars per one million tokens, sent and received, for
12
+ * every model dogent knows. An unknown model falls back to zero, so the
13
+ * summary still prints token counts without inventing a price.
14
+ */
15
+ const PRICES = {
16
+ 'gpt-4o-mini': {input: 0.15, output: 0.6},
17
+ 'gpt-4o': {input: 2.5, output: 10},
18
+ 'gpt-4.1-nano': {input: 0.1, output: 0.4},
19
+ 'gpt-4.1-mini': {input: 0.4, output: 1.6},
20
+ 'gpt-4.1': {input: 2, output: 8}
21
+ };
22
+
23
+ /**
24
+ * Usage.
25
+ *
26
+ * One immutable tally of an OpenAI exchange: the model, the tokens sent,
27
+ * and the tokens received. Sums itself with another tally and renders a
28
+ * single human summary line, complete with an estimated dollar cost.
29
+ */
30
+ class Usage {
31
+ constructor(model, sent, received) {
32
+ this.model = model;
33
+ this.sent = sent;
34
+ this.received = received;
35
+ }
36
+ plus(other) {
37
+ return new Usage(
38
+ this.model || other.model,
39
+ this.sent + other.sent,
40
+ this.received + other.received
41
+ );
42
+ }
43
+ cost() {
44
+ const price = PRICES[this.model] || {input: 0, output: 0};
45
+ return this.sent / 1e6 * price.input + this.received / 1e6 * price.output;
46
+ }
47
+ text() {
48
+ return `OpenAI: ${this.model}, ${this.sent} sent, ${this.received} received, ~$${this.cost().toFixed(4)}`;
49
+ }
50
+ }
51
+
52
+ module.exports = Usage;