@novedu/cli 0.25.0 → 0.25.1

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.
Files changed (2) hide show
  1. package/dist/main.js +3 -3
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -4413,15 +4413,15 @@ function formatWritingResult(result, source) {
4413
4413
  }
4414
4414
  /**
4415
4415
  * Renderer for a coding-activity check (`--kind coding`). Coding is ALWAYS anonymous
4416
- * (the API path carries no per-student identity), so — unlike quiz/writing — that is
4417
- * shown as a fixed note, not a per-file value.
4416
+ * (there are no in-app conversations to attribute), so — unlike quiz/writing — that
4417
+ * is shown as a fixed note, not a per-file value.
4418
4418
  */
4419
4419
  function formatCodingResult(result, source) {
4420
4420
  if (!result.ok) return renderFailureAndWarnings(result, "coding activity", source);
4421
4421
  const lines = [green(`✔ Valid coding activity`) + dim(` — ${source}`)];
4422
4422
  lines.push(` id: ${result.codingId}`);
4423
4423
  lines.push(` model: ${result.model}`);
4424
- lines.push(` anonymous: true ${dim("(always — the API path carries no identity)")}`);
4424
+ lines.push(` anonymous: true ${dim("(always — no conversations are stored)")}`);
4425
4425
  if (result.warnings.length) {
4426
4426
  lines.push("");
4427
4427
  lines.push(yellow(`${result.warnings.length} warning(s):`));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@novedu/cli",
3
- "version": "0.25.0",
3
+ "version": "0.25.1",
4
4
  "description": "Command-line companion for the Novedu chat app. Validates tutor, fragment, quiz, writing, coding and eval YAML definitions, dumps the exact LLM prompts an activity produces, evaluates a quiz's grading rubric against golden answers and replays scripted conversations against a tutor; signs in with Entra ID and manages codes, app-hosted files and images over the app's API.",
5
5
  "type": "module",
6
6
  "repository": {