verikun 0.13.0 → 0.14.0

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
@@ -577,6 +577,20 @@ vk tap @tap_to_continue_label_id
577
577
  **Cost:** $0.45 · **Wall time:** ~4 min · **Model:** Claude Sonnet 4.6 with
578
578
  prompt-cache hits (1 M cache-read tokens kept cost low on a long conversation).
579
579
 
580
+ ## Feedback — help improve verikun
581
+
582
+ verikun improves from the rough edges people hit while driving it. When verikun *itself* is
583
+ the friction — a step that heals on every cached replay (an unstable compiled selector,
584
+ often a label-only control with no resource-id), a repair "give-up", or a gotcha in its own
585
+ operation — that's worth an issue at
586
+ [github.com/ddikman/verikun/issues](https://github.com/ddikman/verikun/issues).
587
+
588
+ Driving verikun with an AI agent + the [skill](.claude/skills/verikun/SKILL.md)? It hands
589
+ off to the **`suggest-verikun-improvement`** skill, which drafts a short, TL;DR-first
590
+ suggestion, **reviews it with you before anything is submitted**, and **redacts every
591
+ app-under-test specific** (package, on-screen text, selector values, test prose, logs) so no
592
+ client code or logic can leak.
593
+
580
594
  ## Build from source
581
595
 
582
596
  For local development, or to run an unreleased version, build from a clone:
package/dist/cli.js CHANGED
@@ -1176,6 +1176,7 @@ async function runAiTest(file, opts, backend, platform, device) {
1176
1176
  (0, output_1.err)(`[ai] cost ceiling $${opts.maxCostUsd} reached during compile (${cost.summaryLine()}) — not running`);
1177
1177
  return {
1178
1178
  ok: false,
1179
+ cached,
1179
1180
  costUsd: Number(cost.usd().toFixed(4)),
1180
1181
  costLine: cost.summaryLine(),
1181
1182
  modelRepairs: 0,
@@ -1267,6 +1268,7 @@ async function runAiTest(file, opts, backend, platform, device) {
1267
1268
  (0, output_1.err)(`[ai] estimated total cost: $${cost.usd().toFixed(4)}`);
1268
1269
  return {
1269
1270
  ok: result.ok,
1271
+ cached,
1270
1272
  costUsd: Number(cost.usd().toFixed(4)),
1271
1273
  costLine,
1272
1274
  modelRepairs: result.modelRepairs,
@@ -1308,6 +1310,7 @@ async function cmdAi(positionals, flags) {
1308
1310
  if ((0, args_1.flagBool)(flags, 'json')) {
1309
1311
  (0, output_1.json)({
1310
1312
  ok: result.ok,
1313
+ cached: result.cached,
1311
1314
  model: opts.model,
1312
1315
  cost: result.costLine,
1313
1316
  costUsd: result.costUsd,
package/dist/version.js CHANGED
@@ -3,4 +3,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
4
  // GENERATED by scripts/gen-version.mjs from package.json's "version" at build time
5
5
  // (the `prebuild` script). Do NOT edit by hand; bump package.json instead.
6
- exports.VERSION = '0.13.0';
6
+ exports.VERSION = '0.14.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verikun",
3
- "version": "0.13.0",
3
+ "version": "0.14.0",
4
4
  "description": "Drive Android emulators/devices and iOS simulators for AI agents: tap, type, swipe, screenshot, and inspect the UI hierarchy by semantic identifiers — like Puppeteer for native apps.",
5
5
  "keywords": [
6
6
  "android",