saffron-ai 0.5.1 → 0.5.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/CHANGELOG.md CHANGED
@@ -4,6 +4,35 @@ All notable changes to Saffron, in one place: the `saffron-ai` runner (npm),
4
4
  the VS Code extension (`ChathurangaJayasinghe.saffron-vscode`) and the
5
5
  JetBrains plugin (`ai.saffron.jetbrains`). Dates are publish dates.
6
6
 
7
+ ## 0.5.2
8
+
9
+ Released 2026-09-15.
10
+
11
+ Runner
12
+
13
+ - Scenario Outlines record correctly: an assertion recorded from the page's
14
+ longer sentence now becomes the `<placeholder>` outright when it contains
15
+ the row's value (substring replacement used to leave a residue that no
16
+ other row could satisfy), and rows after the first replay the pending
17
+ proposal at zero AI instead of recording again and overwriting it. When
18
+ the proposal does not fit a row, the run is red with a clear message
19
+ rather than silently replacing another row's recording.
20
+ - The agent is told to record a Then step's quoted text exactly as
21
+ expected text, never the page's longer sentence.
22
+ - A Given step or StepSet guard that describes a state the page is already
23
+ in is no longer reported as an adaptation. The saucedemo example's
24
+ checkout set used to show a warning on its first recording for this.
25
+ - Yellow scenarios are labelled "pending review" in the run summary and the
26
+ HTML report instead of "adapted", since a proposal is not necessarily an
27
+ adaptation.
28
+
29
+ Editors
30
+
31
+ - `{env:VAR}` tokens are navigable: Ctrl/Cmd+click (go to definition)
32
+ opens the variable in `.env`, or `.env.example` when no `.env` exists;
33
+ hover says where it is defined and never shows the value. In the VS
34
+ Code extension and in `saffron lsp` for JetBrains and other editors.
35
+
7
36
  ## 0.5.1
8
37
 
9
38
  Released 2026-09-14.
package/dist-pkg/cli.js CHANGED
@@ -1,121 +1,125 @@
1
1
  #!/usr/bin/env node
2
- import I from"node:fs";import T from"node:path";import{spawn as ts}from"node:child_process";import ns from"node:readline";import{Command as rs}from"commander";import Un from"node:fs";import Bn from"node:path";import{AstBuilder as Vn,GherkinClassicTokenMatcher as zn,Parser as qn}from"@cucumber/gherkin";import{IdGenerator as Wn,StepKeywordType as Me}from"@cucumber/messages";function q(t,e){return t.replace(/<([^<>]+)>/g,(n,r)=>r in e?e[r]:n)}function L(t){if(!t||t.length===0)return{};let e={};if(t.every(n=>n.length===2)){for(let[n,r]of t)e[`table:${n}`]=r;return e}if(t.length>=2){let[n,...r]=t;if(n.some(s=>!s))return{};r.forEach((s,o)=>{n.forEach((i,a)=>{s[a]!==void 0&&(e[`table:${o+1}:${i}`]=s[a])})})}return e}function W(t){return t!==void 0?{docstring:t}:{}}function K(t){let e=new Map;for(let r of t){let s={...L(r.resolvedTable??r.table),...W(r.resolvedDocString??r.docString)};for(let[o,i]of Object.entries(s)){let a=e.get(o);a||e.set(o,a=new Set),a.add(i)}}let n={};for(let[r,s]of e)s.size===1&&(n[r]=[...s][0]);return n}import De from"node:fs";import at from"node:path";import{AstBuilder as jn,GherkinClassicTokenMatcher as In,Parser as _n}from"@cucumber/gherkin";import{IdGenerator as Dn}from"@cucumber/messages";var M=class extends Error{},On=/^(\s*)StepSet:\s*(.+?)\s*$/,Mn=/^(\s*)StepSet\s+([^\s:].*?)\s*$/;function Oe(t){let e=t.split(`
3
- `),n=new Map,r=new Map;return{source:e.map((o,i)=>{let a=o.match(On);if(a)return n.set(i+1,a[2]),`${a[1]}Scenario: ${a[2]}`;let d=o.match(Mn);return d?(r.set(i+1,d[2]),`${d[1]}* StepSet ${d[2]}`):o}).join(`
4
- `),definitions:n,invocations:r}}function Ln(t){return new _n(new jn(Dn.uuid()),new In).parse(t)}function ct(t,e){for(let n of t)n.scenario?e(n.scenario):"rule"in n&&n.rule&&ct(n.rule.children,e)}function X(t,e){let n=new Map;for(let r of t){let s=at.relative(e,r),o=Oe(De.readFileSync(r,"utf8"));if(o.definitions.size===0)continue;let i=Ln(o.source);i.feature&&ct(i.feature.children,a=>{let d=o.definitions.get(a.location.line);if(d===void 0)return;let p=n.get(d);if(p)throw new M(`StepSet "${d}" is defined twice: ${p.file}:${p.line} and ${s}:${a.location.line}. Set names are unique across the project. If line ${a.location.line} was meant to INVOKE the set inside a scenario, remove the colon: "StepSet ${d}".`);if(a.examples.length>0)throw new M(`StepSet "${d}" (${s}:${a.location.line}) has an Examples table \u2014 step sets take their values from the invoking scenario.`);for(let m of a.steps)if(o.invocations.has(m.location.line))throw new M(`StepSet "${d}" (${s}:${a.location.line}) invokes another step set at line ${m.location.line} \u2014 step sets cannot be nested.`);n.set(d,{name:d,file:s,line:a.location.line,steps:[...a.steps]})})}return n}var Nn=[".feature",".saffron"];function se(t){return Nn.some(e=>t.endsWith(e))}function ue(t){if(!De.existsSync(t))return[];let e=[];for(let n of De.readdirSync(t,{recursive:!0})){let r=String(n);r.endsWith(".saffron")&&e.push(at.join(t,r))}return e.sort()}function lt(t,e,n){return t.map(({step:r,source:s})=>{let o;switch(r.keywordType){case Me.OUTCOME:o="assertion";break;case Me.CONTEXT:case Me.ACTION:o="action";break;default:o=n.value}n.value=o;let i=r.dataTable?r.dataTable.rows.map(d=>d.cells.map(p=>p.value)):void 0,a=r.docString?.content;return{keyword:r.keyword.trim(),kind:o,text:r.text,resolvedText:q(r.text,e),table:i,resolvedTable:i?.map(d=>d.map(p=>q(p,e))),docString:a,resolvedDocString:a!==void 0?q(a,e):void 0,source:s}})}function dt(t,e,n,r,s){let o=[];for(let i of t){let a=r.get(i.location.line);if(a===void 0){o.push({step:i,source:{file:e,line:i.location.line,fromBackground:n}});continue}let d=s?.get(a);if(!d)throw new M(`${e}:${i.location.line} invokes StepSet "${a}", which is not defined anywhere in the project.`);for(let p of d.steps)o.push({step:p,source:{file:d.file,line:p.location.line,fromStepSet:d.name,fromBackground:n}})}return o}function Hn(t,e,n,r,s){let o=t.tags.map(a=>a.name),i=[];if(t.examples.length===0)i.push({params:{},label:""});else{let a=0;for(let d of t.examples){let p=d.tableHeader?.cells.map(m=>m.value)??[];for(let m of d.tableBody){a+=1;let l={};m.cells.forEach((c,g)=>{l[p[g]]=c.value}),i.push({params:l,label:` (example ${a})`})}}}return i.map(({params:a,label:d})=>{let p={value:"action"};return{featurePath:e,featureName:n,name:t.name,displayName:`${t.name}${d}`,tags:o,steps:[...lt(r,a,p),...lt(s,a,p)],params:a}})}function Z(t,e,n){let r=Un.readFileSync(t,"utf8"),o=t.endsWith(".saffron")?Oe(r):{source:r,definitions:new Map,invocations:new Map},a=new qn(new Vn(Wn.uuid()),new zn).parse(o.source);if(!a.feature)return[];let d=Bn.relative(e,t),p=a.feature.name,m=[],l=(c,g)=>{let h=g;for(let u of c)if(u.background)h=[...g,...dt(u.background.steps,d,!0,o.invocations,n)];else if(u.scenario){if(o.definitions.has(u.scenario.location.line))continue;m.push(...Hn(u.scenario,d,p,h,dt(u.scenario.steps,d,!1,o.invocations,n)))}else"rule"in u&&u.rule&&l(u.rule.children,h)};return l(a.feature.children,[]),m}import xt from"node:fs";import Le from"node:path";import ft from"node:fs";import gt from"node:path";import fe from"node:fs";import oe from"node:path";var pt=".saffron";function ge(t){return t.toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,"")||"unnamed"}function z(t,e,n){let r=ge(oe.basename(e,".feature"));return oe.join(t,pt,"cache",r,`${ge(n)}.json`)}function ut(t,e,n){let r=ge(oe.basename(e,".feature"));return oe.join(t,pt,"proposals",r,`${ge(n)}.json`)}function U(t){if(!fe.existsSync(t))return;let e=JSON.parse(fe.readFileSync(t,"utf8"));if(e.version!==1)throw new Error(`Unsupported cache version ${e.version} in ${t}`);return e}function ee(t,e){fe.mkdirSync(oe.dirname(t),{recursive:!0}),fe.writeFileSync(t,`${JSON.stringify(e,null,2)}
5
- `)}function ht(t){let e=[];return{pattern:t.replace(/"((?:[^"\\]|\\.)*)"/g,(r,s)=>(e.push(s),`"\xAB${e.length-1}\xBB"`)),args:e}}function Gn(t,e){let n=r=>JSON.stringify(r.map(({pageFingerprint:s,...o})=>o));return n(t)===n(e)}function Yn(t){let e=new Set,n=r=>{if(r)for(let s of r.matchAll(/<([^<>]+)>/g))e.add(s[1])};for(let r of t.actions)n(r.value),n(r.url),n(r.pattern),n(r.target?.name),n(r.target?.nameRegex),n(r.target?.label),n(r.target?.text),n(r.target?.placeholder);return n(t.gherkin),e}function H(t){let e=gt.join(t,".saffron","cache"),n=new Map,r=new Map,s=0;if(ft.existsSync(e))for(let a of ft.readdirSync(e,{recursive:!0})){let d=String(a);if(!d.endsWith(".json"))continue;let p=U(gt.join(e,d));if(p){s++;for(let m of p.steps){let l=m.gherkin,c=JSON.stringify(m.actions.map(({pageFingerprint:u,...f})=>f)),g=r.get(l)??[];g.includes(c)||(g.push(c),r.set(l,g));let h=n.get(l);!h||p.recordedAt>h.recordedAt?n.set(l,{gherkin:m.gherkin,table:m.table,docString:m.docString,actions:m.actions,feature:p.feature,scenario:p.scenario,recordedAt:p.recordedAt,variants:g.length}):h.variants=g.length}}}let o=[...r.entries()].filter(([,a])=>a.length>1).map(([a])=>a),i=new Map;for(let a of n.values()){let{pattern:d,args:p}=ht(a.gherkin);if(p.length===0)continue;let m=i.get(d);(!m||a.recordedAt>m.recordedAt)&&i.set(d,{...a,args:p})}return{steps:n,patterns:i,divergent:o,scannedCaches:s}}function mt(t,e,n){if(!!t.table!=!!e.table)return!1;if(t.table&&e.table){let o=Object.keys(L(t.table)),i=Object.keys(L(e.table));if(o.length>0&&i.length>0){if(JSON.stringify(o)!==JSON.stringify(i))return!1}else if(JSON.stringify(t.table)!==JSON.stringify(e.table))return!1}if(t.docString!==void 0!=(e.docString!==void 0)||t.docString!==void 0&&e.docString!==void 0&&t.docString!==e.docString&&!t.actions.some(o=>[o.value,o.url,o.pattern].some(i=>i?.includes("<docstring>"))))return!1;let r={...n,...L(e.resolvedTable??e.table),...W(e.resolvedDocString??e.docString)},s=Yn({gherkin:t.gherkin,keyword:"",kind:"action",actions:t.actions});for(let o of s)if(!(o in r))return!1;return!0}function yt(t,e,n){let r=t.steps.get(e.text);if(r)return mt(r,e,n)?r:void 0;let{pattern:s,args:o}=ht(e.text);if(o.length===0)return;let i=t.patterns.get(s);if(!i)return;let a=new Map;for(let l=0;l<o.length;l++){let c=i.args[l],g=o[l];if(c===g)continue;let h=a.get(c);if(h!==void 0&&h!==g)return;a.set(c,g)}let d=l=>[l?.name,l?.nameRegex,l?.label,l?.text,l?.placeholder];for(let l of a.keys())if(!i.actions.some(g=>[g.value,g.url,g.pattern,...d(g.target)].includes(l)))return;let p=l=>l!==void 0&&a.has(l)?a.get(l):l,m={...i,gherkin:e.text,actions:i.actions.map(({pageFingerprint:l,...c})=>({...c,value:p(c.value),url:p(c.url),pattern:p(c.pattern),target:c.target?{...c.target,name:p(c.target.name),nameRegex:p(c.target.nameRegex),label:p(c.target.label),text:p(c.target.text),placeholder:p(c.target.placeholder)}:void 0}))};return mt(m,e,n)?m:void 0}function St(t,e){let n=[];return t.forEach((r,s)=>{if(r.actions.length!==0&&!e.steps.has(r.gherkin)){for(let o of e.steps.values())if(!(o.variants>1)&&o.actions.length!==0&&Gn(r.actions,o.actions)){n.push({index:s,from:r.gherkin,to:o.gherkin,feature:o.feature,scenario:o.scenario});break}}}),n}function Jn(t){if(!xt.existsSync(t))return[];let e=[];for(let n of xt.readdirSync(t,{recursive:!0})){let r=String(n);se(r)&&e.push(Le.join(t,r))}return e.sort()}function G(t,e,n){let r=Le.isAbsolute(e)?e:Le.join(t,e),s=Jn(r),o=n??X(s.filter(c=>c.endsWith(".saffron")),t),i=new Map,a=new Map;for(let c of s)for(let g of Z(c,t,o)){let h=`${g.featurePath}::${g.name}`;for(let u of g.steps){let f=i.get(u.text);if(f||(f={text:u.text,keywords:new Map,kind:u.kind,scenarios:new Set,files:new Set,fromStepSet:u.source?.fromStepSet},i.set(u.text,f)),f.keywords.set(u.keyword,(f.keywords.get(u.keyword)??0)+1),f.scenarios.add(h),u.source&&f.files.add(u.source.file),u.source?.fromStepSet){let y=a.get(u.source.fromStepSet);y||a.set(u.source.fromStepSet,y=new Set),y.add(h)}}}let d=H(t),p=new Set(d.divergent),m=[...i.values()].map(c=>({text:c.text,keyword:[...c.keywords.entries()].sort((g,h)=>h[1]-g[1])[0][0],kind:c.kind,status:p.has(c.text)?"divergent":d.steps.has(c.text)?"recorded":"unrecorded",usage:c.scenarios.size,files:[...c.files].sort(),fromStepSet:c.fromStepSet})).sort((c,g)=>g.usage-c.usage||c.text.localeCompare(g.text)),l=[...o.values()].map(c=>({name:c.name,file:c.file,line:c.line,steps:c.steps.map(g=>g.text),usage:a.get(c.name)?.size??0})).sort((c,g)=>g.usage-c.usage||c.name.localeCompare(g.name));return{steps:m,stepSets:l,scannedFiles:s.length,scannedCaches:d.scannedCaches}}function me(t,e){let n=e.toLowerCase();return{...t,steps:t.steps.filter(r=>r.text.toLowerCase().includes(n)),stepSets:t.stepSets.filter(r=>r.name.toLowerCase().includes(n)||r.steps.some(s=>s.toLowerCase().includes(n)))}}function bt(t){let e={},n="saffron,feature,gherkin,cucumber";for(let r of t.steps)e[`step: ${r.text}`]={scope:n,prefix:r.text,body:[r.text.replace(/\$/g,"\\$")],description:`${r.status} \xB7 used in ${r.usage} scenario(s)`};for(let r of t.stepSets)e[`StepSet: ${r.name}`]={scope:n,prefix:`StepSet ${r.name}`,body:[`StepSet ${r.name}`],description:`step set (${r.steps.length} steps) \u2014 ${r.file}`};return JSON.stringify(e,null,2)+`
6
- `}import{Server as Qn}from"@modelcontextprotocol/sdk/server/index.js";import{StdioServerTransport as Kn}from"@modelcontextprotocol/sdk/server/stdio.js";import{CallToolRequestSchema as Xn,ListToolsRequestSchema as Zn}from"@modelcontextprotocol/sdk/types.js";async function vt(t,e){let n=new Qn({name:"saffron",version:"0.1.0"},{capabilities:{tools:{}}});n.setRequestHandler(Zn,async()=>({tools:[{name:"search_steps",description:"Search the project's step vocabulary. Returns known Gherkin steps with status (recorded = replays at zero tokens, divergent, unrecorded), usage counts, and source files. ALWAYS reuse an existing wording exactly instead of inventing a near-duplicate \u2014 exact step text is the replay-cache identity, so a new wording costs a fresh AI recording.",inputSchema:{type:"object",properties:{query:{type:"string",description:"Case-insensitive substring filter over step text; omit to list everything."}}}},{name:"list_step_sets",description:"List the project's StepSet definitions (named reusable step sequences from .saffron files) with their steps, defining file, and usage. Invoke one inside a scenario with a line reading exactly: StepSet <name>",inputSchema:{type:"object",properties:{}}}]})),n.setRequestHandler(Xn,async r=>{let s=G(t,e);if(r.params.name==="search_steps"){let o=r.params.arguments?.query,i=o?me(s,o):s;return{content:[{type:"text",text:JSON.stringify({steps:i.steps,scannedFiles:i.scannedFiles,scannedCaches:i.scannedCaches},null,2)}]}}return r.params.name==="list_step_sets"?{content:[{type:"text",text:JSON.stringify({stepSets:s.stepSets},null,2)}]}:{content:[{type:"text",text:`Unknown tool: ${r.params.name}`}],isError:!0}}),await n.connect(new Kn)}import{query as er}from"@anthropic-ai/claude-agent-sdk";function tr(t,e){let n=e.steps.map(s=>`- [${s.status}] ${s.keyword} ${s.text}`).join(`
2
+ import _ from"node:fs";import T from"node:path";import{spawn as os}from"node:child_process";import is from"node:readline";import{Command as as}from"commander";import Wn from"node:fs";import Hn from"node:path";import{AstBuilder as Gn,GherkinClassicTokenMatcher as Yn,Parser as Jn}from"@cucumber/gherkin";import{IdGenerator as Kn,StepKeywordType as Me}from"@cucumber/messages";function q(t,e){return t.replace(/<([^<>]+)>/g,(n,r)=>r in e?e[r]:n)}function L(t){if(!t||t.length===0)return{};let e={};if(t.every(n=>n.length===2)){for(let[n,r]of t)e[`table:${n}`]=r;return e}if(t.length>=2){let[n,...r]=t;if(n.some(s=>!s))return{};r.forEach((s,i)=>{n.forEach((o,a)=>{s[a]!==void 0&&(e[`table:${i+1}:${o}`]=s[a])})})}return e}function W(t){return t!==void 0?{docstring:t}:{}}function Q(t){let e=new Map;for(let r of t){let s={...L(r.resolvedTable??r.table),...W(r.resolvedDocString??r.docString)};for(let[i,o]of Object.entries(s)){let a=e.get(i);a||e.set(i,a=new Set),a.add(o)}}let n={};for(let[r,s]of e)s.size===1&&(n[r]=[...s][0]);return n}import Oe from"node:fs";import ct from"node:path";import{AstBuilder as Mn,GherkinClassicTokenMatcher as Ln,Parser as Nn}from"@cucumber/gherkin";import{IdGenerator as Un}from"@cucumber/messages";var M=class extends Error{},Vn=/^(\s*)StepSet:\s*(.+?)\s*$/,zn=/^(\s*)StepSet\s+([^\s:].*?)\s*$/;function De(t){let e=t.split(`
3
+ `),n=new Map,r=new Map;return{source:e.map((i,o)=>{let a=i.match(Vn);if(a)return n.set(o+1,a[2]),`${a[1]}Scenario: ${a[2]}`;let d=i.match(zn);return d?(r.set(o+1,d[2]),`${d[1]}* StepSet ${d[2]}`):i}).join(`
4
+ `),definitions:n,invocations:r}}function Bn(t){return new Nn(new Mn(Un.uuid()),new Ln).parse(t)}function lt(t,e){for(let n of t)n.scenario?e(n.scenario):"rule"in n&&n.rule&&lt(n.rule.children,e)}function X(t,e){let n=new Map;for(let r of t){let s=ct.relative(e,r),i=De(Oe.readFileSync(r,"utf8"));if(i.definitions.size===0)continue;let o=Bn(i.source);o.feature&&lt(o.feature.children,a=>{let d=i.definitions.get(a.location.line);if(d===void 0)return;let p=n.get(d);if(p)throw new M(`StepSet "${d}" is defined twice: ${p.file}:${p.line} and ${s}:${a.location.line}. Set names are unique across the project. If line ${a.location.line} was meant to INVOKE the set inside a scenario, remove the colon: "StepSet ${d}".`);if(a.examples.length>0)throw new M(`StepSet "${d}" (${s}:${a.location.line}) has an Examples table \u2014 step sets take their values from the invoking scenario.`);for(let m of a.steps)if(i.invocations.has(m.location.line))throw new M(`StepSet "${d}" (${s}:${a.location.line}) invokes another step set at line ${m.location.line} \u2014 step sets cannot be nested.`);n.set(d,{name:d,file:s,line:a.location.line,steps:[...a.steps]})})}return n}var qn=[".feature",".saffron"];function ae(t){return qn.some(e=>t.endsWith(e))}function he(t){if(!Oe.existsSync(t))return[];let e=[];for(let n of Oe.readdirSync(t,{recursive:!0})){let r=String(n);r.endsWith(".saffron")&&e.push(ct.join(t,r))}return e.sort()}function dt(t,e,n){return t.map(({step:r,source:s})=>{let i;switch(r.keywordType){case Me.OUTCOME:i="assertion";break;case Me.CONTEXT:case Me.ACTION:i="action";break;default:i=n.value}n.value=i;let o=r.dataTable?r.dataTable.rows.map(d=>d.cells.map(p=>p.value)):void 0,a=r.docString?.content;return{keyword:r.keyword.trim(),kind:i,text:r.text,resolvedText:q(r.text,e),table:o,resolvedTable:o?.map(d=>d.map(p=>q(p,e))),docString:a,resolvedDocString:a!==void 0?q(a,e):void 0,source:s}})}function pt(t,e,n,r,s){let i=[];for(let o of t){let a=r.get(o.location.line);if(a===void 0){i.push({step:o,source:{file:e,line:o.location.line,fromBackground:n}});continue}let d=s?.get(a);if(!d)throw new M(`${e}:${o.location.line} invokes StepSet "${a}", which is not defined anywhere in the project.`);for(let p of d.steps)i.push({step:p,source:{file:d.file,line:p.location.line,fromStepSet:d.name,fromBackground:n}})}return i}function Qn(t,e,n,r,s){let i=t.tags.map(a=>a.name),o=[];if(t.examples.length===0)o.push({params:{},label:""});else{let a=0;for(let d of t.examples){let p=d.tableHeader?.cells.map(m=>m.value)??[];for(let m of d.tableBody){a+=1;let c={};m.cells.forEach((l,u)=>{c[p[u]]=l.value}),o.push({params:c,label:` (example ${a})`})}}}return o.map(({params:a,label:d})=>{let p={value:"action"};return{featurePath:e,featureName:n,name:t.name,displayName:`${t.name}${d}`,tags:i,steps:[...dt(r,a,p),...dt(s,a,p)],params:a}})}function Z(t,e,n){let r=Wn.readFileSync(t,"utf8"),i=t.endsWith(".saffron")?De(r):{source:r,definitions:new Map,invocations:new Map},a=new Jn(new Gn(Kn.uuid()),new Yn).parse(i.source);if(!a.feature)return[];let d=Hn.relative(e,t),p=a.feature.name,m=[],c=(l,u)=>{let h=u;for(let g of l)if(g.background)h=[...u,...pt(g.background.steps,d,!0,i.invocations,n)];else if(g.scenario){if(i.definitions.has(g.scenario.location.line))continue;m.push(...Qn(g.scenario,d,p,h,pt(g.scenario.steps,d,!1,i.invocations,n)))}else"rule"in g&&g.rule&&c(g.rule.children,h)};return c(a.feature.children,[]),m}import St from"node:fs";import Ne from"node:path";import ft from"node:fs";import gt from"node:path";import ye from"node:fs";import ce from"node:path";var ut=".saffron";function xe(t){return t.toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,"")||"unnamed"}function B(t,e,n){let r=xe(ce.basename(e,".feature"));return ce.join(t,ut,"cache",r,`${xe(n)}.json`)}function Le(t,e,n){let r=xe(ce.basename(e,".feature"));return ce.join(t,ut,"proposals",r,`${xe(n)}.json`)}function U(t){if(!ye.existsSync(t))return;let e=JSON.parse(ye.readFileSync(t,"utf8"));if(e.version!==1)throw new Error(`Unsupported cache version ${e.version} in ${t}`);return e}function ee(t,e){ye.mkdirSync(ce.dirname(t),{recursive:!0}),ye.writeFileSync(t,`${JSON.stringify(e,null,2)}
5
+ `)}function ht(t){let e=[];return{pattern:t.replace(/"((?:[^"\\]|\\.)*)"/g,(r,s)=>(e.push(s),`"\xAB${e.length-1}\xBB"`)),args:e}}function Xn(t,e){let n=r=>JSON.stringify(r.map(({pageFingerprint:s,...i})=>i));return n(t)===n(e)}function Zn(t){let e=new Set,n=r=>{if(r)for(let s of r.matchAll(/<([^<>]+)>/g))e.add(s[1])};for(let r of t.actions)n(r.value),n(r.url),n(r.pattern),n(r.target?.name),n(r.target?.nameRegex),n(r.target?.label),n(r.target?.text),n(r.target?.placeholder);return n(t.gherkin),e}function H(t){let e=gt.join(t,".saffron","cache"),n=new Map,r=new Map,s=0;if(ft.existsSync(e))for(let a of ft.readdirSync(e,{recursive:!0})){let d=String(a);if(!d.endsWith(".json"))continue;let p=U(gt.join(e,d));if(p){s++;for(let m of p.steps){let c=m.gherkin,l=JSON.stringify(m.actions.map(({pageFingerprint:g,...f})=>f)),u=r.get(c)??[];u.includes(l)||(u.push(l),r.set(c,u));let h=n.get(c);!h||p.recordedAt>h.recordedAt?n.set(c,{gherkin:m.gherkin,table:m.table,docString:m.docString,actions:m.actions,feature:p.feature,scenario:p.scenario,recordedAt:p.recordedAt,variants:u.length}):h.variants=u.length}}}let i=[...r.entries()].filter(([,a])=>a.length>1).map(([a])=>a),o=new Map;for(let a of n.values()){let{pattern:d,args:p}=ht(a.gherkin);if(p.length===0)continue;let m=o.get(d);(!m||a.recordedAt>m.recordedAt)&&o.set(d,{...a,args:p})}return{steps:n,patterns:o,divergent:i,scannedCaches:s}}function mt(t,e,n){if(!!t.table!=!!e.table)return!1;if(t.table&&e.table){let i=Object.keys(L(t.table)),o=Object.keys(L(e.table));if(i.length>0&&o.length>0){if(JSON.stringify(i)!==JSON.stringify(o))return!1}else if(JSON.stringify(t.table)!==JSON.stringify(e.table))return!1}if(t.docString!==void 0!=(e.docString!==void 0)||t.docString!==void 0&&e.docString!==void 0&&t.docString!==e.docString&&!t.actions.some(i=>[i.value,i.url,i.pattern].some(o=>o?.includes("<docstring>"))))return!1;let r={...n,...L(e.resolvedTable??e.table),...W(e.resolvedDocString??e.docString)},s=Zn({gherkin:t.gherkin,keyword:"",kind:"action",actions:t.actions});for(let i of s)if(!(i in r))return!1;return!0}function yt(t,e,n){let r=t.steps.get(e.text);if(r)return mt(r,e,n)?r:void 0;let{pattern:s,args:i}=ht(e.text);if(i.length===0)return;let o=t.patterns.get(s);if(!o)return;let a=new Map;for(let c=0;c<i.length;c++){let l=o.args[c],u=i[c];if(l===u)continue;let h=a.get(l);if(h!==void 0&&h!==u)return;a.set(l,u)}let d=c=>[c?.name,c?.nameRegex,c?.label,c?.text,c?.placeholder];for(let c of a.keys())if(!o.actions.some(u=>[u.value,u.url,u.pattern,...d(u.target)].includes(c)))return;let p=c=>c!==void 0&&a.has(c)?a.get(c):c,m={...o,gherkin:e.text,actions:o.actions.map(({pageFingerprint:c,...l})=>({...l,value:p(l.value),url:p(l.url),pattern:p(l.pattern),target:l.target?{...l.target,name:p(l.target.name),nameRegex:p(l.target.nameRegex),label:p(l.target.label),text:p(l.target.text),placeholder:p(l.target.placeholder)}:void 0}))};return mt(m,e,n)?m:void 0}function xt(t,e){let n=[];return t.forEach((r,s)=>{if(r.actions.length!==0&&!e.steps.has(r.gherkin)){for(let i of e.steps.values())if(!(i.variants>1)&&i.actions.length!==0&&Xn(r.actions,i.actions)){n.push({index:s,from:r.gherkin,to:i.gherkin,feature:i.feature,scenario:i.scenario});break}}}),n}function er(t){if(!St.existsSync(t))return[];let e=[];for(let n of St.readdirSync(t,{recursive:!0})){let r=String(n);ae(r)&&e.push(Ne.join(t,r))}return e.sort()}function G(t,e,n){let r=Ne.isAbsolute(e)?e:Ne.join(t,e),s=er(r),i=n??X(s.filter(l=>l.endsWith(".saffron")),t),o=new Map,a=new Map;for(let l of s)for(let u of Z(l,t,i)){let h=`${u.featurePath}::${u.name}`;for(let g of u.steps){let f=o.get(g.text);if(f||(f={text:g.text,keywords:new Map,kind:g.kind,scenarios:new Set,files:new Set,fromStepSet:g.source?.fromStepSet},o.set(g.text,f)),f.keywords.set(g.keyword,(f.keywords.get(g.keyword)??0)+1),f.scenarios.add(h),g.source&&f.files.add(g.source.file),g.source?.fromStepSet){let b=a.get(g.source.fromStepSet);b||a.set(g.source.fromStepSet,b=new Set),b.add(h)}}}let d=H(t),p=new Set(d.divergent),m=[...o.values()].map(l=>({text:l.text,keyword:[...l.keywords.entries()].sort((u,h)=>h[1]-u[1])[0][0],kind:l.kind,status:p.has(l.text)?"divergent":d.steps.has(l.text)?"recorded":"unrecorded",usage:l.scenarios.size,files:[...l.files].sort(),fromStepSet:l.fromStepSet})).sort((l,u)=>u.usage-l.usage||l.text.localeCompare(u.text)),c=[...i.values()].map(l=>({name:l.name,file:l.file,line:l.line,steps:l.steps.map(u=>u.text),usage:a.get(l.name)?.size??0})).sort((l,u)=>u.usage-l.usage||l.name.localeCompare(u.name));return{steps:m,stepSets:c,scannedFiles:s.length,scannedCaches:d.scannedCaches}}function Se(t,e){let n=e.toLowerCase();return{...t,steps:t.steps.filter(r=>r.text.toLowerCase().includes(n)),stepSets:t.stepSets.filter(r=>r.name.toLowerCase().includes(n)||r.steps.some(s=>s.toLowerCase().includes(n)))}}function bt(t){let e={},n="saffron,feature,gherkin,cucumber";for(let r of t.steps)e[`step: ${r.text}`]={scope:n,prefix:r.text,body:[r.text.replace(/\$/g,"\\$")],description:`${r.status} \xB7 used in ${r.usage} scenario(s)`};for(let r of t.stepSets)e[`StepSet: ${r.name}`]={scope:n,prefix:`StepSet ${r.name}`,body:[`StepSet ${r.name}`],description:`step set (${r.steps.length} steps) \u2014 ${r.file}`};return JSON.stringify(e,null,2)+`
6
+ `}import{Server as tr}from"@modelcontextprotocol/sdk/server/index.js";import{StdioServerTransport as nr}from"@modelcontextprotocol/sdk/server/stdio.js";import{CallToolRequestSchema as rr,ListToolsRequestSchema as sr}from"@modelcontextprotocol/sdk/types.js";async function vt(t,e){let n=new tr({name:"saffron",version:"0.1.0"},{capabilities:{tools:{}}});n.setRequestHandler(sr,async()=>({tools:[{name:"search_steps",description:"Search the project's step vocabulary. Returns known Gherkin steps with status (recorded = replays at zero tokens, divergent, unrecorded), usage counts, and source files. ALWAYS reuse an existing wording exactly instead of inventing a near-duplicate \u2014 exact step text is the replay-cache identity, so a new wording costs a fresh AI recording.",inputSchema:{type:"object",properties:{query:{type:"string",description:"Case-insensitive substring filter over step text; omit to list everything."}}}},{name:"list_step_sets",description:"List the project's StepSet definitions (named reusable step sequences from .saffron files) with their steps, defining file, and usage. Invoke one inside a scenario with a line reading exactly: StepSet <name>",inputSchema:{type:"object",properties:{}}}]})),n.setRequestHandler(rr,async r=>{let s=G(t,e);if(r.params.name==="search_steps"){let i=r.params.arguments?.query,o=i?Se(s,i):s;return{content:[{type:"text",text:JSON.stringify({steps:o.steps,scannedFiles:o.scannedFiles,scannedCaches:o.scannedCaches},null,2)}]}}return r.params.name==="list_step_sets"?{content:[{type:"text",text:JSON.stringify({stepSets:s.stepSets},null,2)}]}:{content:[{type:"text",text:`Unknown tool: ${r.params.name}`}],isError:!0}}),await n.connect(new nr)}import{query as or}from"@anthropic-ai/claude-agent-sdk";function ir(t,e){let n=e.steps.map(s=>`- [${s.status}] ${s.keyword} ${s.text}`).join(`
7
7
  `),r=e.stepSets.map(s=>`- StepSet ${s.name}
8
- ${s.steps.map(o=>` ${o}`).join(`
8
+ ${s.steps.map(i=>` ${i}`).join(`
9
9
  `)}`).join(`
10
10
  `);return["Draft a Saffron feature file from the requirements below.","","EXISTING STEP VOCABULARY \u2014 reuse these wordings EXACTLY (character for character) wherever they express what a step needs to do. Steps marked [recorded] or [divergent] already have replay recordings: reusing them makes the new file replay almost for free. Only invent a new wording when nothing in the vocabulary expresses the intent, and then follow the same style:",n.length>0?n:"(none yet \u2014 this is the project's first file)","",e.stepSets.length>0?`EXISTING STEP SETS \u2014 invoke with a line reading exactly \`StepSet <name>\` instead of repeating their steps:
11
11
  ${r}`:void 0,"","RULES:","1. Output ONLY the feature file content \u2014 no prose, no code fences, no explanations.","2. Gherkin/.saffron syntax: Feature:, Scenario:, Scenario Outline: + Examples, Given/When/Then/And/But. Prefer concrete scenarios; use an Outline only when the requirements list variations of the same flow.","3. Then steps are assertions \u2014 state exactly what must be true, one condition per step. End every scenario with at least one Then.","4. If the same 3+ step sequence would appear in two or more scenarios, define it once as a StepSet (first step a guard, last step an exit assertion) and invoke it. Definition uses a colon (StepSet: Name), invocation does not (StepSet Name).",'5. Use 2-column data tables for key/value input, header tables for lists of records, and """ doc strings for free text.',"6. Steps are natural language for an AI browser agent \u2014 never CSS selectors or code.","","REQUIREMENTS:",t.trim()].filter(s=>s!==void 0).join(`
12
- `)}async function wt(t,e,n){let r={aiCalls:0,inputTokens:0,outputTokens:0,cacheReadTokens:0,cacheCreationTokens:0,costUsd:0},s="",o=er({prompt:tr(t,e),options:{model:n,maxTurns:1,permissionMode:"bypassPermissions",persistSession:!1,settingSources:[],allowedTools:[],systemPrompt:"You are Saffron's feature-file author. You write clean, assertive Gherkin that reuses the project's exact step vocabulary. You output only file content."}});for await(let i of o)if(i.type==="assistant")for(let a of i.message.content)a.type==="text"&&(s+=a.text);else i.type==="result"&&(r.aiCalls=i.num_turns,r.costUsd=i.total_cost_usd,"usage"in i&&i.usage&&(r.inputTokens=i.usage.input_tokens??0,r.outputTokens=i.usage.output_tokens??0,r.cacheReadTokens=i.usage.cache_read_input_tokens??0,r.cacheCreationTokens=i.usage.cache_creation_input_tokens??0));return s=s.replace(/^\s*```(?:gherkin|saffron)?\s*\n/,"").replace(/\n```\s*$/,"").trim(),{content:s+`
13
- `,usage:r}}import he from"node:path";import{createConnection as nr,ProposedFeatures as rr,TextDocuments as sr,TextDocumentSyncKind as or,CompletionItemKind as Ne,DiagnosticSeverity as ye,MarkupKind as kt}from"vscode-languageserver/node";import{TextDocument as ir}from"vscode-languageserver-textdocument";var $t=/^(\s*)(Given|When|Then|And|But|\*)\s+(.+?)\s*$/,ar=/^\s*StepSet:\s*(.+?)\s*$/,Ue=/^(\s*)(StepSet)\s+([^\s:].*?)\s*$/,Be={recorded:"\u25CF recorded \u2014 replays at zero tokens",divergent:"\u25CF divergent \u2014 same text, different recordings",unrecorded:"\u25CB written, not recorded yet"};function cr(t,e){let n=i=>new Set(i.toLowerCase().replace(/"[^"]*"/g,'"x"').split(/[^a-z0-9"<>]+/).filter(Boolean)),r=n(t),s=n(e);if(r.size===0||s.size===0)return 0;let o=0;for(let i of r)s.has(i)&&o++;return o/(r.size+s.size-o)}function Rt(t,e){let n=nr(rr.all,process.stdin,process.stdout),r=new sr(ir),s={steps:[],stepSets:[],scannedFiles:0,scannedCaches:0},o=new Map,i,a=()=>{try{let l=he.isAbsolute(e)?e:he.join(t,e);o=X(ue(l),t),s=G(t,e,o)}catch(l){n.console.warn(`saffron vocabulary rebuild: ${String(l)}`)}for(let l of r.all())m(l)},d=()=>{clearTimeout(i),i=setTimeout(a,300)};function p(l){return s.steps.find(c=>c.text===l)?.status}function m(l){if(!l.uri.endsWith(".saffron"))return;let c=[],g=l.getText().split(`
14
- `),h=new Map;for(let u=0;u<g.length;u++){let f=g[u],y={start:{line:u,character:0},end:{line:u,character:f.length}},x=f.match(Ue);x&&!o.has(x[3])&&c.push({range:y,severity:ye.Error,source:"saffron",message:`StepSet "${x[3]}" is not defined anywhere in the project.`});let w=f.match(ar);if(w){let b=o.get(w[1]),_=he.relative(t,new URL(l.uri).pathname).replace(/\\/g,"/");(h.has(w[1])||b&&b.file!==_)&&c.push({range:y,severity:ye.Error,source:"saffron",message:`StepSet "${w[1]}" is defined twice \u2014 set names are project-wide. If this line was meant to INVOKE the set, remove the colon: "StepSet ${w[1]}".`}),h.set(w[1],u)}let j=f.trim();if(j&&!x&&!w){for(let[b]of o)if(j.toLowerCase()===b.toLowerCase()){c.push({range:y,severity:ye.Warning,source:"saffron",message:`Did you mean "StepSet ${b}"? Invoking a step set needs the StepSet keyword, like a step needs Given/When/Then.`});break}}let v=f.match($t);if(v&&p(v[3])!=="recorded"){for(let b of s.steps)if(!(b.text===v[3]||b.status==="unrecorded")&&cr(b.text,v[3])>=.7){c.push({range:{start:{line:u,character:f.indexOf(v[3])},end:{line:u,character:f.length}},severity:ye.Information,source:"saffron",message:`Similar to the ${b.status} step "${b.text}" (\xD7${b.usage}). Reusing the exact wording replays at zero tokens; a new wording costs a fresh AI recording.`});break}}}n.sendDiagnostics({uri:l.uri,diagnostics:c})}n.onInitialize(()=>(a(),{capabilities:{textDocumentSync:or.Incremental,completionProvider:{triggerCharacters:[" "]},definitionProvider:!0,hoverProvider:!0}})),n.onCompletion(l=>{let c=r.get(l.textDocument.uri);if(!c)return[];let g=c.getText({start:{line:l.position.line,character:0},end:l.position});if(/^\s*StepSet\s+/.test(g)&&c.uri.endsWith(".saffron"))return s.stepSets.map(f=>({label:f.name,kind:Ne.Function,detail:`step set \xB7 ${f.steps.length} step(s) \xB7 \xD7${f.usage}`,documentation:f.steps.join(`
15
- `)}));if(/^\s*(Given|When|Then|And|But|\*)\s+/.test(g))return s.steps.map((f,y)=>({label:f.text,kind:Ne.Text,detail:`${Be[f.status]} \xB7 \xD7${f.usage}`,sortText:String(y).padStart(5,"0"),filterText:f.text}));let u=g.replace(/^\s*/,"").trimEnd().toLowerCase().replace(/\s+/g,"");if(u.length>0&&("stepset".startsWith(u)||u.startsWith("stepset"))&&c.uri.endsWith(".saffron")){let f={start:{line:l.position.line,character:g.length-g.replace(/^\s*/,"").length},end:l.position};return s.stepSets.map(y=>({label:`StepSet ${y.name}`,kind:Ne.Function,detail:`invoke step set \xB7 ${y.steps.length} step(s)`,documentation:y.steps.join(`
16
- `),filterText:`step set ${y.name}`,textEdit:{range:f,newText:`StepSet ${y.name}`}}))}return[]}),n.onDefinition(l=>{let c=r.get(l.textDocument.uri);if(!c)return;let h=c.getText({start:{line:l.position.line,character:0},end:{line:l.position.line+1,character:0}}).replace(/\n$/,"").match(Ue);if(!h)return;let u=o.get(h[3]);return u?{uri:`file://${he.join(t,u.file)}`,range:{start:{line:u.line-1,character:0},end:{line:u.line-1,character:0}}}:void 0}),n.onHover(l=>{let c=r.get(l.textDocument.uri);if(!c)return;let g=c.getText({start:{line:l.position.line,character:0},end:{line:l.position.line+1,character:0}}).replace(/\n$/,""),h=g.match(Ue);if(h){let f=s.stepSets.find(x=>x.name===h[3]);if(!f)return;let y=f.steps.map(x=>`- ${Be[p(x)??"unrecorded"][0]} ${x}`).join(`
17
- `);return{contents:{kind:kt.Markdown,value:`**StepSet ${f.name}** \u2014 expands to:
12
+ `)}async function wt(t,e,n){let r={aiCalls:0,inputTokens:0,outputTokens:0,cacheReadTokens:0,cacheCreationTokens:0,costUsd:0},s="",i=or({prompt:ir(t,e),options:{model:n,maxTurns:1,permissionMode:"bypassPermissions",persistSession:!1,settingSources:[],allowedTools:[],systemPrompt:"You are Saffron's feature-file author. You write clean, assertive Gherkin that reuses the project's exact step vocabulary. You output only file content."}});for await(let o of i)if(o.type==="assistant")for(let a of o.message.content)a.type==="text"&&(s+=a.text);else o.type==="result"&&(r.aiCalls=o.num_turns,r.costUsd=o.total_cost_usd,"usage"in o&&o.usage&&(r.inputTokens=o.usage.input_tokens??0,r.outputTokens=o.usage.output_tokens??0,r.cacheReadTokens=o.usage.cache_read_input_tokens??0,r.cacheCreationTokens=o.usage.cache_creation_input_tokens??0));return s=s.replace(/^\s*```(?:gherkin|saffron)?\s*\n/,"").replace(/\n```\s*$/,"").trim(),{content:s+`
13
+ `,usage:r}}import kt from"node:fs";import te from"node:path";import{createConnection as ar,ProposedFeatures as cr,TextDocuments as lr,TextDocumentSyncKind as dr,CompletionItemKind as Ue,DiagnosticSeverity as be,MarkupKind as $t}from"vscode-languageserver/node";import{TextDocument as pr}from"vscode-languageserver-textdocument";var Rt=/^(\s*)(Given|When|Then|And|But|\*)\s+(.+?)\s*$/,ur=/^\s*StepSet:\s*(.+?)\s*$/,Ve=/^(\s*)(StepSet)\s+([^\s:].*?)\s*$/,ze={recorded:"\u25CF recorded \u2014 replays at zero tokens",divergent:"\u25CF divergent \u2014 same text, different recordings",unrecorded:"\u25CB written, not recorded yet"};function fr(t,e){let n=o=>new Set(o.toLowerCase().replace(/"[^"]*"/g,'"x"').split(/[^a-z0-9"<>]+/).filter(Boolean)),r=n(t),s=n(e);if(r.size===0||s.size===0)return 0;let i=0;for(let o of r)s.has(o)&&i++;return i/(r.size+s.size-i)}function At(t,e){let n=ar(cr.all,process.stdin,process.stdout),r=new lr(pr),s={steps:[],stepSets:[],scannedFiles:0,scannedCaches:0},i=new Map,o,a=()=>{try{let c=te.isAbsolute(e)?e:te.join(t,e);i=X(he(c),t),s=G(t,e,i)}catch(c){n.console.warn(`saffron vocabulary rebuild: ${String(c)}`)}for(let c of r.all())m(c)},d=()=>{clearTimeout(o),o=setTimeout(a,300)};function p(c){return s.steps.find(l=>l.text===c)?.status}function m(c){if(!c.uri.endsWith(".saffron"))return;let l=[],u=c.getText().split(`
14
+ `),h=new Map;for(let g=0;g<u.length;g++){let f=u[g],b={start:{line:g,character:0},end:{line:g,character:f.length}},y=f.match(Ve);y&&!i.has(y[3])&&l.push({range:b,severity:be.Error,source:"saffron",message:`StepSet "${y[3]}" is not defined anywhere in the project.`});let x=f.match(ur);if(x){let v=i.get(x[1]),F=te.relative(t,new URL(c.uri).pathname).replace(/\\/g,"/");(h.has(x[1])||v&&v.file!==F)&&l.push({range:b,severity:be.Error,source:"saffron",message:`StepSet "${x[1]}" is defined twice \u2014 set names are project-wide. If this line was meant to INVOKE the set, remove the colon: "StepSet ${x[1]}".`}),h.set(x[1],g)}let E=f.trim();if(E&&!y&&!x){for(let[v]of i)if(E.toLowerCase()===v.toLowerCase()){l.push({range:b,severity:be.Warning,source:"saffron",message:`Did you mean "StepSet ${v}"? Invoking a step set needs the StepSet keyword, like a step needs Given/When/Then.`});break}}let w=f.match(Rt);if(w&&p(w[3])!=="recorded"){for(let v of s.steps)if(!(v.text===w[3]||v.status==="unrecorded")&&fr(v.text,w[3])>=.7){l.push({range:{start:{line:g,character:f.indexOf(w[3])},end:{line:g,character:f.length}},severity:be.Information,source:"saffron",message:`Similar to the ${v.status} step "${v.text}" (\xD7${v.usage}). Reusing the exact wording replays at zero tokens; a new wording costs a fresh AI recording.`});break}}}n.sendDiagnostics({uri:c.uri,diagnostics:l})}n.onInitialize(()=>(a(),{capabilities:{textDocumentSync:dr.Incremental,completionProvider:{triggerCharacters:[" "]},definitionProvider:!0,hoverProvider:!0}})),n.onCompletion(c=>{let l=r.get(c.textDocument.uri);if(!l)return[];let u=l.getText({start:{line:c.position.line,character:0},end:c.position});if(/^\s*StepSet\s+/.test(u)&&l.uri.endsWith(".saffron"))return s.stepSets.map(f=>({label:f.name,kind:Ue.Function,detail:`step set \xB7 ${f.steps.length} step(s) \xB7 \xD7${f.usage}`,documentation:f.steps.join(`
15
+ `)}));if(/^\s*(Given|When|Then|And|But|\*)\s+/.test(u))return s.steps.map((f,b)=>({label:f.text,kind:Ue.Text,detail:`${ze[f.status]} \xB7 \xD7${f.usage}`,sortText:String(b).padStart(5,"0"),filterText:f.text}));let g=u.replace(/^\s*/,"").trimEnd().toLowerCase().replace(/\s+/g,"");if(g.length>0&&("stepset".startsWith(g)||g.startsWith("stepset"))&&l.uri.endsWith(".saffron")){let f={start:{line:c.position.line,character:u.length-u.replace(/^\s*/,"").length},end:c.position};return s.stepSets.map(b=>({label:`StepSet ${b.name}`,kind:Ue.Function,detail:`invoke step set \xB7 ${b.steps.length} step(s)`,documentation:b.steps.join(`
16
+ `),filterText:`step set ${b.name}`,textEdit:{range:f,newText:`StepSet ${b.name}`}}))}return[]}),n.onDefinition(c=>{let l=r.get(c.textDocument.uri);if(!l)return;let u=l.getText({start:{line:c.position.line,character:0},end:{line:c.position.line+1,character:0}}).replace(/\n$/,""),h=Tt(u,c.position.character);if(h){let y=Et(t,h.name);return y?{uri:`file://${y.file}`,range:{start:{line:y.line,character:0},end:{line:y.line,character:0}}}:void 0}let g=u.match(Ve);if(!g)return;let f=i.get(g[3]);return f?{uri:`file://${te.join(t,f.file)}`,range:{start:{line:f.line-1,character:0},end:{line:f.line-1,character:0}}}:void 0}),n.onHover(c=>{let l=r.get(c.textDocument.uri);if(!l)return;{let f=l.getText({start:{line:c.position.line,character:0},end:{line:c.position.line+1,character:0}}).replace(/\n$/,""),b=Tt(f,c.position.character);if(b){let y=Et(t,b.name),x=y?`defined in ${te.relative(t,y.file)} (line ${y.line+1}); the value is resolved at replay and never shown here`:"not found in .env or .env.example; export it in the shell or add it to a git-ignored .env";return{contents:{kind:"markdown",value:`**{env:${b.name}}** ${x}.`}}}}let u=l.getText({start:{line:c.position.line,character:0},end:{line:c.position.line+1,character:0}}).replace(/\n$/,""),h=u.match(Ve);if(h){let f=s.stepSets.find(y=>y.name===h[3]);if(!f)return;let b=f.steps.map(y=>`- ${ze[p(y)??"unrecorded"][0]} ${y}`).join(`
17
+ `);return{contents:{kind:$t.Markdown,value:`**StepSet ${f.name}** \u2014 expands to:
18
18
 
19
- ${y}`}}}let u=g.match($t);if(u){let f=s.steps.find(y=>y.text===u[3]);return f?{contents:{kind:kt.Markdown,value:`${Be[f.status]}
19
+ ${b}`}}}let g=u.match(Rt);if(g){let f=s.steps.find(b=>b.text===g[3]);return f?{contents:{kind:$t.Markdown,value:`${ze[f.status]}
20
20
 
21
21
  Used in ${f.usage} place(s): ${f.files.join(", ")}${f.fromStepSet?`
22
22
 
23
- Defined in StepSet **${f.fromStepSet}**`:""}`}}:void 0}}),r.onDidOpen(l=>m(l.document)),r.onDidChangeContent(l=>m(l.document)),r.onDidSave(()=>d()),n.onDidChangeWatchedFiles(()=>d()),r.listen(n),n.listen()}import Tt from"node:fs";import lr from"node:path";var Et=/\{env:([A-Za-z_][A-Za-z0-9_]*)\}/g;function ie(t){return t.replace(Et,(e,n)=>{let r=process.env[n];if(r===void 0)throw new Error(`environment variable ${n} is not set (referenced as {env:${n}}) \u2014 export it or add it to .env`);return r})}function Ve(t){let e=new Set;for(let n of t)if(n)for(let r of n.matchAll(Et))e.add(r[1]);return e}function ze(t){let e=[];for(let n of t.steps){e.push(n.text,n.resolvedText),n.docString&&e.push(n.docString);for(let r of n.table??[])e.push(...r)}return e}function ae(t){let e=new Map;for(let n of Ve(ze(t))){let r=process.env[n];r!==void 0&&e.set(n,r)}return e}function te(t,e){let n=t;for(let[r,s]of[...e.entries()].sort((o,i)=>i[1].length-o[1].length))s.length<4||(n=n.split(s).join(`{env:${r}}`));return n}function At(t){let e=lr.join(t,".env");if(Tt.existsSync(e))for(let n of Tt.readFileSync(e,"utf8").split(`
24
- `)){let r=n.trim();if(!r||r.startsWith("#"))continue;let s=r.indexOf("=");if(s<=0)continue;let o=r.slice(0,s).trim();if(!/^[A-Za-z_][A-Za-z0-9_]*$/.test(o))continue;let i=r.slice(s+1).trim();(i.startsWith('"')&&i.endsWith('"')||i.startsWith("'")&&i.endsWith("'"))&&(i=i.slice(1,-1)),process.env[o]===void 0&&(process.env[o]=i)}}import kr from"node:fs";import $r from"node:net";import qt from"node:path";import{chromium as Rr,firefox as Tr,webkit as Er}from"playwright";import B from"node:fs";import Se from"node:path";function Ct(t,e){B.mkdirSync(Se.dirname(t),{recursive:!0}),B.writeFileSync(t,`${JSON.stringify(e,null,2)}
25
- `)}function xe(t){return JSON.parse(B.readFileSync(t,"utf8"))}function ce(t){let e=Se.join(t,".saffron","proposals");if(!B.existsSync(e))return[];let n=[];for(let r of B.readdirSync(e)){let s=Se.join(e,r);if(B.statSync(s).isDirectory())for(let o of B.readdirSync(s)){if(!o.endsWith(".json"))continue;let i=Se.join(s,o);n.push({file:i,proposal:xe(i)})}}return n}function Pt(t,e){let n=xe(e),r=z(t,n.cache.feature,n.cache.scenario);return ee(r,n.cache),B.rmSync(e),r}function Ft(t){B.rmSync(t)}import It from"node:path";var dr=/\{date([+-]\d+)?(?::([^}]+))?\}/g;function pr(t,e){let n=String(t.getFullYear()),r=String(t.getMonth()+1).padStart(2,"0"),s=String(t.getDate()).padStart(2,"0");return e.replaceAll("YYYY",n).replaceAll("MM",r).replaceAll("DD",s).replaceAll("M",String(t.getMonth()+1)).replaceAll("D",String(t.getDate()))}function qe(t,e=new Date){return t.replace(dr,(n,r,s)=>{let o=new Date(e);return o.setDate(o.getDate()+(r?parseInt(r,10):0)),pr(o,s??"YYYY-MM-DD")})}var ur=/\b(\d{4})-(\d{2})-(\d{2})\b/g,fr=400;function jt(t,e=new Date){let n=new Date(e.getFullYear(),e.getMonth(),e.getDate());return t.replace(ur,(r,s,o,i)=>{let a=new Date(Number(s),Number(o)-1,Number(i));if(Number.isNaN(a.getTime()))return r;let d=Math.round((a.getTime()-n.getTime())/864e5);return Math.abs(d)>fr?r:d===0?"{date}":`{date${d>0?"+":""}${d}}`})}import{createHash as gr}from"node:crypto";async function Y(t){let e;try{e=await t.locator("body").ariaSnapshot({timeout:3e3})}catch{return"sha256:unavailable"}let n=e.replace(/\d+/g,"#").replace(/\s+/g," ").trim();return`sha256:${gr("sha256").update(n).digest("hex")}`}var Ge=t=>new Promise(e=>setTimeout(e,t)),He=class{entries=[];seq=0;prevStepSeq=0;curStepSeq=0;listener;context;attach(e,n){this.context=e,this.listener=r=>{let s={seq:++this.seq,url:r.url(),method:r.request().method(),status:r.status()};if(this.entries.push(s),n){let o=r.headers()["content-type"]??"";/json|text|xml/i.test(o)&&r.text().then(i=>{s.body=i.length>262144?i.slice(0,262144):i}).catch(()=>{})}},e.on("response",this.listener)}detach(){this.context&&this.listener&&this.context.off("response",this.listener)}markStep(){this.prevStepSeq=this.curStepSeq,this.curStepSeq=this.seq}sincePreviousStep(){return this.entries.filter(e=>e.seq>this.prevStepSeq)}all(){return this.entries}};function mr(t,e){if(!e)return t>=200&&t<300;let n=/^([1-5])xx$/i.exec(e.trim());if(n){let r=Number(n[1])*100;return t>=r&&t<r+100}return t===Number(e.trim())}function _t(t,e,n,r,s){return!(!e.test(t.url)||n&&t.method.toUpperCase()!==n.toUpperCase()||!mr(t.status,r)||s&&!s.test(t.body??""))}var hr=(t,e)=>`response matching ${t.method??"any-method"} /${e}/ status ${t.status??"2xx"}${t.pattern?` body /${t.pattern}/`:""}`;function Dt(t,e,n,r=!1){let s=a=>ie(qe(q(a,n))),o=[],i=a=>{if(e.role){let d=e.nameRegex?new RegExp(s(e.nameRegex),"i"):e.name?s(e.name):void 0;o.push(a.getByRole(e.role,{name:d,exact:!1}))}e.label&&o.push(a.getByLabel(s(e.label))),e.placeholder&&o.push(a.getByPlaceholder(s(e.placeholder))),e.text&&o.push(a.getByText(s(e.text))),e.testId&&o.push(a.getByTestId(s(e.testId)));for(let d of e.fallbackSelectors??[])o.push(a.locator(d))};if(e.frame)i(t.frameLocator(s(e.frame)));else if(i(t),r)for(let a of t.frames())a!==t.mainFrame()&&i(a);if(o.length===0)throw new Error("Action target has neither role nor fallback selectors");return o}async function V(t,e,n){let r=Date.now()+e,s;for(;Date.now()<r;){try{if(await t())return}catch(o){s=o}await Ge(100)}throw new Error(`Timed out waiting for ${n}${s?` (${String(s)})`:""}`)}async function N(t,e){let n;for(let r of t)try{await e(r.first());return}catch(s){n=s}throw n}var We=t=>t.replace(/\s+/g," ").trim();async function Ye(t,e,n,r,s,o=new Map,i){let a=u=>ie(qe(q(u,n))),d=e.value!==void 0?a(e.value):void 0,p=e.url!==void 0?a(e.url):void 0,m=e.action==="expectVisible"||e.action==="expectText"||e.action==="expectValue"||e.action==="expectMatches"||e.action==="expectAttribute"||e.action==="captureText",l=e.target?Dt(t,e.target,n,m):[],c={timeout:r},g={timeout:Math.min(1e3,r)},h=u=>async()=>{for(let f of l)try{if(await u(f.first()))return!0}catch{}return!1};switch(e.action){case"goto":{if(!p)throw new Error("goto requires url");let u=/^https?:\/\//.test(p)?p:new URL(p,s).toString();await t.goto(u,c);return}case"click":return N(l,u=>u.click(c));case"fill":return N(l,u=>u.fill(d??"",c));case"press":return l.length>0?N(l,u=>u.press(d??"",c)):t.keyboard.press(d??"");case"selectOption":return N(l,async u=>{await u.selectOption(d??"",c)});case"check":return N(l,u=>u.check(c));case"uncheck":return N(l,u=>u.uncheck(c));case"hover":return N(l,u=>u.hover(c));case"waitFor":return l.length>0?N(l,u=>u.waitFor({state:"visible",timeout:r})):Ge(Math.min(Number(d??"0"),r));case"expectVisible":return V(h(u=>u.isVisible()),r,"target to be visible");case"expectNotVisible":return N(l,u=>u.waitFor({state:"hidden",timeout:r}));case"expectText":return V(h(async u=>(await u.textContent(g)??"").includes(d??"")),r,`text "${d}"`);case"expectValue":return V(h(async u=>await u.inputValue(g)===(d??"")),r,`input value "${d}"`);case"expectUrl":{let u=p??d??"";return V(async()=>t.context().pages().some(f=>f.url().includes(u)),r,`URL containing "${u}" in any tab (current: ${t.context().pages().map(f=>f.url()).join(", ")})`)}case"handleDialog":{let u=(d??"accept")!=="dismiss",f=e.promptText?a(e.promptText):void 0;t.once("dialog",y=>{u?y.accept(f):y.dismiss()});return}case"uploadFile":{let u=(d??"").split(`
26
- `).filter(Boolean).map(f=>It.isAbsolute(f)?f:It.resolve(f));if(u.length===0)throw new Error("uploadFile requires a path");if(l.length>0)return N(l,f=>f.setInputFiles(u,c));t.once("filechooser",f=>{f.setFiles(u)});return}case"dragTo":{if(!e.toTarget)throw new Error("dragTo requires toTarget");let u=Dt(t,e.toTarget,n);return N(l,f=>f.dragTo(u[0].first(),c))}case"captureText":{if(!e.saveAs)throw new Error("captureText requires saveAs");return V(h(async u=>{let f=We(await u.textContent(g)??"");return f===""?!1:(o.set(e.saveAs,f),!0)}),r,`non-empty text to capture as "${e.saveAs}"`)}case"expectDiffers":{if(!e.compareTo)throw new Error("expectDiffers requires compareTo");let u=o.get(e.compareTo);if(u===void 0)throw new Error(`expectDiffers: no captured value named "${e.compareTo}"`);if(l.length>0)return V(h(async x=>We(await x.textContent(g)??"")!==u),r,`target text to differ from "${e.compareTo}" (${u})`);let f=d??"",y=o.get(f);if(y===void 0)throw new Error(`expectDiffers: no captured value named "${f}"`);if(y===u)throw new Error(`expectDiffers: "${f}" (${y}) equals "${e.compareTo}" (${u})`);return}case"expectAttribute":{if(!e.attribute)throw new Error("expectAttribute requires attribute");if(!e.pattern)throw new Error("expectAttribute requires pattern");let u=new RegExp(e.pattern,"i");return V(h(async f=>u.test(await f.getAttribute(e.attribute,g)??"")),r,`attribute ${e.attribute} to match /${e.pattern}/i`)}case"expectMatches":{if(!e.pattern)throw new Error("expectMatches requires pattern");let u=new RegExp(e.pattern,"i");return V(h(async f=>u.test(We(await f.textContent(g)??""))),r,`target text to match /${e.pattern}/i`)}case"waitForResponse":case"expectResponse":{if(!e.urlPattern)throw new Error(`${e.action} requires urlPattern`);let u=new RegExp(a(e.urlPattern)),f=e.pattern?new RegExp(a(e.pattern)):void 0;if(!i){await t.waitForResponse(x=>_t({seq:0,url:x.url(),method:x.request().method(),status:x.status()},u,e.method,e.status,void 0),c);return}let y=()=>e.action==="expectResponse"?i.all():i.sincePreviousStep();return V(async()=>y().some(x=>_t(x,u,e.method,e.status,f)),r,hr(e,e.urlPattern))}default:throw new Error(`Unknown action type: ${e.action}`)}}function Ot(t,e){return t.actions.some(n=>[n.value,n.url,n.pattern,n.target?.name,n.target?.nameRegex,n.target?.label,n.target?.text,n.target?.placeholder].some(r=>r?.includes(e)))}function yr(t,e){return e.steps.length!==t.steps.length?!1:e.steps.every((n,r)=>{let s=t.steps[r];if(n.gherkin!==s.text)return!1;let o=n.table,i=s.table;if(!!o!=!!i)return!1;if(o&&i){let a=Object.keys(L(o)),d=Object.keys(L(i));if(a.length>0&&d.length>0){if(JSON.stringify(a)!==JSON.stringify(d))return!1}else if(JSON.stringify(o)!==JSON.stringify(i))return!1}if(n.docString!==void 0!=(s.docString!==void 0))return!1;if(n.docString!==void 0&&s.docString!==void 0&&n.docString!==s.docString){let a=e.steps.some(p=>Ot(p,"<docstring>")),d=e.steps.some(p=>Ot(p,n.docString));if(!a||d)return!1}return!0})}function Je(t,e){let n=t.steps[e],r=n?.resolvedTable??n?.table;return{...t.params,...K(t.steps),...L(r),...W(n?.resolvedDocString??n?.docString)}}async function be(t,e,n,r={}){let s=r.actionTimeoutMs??5e3,o=r.retries??1,i=[],a=r.vars??new Map,d=()=>Object.fromEntries(a),p=n.steps.some(g=>g.actions.some(h=>(h.action==="waitForResponse"||h.action==="expectResponse")&&h.pattern!==void 0)),m=new He;m.attach(t.context(),p);let l=t,c=()=>{let g=t.context().pages(),h=g[g.length-1];h&&h!==l&&!h.isClosed()&&(l=h)};if(!yr(e,n))return m.detach(),{status:"stale",stepResults:i,captured:d()};try{for(let g=0;g<n.steps.length;g++){let h=n.steps[g],u=Je(e,g);m.markStep();let f=!1,y=0;for(let x=0;x<h.actions.length;x++){let w=h.actions[x];c(),w.pageFingerprint&&await Y(l)!==w.pageFingerprint&&(f=!0);let j,v=!1;for(let b=0;b<=o&&!v;b++){b>0&&(y++,await Ge(250*b),c());try{await Ye(l,w,u,s,r.baseURL,a,m),v=!0}catch(_){j=_}}if(!v){let b=j instanceof Error?j.message:String(j);i.push({gherkin:h.gherkin,fromStepSet:h.fromStepSet,kind:h.kind,status:"failed",drift:f,...y?{retries:y}:{},error:b});for(let _=g+1;_<n.steps.length;_++)i.push({gherkin:n.steps[_].gherkin,kind:n.steps[_].kind,status:"skipped"});return{status:"failed",failure:{stepIndex:g,actionIndex:x,stepText:h.gherkin,kind:h.kind,error:b},stepResults:i,captured:d()}}}i.push({gherkin:h.gherkin,fromStepSet:h.fromStepSet,kind:h.kind,status:"passed",drift:f,...y?{retries:y}:{}})}return{status:"passed",stepResults:i,captured:d()}}finally{m.detach()}}var ve=class{steps;currentStepIndex=-1;done=!1;success=!1;narrative="";adaptations=[];suggestedFeatureEdit;featureEdits=[];announced=new Set;pendingFingerprint;constructor(e){this.steps=e.steps.map(n=>({gherkin:n.text,keyword:n.keyword,kind:n.kind,table:n.table,docString:n.docString,fromStepSet:n.source?.fromStepSet,actions:[]}))}addArmedAction(e){if(this.done)return;let n=Math.max(this.currentStepIndex,0),r=this.steps[n];if(!r||r.actions.some(i=>i.action===e.action&&i.value===e.value&&i.promptText===e.promptText))return;let o=Math.max(r.actions.length-1,0);r.actions.splice(o,0,e)}addActions(e){if(this.done||e.length===0)return;let n=Math.max(this.currentStepIndex,0),r=this.steps[n];r&&(this.pendingFingerprint&&e[0]&&(e[0].pageFingerprint=this.pendingFingerprint,this.pendingFingerprint=void 0),r.actions.push(...e))}},J=t=>t.replace(/\\(['"\\])/g,"$1");function Sr(t){let e=t.match(/'((?:[^'\\]|\\.)*)'/);return e?J(e[1]):void 0}function Qe(t){let e={},n=t.match(/(?:frameLocator\('((?:[^'\\]|\\.)*)'\)|locator\('((?:[^'\\]|\\.)*)'\)\.contentFrame\(\))/);n&&(e.frame=J(n[1]??n[2]),t=t.slice((n.index??0)+n[0].length));let r=t.match(/getByRole\('([^']+)'(?:,\s*\{([^}]*)\})?\)/);if(r){e.role=r[1];let i=(r[2]??"").match(/name:\s*'((?:[^'\\]|\\.)*)'/);i&&(e.name=J(i[1]))}let s=[[/getByLabel\('((?:[^'\\]|\\.)*)'\)/,"label"],[/getByText\('((?:[^'\\]|\\.)*)'\)/,"text"],[/getByTestId\('((?:[^'\\]|\\.)*)'\)/,"testId"],[/getByPlaceholder\('((?:[^'\\]|\\.)*)'\)/,"placeholder"]];for(let[i,a]of s){let d=t.match(i);d&&(e[a]=J(d[1]))}let o=t.match(/(?:^|\.)locator\('((?:[^'\\]|\\.)*)'\)/);return o&&(e.fallbackSelectors=[J(o[1])]),Object.keys(e).length>0?e:void 0}function xr(t,e){if(e&&t.startsWith(e)){let n=t.slice(e.length);return n.startsWith("/")?n:`/${n}`}return t}var br={click:"click",dblclick:"click",fill:"fill",pressSequentially:"fill",type:"fill",press:"press",check:"check",uncheck:"uncheck",hover:"hover",selectOption:"selectOption"};function vr(t,e){let n=t.match(/page\.goto\('((?:[^'\\]|\\.)*)'\)/);if(n)return{action:"goto",url:xr(J(n[1]),e)};let r=t.match(/page\.keyboard\.press\('((?:[^'\\]|\\.)*)'\)/);if(r)return{action:"press",value:J(r[1])};let s=t.match(/await\s+page\.(.+)\.dragTo\(page\.(.+?)\);?\s*$/);if(s){let c=Qe(s[1]),g=Qe(s[2]);if(c&&g)return{action:"dragTo",target:c,toTarget:g}}let o=t.match(/await\s+page\.(.+)\.(click|dblclick|fill|pressSequentially|type|press|check|uncheck|hover|selectOption)\((.*)\);?\s*$/);if(!o)return;let[,i,a,d]=o,p=Qe(i);if(!p)return;let m={action:br[a],target:p},l=Sr(d);return l!==void 0&&a!=="click"&&a!=="dblclick"&&(m.value=l),m}function Mt(t,e){let n=[],r=Array.isArray(t)?t:t?.content;if(Array.isArray(r))for(let o of r){let i=o?.text;typeof i=="string"&&n.push(i)}else typeof t=="string"&&n.push(t);let s=[];for(let o of n)for(let i of o.split(`
27
- `)){let a=vr(i.trim(),e);a&&s.push(a)}return wr(s)}function wr(t){return t.filter((e,n)=>{let r=t[n+1];return!(e.action==="fill"&&(e.value??"")===""&&r?.action==="fill"&&JSON.stringify(r.target)===JSON.stringify(e.target))})}function Lt(t){let e=[];for(let n of t)if(/"[^"]+"|<[^<>]+>/.test(n.gherkin)){for(let s of n.actions)if(s.action==="fill"&&(s.value??"")===""){e.push(`Step "${n.gherkin}" recorded a fill with an empty value although the step passes one; the typed value was lost. Re-record with: saffron run --rerecord`);break}}return e}function Ke(t,e){let n=t;for(let[r,s]of Object.entries(e).filter(([,o])=>o.length>=3).sort((o,i)=>i[1].length-o[1].length))n=n.split(s).join(`<${r}>`);return n}function Nt(t,e){if(Object.entries(e).filter(([,s])=>s.length>=3).length===0)return t;let r=s=>s===void 0?void 0:Ke(s,e);return t.map(s=>({...s,actions:s.actions.map(o=>({...o,value:r(o.value),url:r(o.url),target:o.target?{...o.target,name:r(o.target.name),label:r(o.target.label),text:r(o.target.text),placeholder:r(o.target.placeholder)}:void 0}))}))}function Ut(t,e){let n=K(e.steps);return t.map((r,s)=>{let o=e.steps[s],i=o?.resolvedTable??o?.table,a=o?.resolvedDocString??o?.docString,d=Object.entries({...n,...L(i),...W(a)}).filter(([,m])=>m.length>=3).sort((m,l)=>l[1].length-m[1].length);if(d.length===0)return r;let p=m=>{if(m===void 0)return;let l=m;for(let[c,g]of d)l=l.split(g).join(`<${c}>`);return l};return{...r,actions:r.actions.map(m=>({...m,value:p(m.value),url:p(m.url),target:m.target?{...m.target,name:p(m.target.name),label:p(m.target.label),text:p(m.target.text),placeholder:p(m.target.placeholder)}:void 0}))}})}function Bt(t,e=new Date){let n=r=>r===void 0?void 0:jt(r,e);return t.map(r=>({...r,actions:r.actions.map(s=>({...s,value:n(s.value),url:n(s.url),target:s.target?{...s.target,name:n(s.target.name),nameRegex:n(s.target.nameRegex),label:n(s.target.label),text:n(s.target.text)}:void 0}))}))}function Vt(t,e){if(e.size===0)return t;let n=r=>r===void 0?void 0:te(r,e);return t.map(r=>({...r,actions:r.actions.map(s=>({...s,value:n(s.value),url:n(s.url),pattern:n(s.pattern),target:s.target?{...s.target,name:n(s.target.name),nameRegex:n(s.target.nameRegex),label:n(s.target.label),text:n(s.target.text),placeholder:n(s.target.placeholder)}:void 0}))}))}function zt(t,e){let n=e??{};if(t==="mcp__playwright__browser_handle_dialog"){let r={action:"handleDialog",value:n.accept?"accept":"dismiss"};return typeof n.promptText=="string"&&n.promptText&&(r.promptText=n.promptText),r}if(t==="mcp__playwright__browser_file_upload"){let r=Array.isArray(n.paths)?n.paths:[];if(r.length===0)return;let s=process.cwd()+"/";return{action:"uploadFile",value:r.map(i=>typeof i=="string"&&i.startsWith(s)?i.slice(s.length):i).join(`
28
- `)}}}var we={aiCalls:0,inputTokens:0,outputTokens:0,cacheReadTokens:0,cacheCreationTokens:0,costUsd:0};async function Ar(){return new Promise((t,e)=>{let n=$r.createServer();n.listen(0,"127.0.0.1",()=>{let{port:r}=n.address();n.close(()=>t(r))}),n.on("error",e)})}function le(t){let e=t.contexts().flatMap(n=>n.pages());return[...e].reverse().find(n=>n.url()!=="about:blank")??e.at(-1)}function Yt(t){let e=t.length;for(let n=t.length-1;n>=0&&t[n].kind==="assertion";n--)e=n;return e}function Wt(t,e){return t[e]?.kind==="assertion"&&e>=Yt(t)}function Ht(t,e,n=!1,r){let s=Yt(t);return t.map((o,i)=>{let a=e[i],d=a&&a.actions.length>0;return o.kind==="assertion"?n&&i<s&&d?a:o:d?r&&i===r.stepIndex&&r.actionIndex>0?{...a,actions:[...o.actions.slice(0,r.actionIndex),...a.actions]}:a:o})}function Cr(t,e){return t.map((n,r)=>{let s=e[r];return s&&s.actions.length>0?s:n})}function Gt(t,e){return{aiCalls:t.aiCalls+e.aiCalls,inputTokens:t.inputTokens+e.inputTokens,outputTokens:t.outputTokens+e.outputTokens,cacheReadTokens:t.cacheReadTokens+e.cacheReadTokens,cacheCreationTokens:t.cacheCreationTokens+e.cacheCreationTokens,costUsd:(t.costUsd??0)+(e.costUsd??0)}}var ke=class{constructor(e){this.options=e}options;browser;cdpEndpoint;stepIndex;getStepIndex(){if(!this.stepIndex&&(this.stepIndex=H(this.options.projectRoot),this.stepIndex.steps.size>0)){let e=this.stepIndex.divergent.length>0?` \xB7 ${this.stepIndex.divergent.length} step(s) have divergent recordings (Level-2 signal)`:"";console.log(`step index: ${this.stepIndex.steps.size} reusable steps from ${this.stepIndex.scannedCaches} cache(s)${e}`)}return this.stepIndex}async recordWithSeeding(e,n){let r=this.getStepIndex(),s=e.steps.length,o={...e.params,...K(e.steps)},i=e.steps.map(x=>{let w=r.steps.size>0?yt(r,x,o):void 0;return w?{gherkin:x.text,keyword:x.keyword,kind:x.kind,table:x.table,docString:x.docString,fromStepSet:x.source?.fromStepSet,actions:w.actions}:void 0}),a=e.steps.map(x=>({gherkin:x.text,keyword:x.keyword,kind:x.kind,table:x.table,docString:x.docString,fromStepSet:x.source?.fromStepSet,actions:[]})),d=new Map,p=[],m=[],l=[],c=[],g={...we},h=0,u=0,f=0,y=x=>({success:x,narrative:m.join(" ")||"Composed entirely from seeded recordings.",adaptations:p,suggestedFeatureEdit:c.length>0?c.join(`
29
- `):void 0,featureEdits:l,recordedSteps:a,announcedSteps:[],usage:g,seededCount:h});for(;f<s;){if(i[f]){let b=f;for(;b<s&&i[b];)b++;let _=i.slice(f,b),S={...e,steps:e.steps.slice(f,b)},R=await be(n,S,this.buildCandidateCache(e,_),{baseURL:this.options.baseURL,actionTimeoutMs:this.options.actionTimeoutMs,retries:this.options.retries,vars:d}),E=R.status==="passed"?b-f:R.failure?.stepIndex??0;for(let D=0;D<E;D++)a[f+D]=_[D];if(h+=E,R.status==="passed"){f=b;continue}let F=f+E;p.push(`Seeded recording for "${e.steps[F].text}" did not replay in this scenario's context; the agent re-recorded it fresh. Divergence signal.`),i[F]=void 0,f=F;continue}if(!this.options.agent)return y(!1);u++;let x=f;for(;x<s&&!i[x];)x++;u>=3&&(x=s);let w=await this.withDialogsVisible(()=>this.options.agent.run({scenario:e,baseURL:this.options.baseURL,mode:"record",cdpEndpoint:this.cdpEndpoint,assertionPolicy:this.options.assertionPolicy,completedSteps:f>0?e.steps.slice(0,f).map(b=>b.resolvedText):void 0,recordOnly:x<s?{from:f,to:x-1}:void 0,takeFingerprint:async()=>Y(le(this.browser)??n)}));if(g=Gt(g,w.usage),m.push(w.narrative),p.push(...w.adaptations),l.push(...w.featureEdits),w.suggestedFeatureEdit&&c.push(w.suggestedFeatureEdit),!w.success)return y(!1);let j=w.announcedSteps.filter(b=>b>=f&&b<s),v=Math.min(s-1,Math.max(j.length>0?Math.max(...j):x-1,f));for(let b=f;b<=v;b++)a[b]=w.recordedSteps[b];f=v+1}return y(!0)}async withDialogsVisible(e){let n=()=>{},r=[],s=[],o=i=>{i.on("dialog",n),r.push(i)};for(let i of this.browser?.contexts()??[]){i.on("page",o),s.push(i);for(let a of i.pages())o(a)}try{return await e()}finally{for(let i of s)i.off("page",o);for(let i of r)try{i.off("dialog",n)}catch{}}}async start(){let e=this.options.browser??"chromium";if(e==="chromium"){let n=await Ar();this.browser=await Rr.launch({headless:!this.options.headed,args:[`--remote-debugging-port=${n}`]}),this.cdpEndpoint=`http://127.0.0.1:${n}`}else this.browser=await(e==="firefox"?Tr:Er).launch({headless:!this.options.headed}),this.cdpEndpoint=void 0}async stop(){await this.browser?.close(),this.browser=void 0}resolveStorageState(){if(!this.options.storageState)return;let e=qt.isAbsolute(this.options.storageState)?this.options.storageState:qt.join(this.options.projectRoot,this.options.storageState);if(!kr.existsSync(e))throw new Error(`storageState file not found: ${e}. Generate one with: npx playwright open --save-storage=${this.options.storageState} <url>`);return e}buildCandidateCache(e,n){return{version:1,feature:e.featurePath,scenario:e.name,recordedAt:new Date().toISOString(),recordedBy:"agent",steps:n}}async proofReplay(e,n){let r=await this.browser.newContext({storageState:this.resolveStorageState()}),s=await r.newPage();return{result:await be(s,e,n,{baseURL:this.options.baseURL,actionTimeoutMs:this.options.actionTimeoutMs,retries:this.options.retries}),context:r,page:s}}async runScenario(e,n={}){let r=await this.runScenarioInner(e,n),s=ae(e);if(s.size>0){let o=i=>i===void 0?i:te(i,s);r.error=o(r.error),r.narrative=o(r.narrative),r.proofError=o(r.proofError),r.suggestedFeatureEdit=o(r.suggestedFeatureEdit),r.adaptations=r.adaptations.map(i=>te(i,s));for(let i of r.stepResults)i.error=o(i.error)}return r}async runScenarioInner(e,n={}){if(!this.browser)throw new Error("Orchestrator not started");let r=Date.now(),{projectRoot:s,baseURL:o,actionTimeoutMs:i,retries:a}=this.options,d=z(s,e.featurePath,e.name),p=U(d),m=await this.browser.newContext({storageState:this.resolveStorageState()}),l=await m.newPage();try{let c;if(p&&(c=await be(l,e,p,{baseURL:o,actionTimeoutMs:i,retries:a}),c.status==="passed"))return{scenario:e,status:"green",source:"cache",stepResults:c.stepResults,adaptations:[],usage:we,durationMs:Date.now()-r};if(!(this.options.agent!==void 0&&this.cdpEndpoint!==void 0&&!n.agentDisabled)){let y=this.options.agent!==void 0&&this.cdpEndpoint===void 0&&!n.agentDisabled?`recording/healing requires Chromium (the agent attaches over CDP). Record with --browser chromium (the default), then replay with --browser ${this.options.browser}.`:"no agent is configured.";return{scenario:e,status:"red",source:"cache",stepResults:c?.stepResults??[],adaptations:[],usage:we,durationMs:Date.now()-r,error:p?c?.status==="stale"?`Cache is stale (feature file changed) and ${y}`:`Replay failed and ${y} ${c?.failure?.error??""}`.trimEnd():`No cache exists and ${y}`}}let h=p!==void 0&&c!==void 0&&c.status==="failed",u=0,f;try{if(h)f=await this.withDialogsVisible(()=>this.options.agent.run({scenario:e,baseURL:o,mode:"heal",model:this.options.healModel,cdpEndpoint:this.cdpEndpoint,assertionPolicy:this.options.assertionPolicy,completedSteps:c.stepResults.filter(y=>y.status==="passed").map(y=>y.gherkin),failedStep:{text:c.failure.stepText,kind:c.failure.kind,error:c.failure.error},takeFingerprint:async()=>{let y=le(this.browser)??l;return Y(y)}}));else if(await l.goto("about:blank"),this.options.reuseSteps!==!1){let y=await this.recordWithSeeding(e,l);u=y.seededCount,f=y}else f=await this.withDialogsVisible(()=>this.options.agent.run({scenario:e,baseURL:o,mode:"record",cdpEndpoint:this.cdpEndpoint,assertionPolicy:this.options.assertionPolicy,takeFingerprint:async()=>{let y=le(this.browser)??l;return Y(y)}}))}catch(y){let x=y instanceof Error?y.message:String(y);return{scenario:e,status:"red",source:h?"agent-heal":"agent-record",stepResults:c?.stepResults??[],adaptations:[],usage:we,durationMs:Date.now()-r,error:`Agent invocation failed: ${x.split(`
30
- `)[0]}`}}if(f.success&&h&&c.failure.kind==="assertion"&&(this.options.assertionPolicy!=="adaptable-mid"||Wt(p.steps,c.failure.stepIndex))){let y=p.steps[c.failure.stepIndex],x=le(this.browser)??l,w=new Map(Object.entries(c.captured)),j=Je(e,c.failure.stepIndex);try{for(let v of y.actions)await Ye(x,v,j,this.options.actionTimeoutMs??5e3,o,w)}catch(v){let b=v instanceof Error?v.message:String(v);return{scenario:e,status:"red",source:"agent-heal",stepResults:c.stepResults,narrative:f.narrative,adaptations:f.adaptations,suggestedFeatureEdit:f.suggestedFeatureEdit,usage:f.usage,durationMs:Date.now()-r,error:`Assertion failed as written: "${y.gherkin}". Saffron never adapts assertions. If this change is intended, update the .feature file or re-record the scenario (saffron run --rerecord --filter @tag). If the recording itself looks wrong (an empty value, a wrong target), re-record it the same way. Verification error: ${b.split(`
31
- `)[0]}`}}}return await this.finalizeAgentRun(e,f,h,p,r,u,h?c?.failure:void 0)}finally{await m.close()}}async finalizeAgentRun(e,n,r,s,o,i=0,a){let d=r?"agent-heal":"agent-record",p=n.recordedSteps.map(v=>({gherkin:v.gherkin,kind:v.kind,status:n.success?"passed":"failed"}));if(!n.success)return{scenario:e,status:"red",source:d,stepResults:p,narrative:n.narrative,adaptations:n.adaptations,usage:n.usage,durationMs:Date.now()-o,error:n.narrative};let m=r?Ht(s.steps,n.recordedSteps,this.options.assertionPolicy==="adaptable-mid",a?{stepIndex:a.stepIndex,actionIndex:a.actionIndex}:void 0):n.recordedSteps,l=[...n.adaptations],c={...n.usage},g,h;if(this.options.verifyProposals!==!1){let v=await this.proofReplay(e,this.buildCandidateCache(e,m));try{if(v.result.status!=="passed"&&v.result.failure){let b=v.result.failure;if(this.options.agent&&!(r&&b.kind==="assertion"&&(this.options.assertionPolicy!=="adaptable-mid"||Wt(s.steps,b.stepIndex))))try{let S=await this.withDialogsVisible(()=>this.options.agent.run({scenario:e,baseURL:this.options.baseURL,mode:"refine",model:r?this.options.healModel:void 0,cdpEndpoint:this.cdpEndpoint,assertionPolicy:this.options.assertionPolicy,completedSteps:v.result.stepResults.filter(R=>R.status==="passed").map(R=>R.gherkin),failedStep:{text:b.stepText,kind:b.kind,error:b.error},takeFingerprint:async()=>Y(le(this.browser)??v.page)}));c=Gt(c,S.usage),S.success&&(l.push(...S.adaptations),m=r?Ht(m,S.recordedSteps,this.options.assertionPolicy==="adaptable-mid"):Cr(m,S.recordedSteps),await v.context.close(),v=await this.proofReplay(e,this.buildCandidateCache(e,m)))}catch{}}g=v.result.status==="passed",g||(h=v.result.failure?.error??`proof replay ${v.result.status}`)}finally{await v.context.close().catch(()=>{})}}let u=[...n.featureEdits];for(let v of St(m,H(this.options.projectRoot)))l.push(`duplicate wording: "${v.from}" recorded exactly the same actions as the existing step "${v.to}" (${v.feature} \u203A ${v.scenario}). Accept with --with-feature-edit to converge on the canonical wording.`),u.some(b=>b.index===v.index)||u.push({index:v.index,text:v.to});let f=ae(e),y=v=>f.size>0?te(v,f):v;l=l.map(y);let x={meta:{createdAt:new Date().toISOString(),mode:r?"heal":"record",narrative:y(n.narrative),adaptations:l,suggestedFeatureEdit:n.suggestedFeatureEdit?y(n.suggestedFeatureEdit):void 0,featureEdits:u.length>0?u:void 0,verified:g,proofError:h?y(h):void 0,seededSteps:i>0?i:void 0,usage:c},cache:{version:1,feature:e.featurePath,scenario:e.name,recordedAt:new Date().toISOString(),recordedBy:"agent",steps:m}},w=Lt(m);w.length>0&&(g=!1,h=[h,...w].filter(Boolean).join(" "));let j=ut(this.options.projectRoot,e.featurePath,e.name);return Ct(j,x),{scenario:e,status:"yellow",source:d,stepResults:p,narrative:n.narrative,adaptations:l,suggestedFeatureEdit:n.suggestedFeatureEdit,featureEdits:u.length>0?u:void 0,verified:g,proofError:h,seededSteps:i>0?i:void 0,proposalFile:j,usage:c,durationMs:Date.now()-o}}};import en from"node:path";import{createRequire as jr}from"node:module";import{query as Ir}from"@anthropic-ai/claude-agent-sdk";import{createSdkMcpServer as Pr,tool as ne}from"@anthropic-ai/claude-agent-sdk";import{z as k}from"zod";var O=t=>({content:[{type:"text",text:t}]});function Jt(t){let e={};return t.role&&(e.role=t.role),t.name&&(e.name=t.name),t.nameRegex&&(e.nameRegex=t.nameRegex),t.label&&(e.label=t.label),t.text&&(e.text=t.text),t.selector&&(e.fallbackSelectors=[t.selector]),t.frame&&(e.frame=t.frame),Object.keys(e).length>0?e:void 0}var Qt={role:k.string().optional().describe("ARIA role of the element"),name:k.string().optional().describe("Accessible name \u2014 use the SHORTEST stable substring; never include volatile content like prices or dates"),nameRegex:k.string().optional().describe("Regex for the accessible name when it embeds volatile content, e.g. 'Select \\\\{date\\\\+1\\\\} as checkin' cannot work \u2014 instead use nameRegex 'Select .* as checkin'"),label:k.string().optional().describe("Form-label text for getByLabel \u2014 the literal <label> text only, never a free-text description"),text:k.string().optional().describe("getByText locator text"),selector:k.string().optional().describe("CSS fallback selector"),frame:k.string().optional().describe(`CSS selector of the iframe hosting the element, e.g. 'iframe[title="Feedback widget"]' \u2014 REQUIRED whenever the element lives inside an iframe; without it replay looks only at the top-level page`)};function Kt(t){return Pr({name:"saffron",version:"0.1.0",tools:[ne("saffron_step","Announce the Gherkin step you are about to perform. MUST be called before executing browser actions for each step, with the step's zero-based index and exact text.",{index:k.number().int().min(0),text:k.string(),adaptation:k.string().optional().describe("If the written step does not match the real UI and you are deviating from it, describe the deviation in one sentence.")},async e=>(t.currentStepIndex=e.index,t.announced.add(e.index),e.adaptation&&t.adaptations.push(`Step ${e.index+1} ("${e.text}"): ${e.adaptation}`),O(`Recording step ${e.index}: ${e.text}`))),ne("saffron_capture",`Record a captureText action for the current step: at replay time, the target element's text is read and stored under saveAs for later expectDiffers comparisons. Use for steps like 'I record the displayed price as "X"'. The target must select exactly the element whose text is the value.`,{saveAs:k.string().describe("Name to store the captured text under"),...Qt},async e=>{let n=Jt(e);return n?(t.addActions([{action:"captureText",target:n,saveAs:e.saveAs}]),O(`Capture recorded as "${e.saveAs}".`)):O("ERROR: capture needs a target (role/name, nameRegex, label, text, or selector).")}),ne("saffron_dialog","Record how a native dialog (alert/confirm/prompt) must be handled at replay. Call this IMMEDIATELY whenever an action triggers a native dialog \u2014 whether you handled it via browser_handle_dialog or the browser reported it as already handled. At replay Saffron arms this handler BEFORE the triggering action, so without this call the replay will auto-dismiss the dialog and diverge from what you saw.",{accept:k.boolean().describe("true = accept/OK the dialog, false = dismiss/cancel"),promptText:k.string().optional().describe("Text typed into a prompt() before accepting")},async e=>(t.addArmedAction({action:"handleDialog",value:e.accept?"accept":"dismiss",...e.promptText?{promptText:e.promptText}:{}}),O(`Dialog handling recorded (${e.accept?"accept":"dismiss"}).`))),ne("saffron_wait_api","Record a network wait for the current step: replay will block until a matching API response is observed (responses from the triggering step count). Call AFTER you verified via browser_network_requests that the response actually occurred with the expected status/body. Use a path-only urlPattern regex and never literal volatile IDs (/api/orders/\\d+, not /api/orders/8842).",{urlPattern:k.string().describe("Regex matched against the response URL \u2014 path-only for portability"),method:k.string().optional().describe("HTTP method to match (any if omitted)"),status:k.string().optional().describe("Expected status \u2014 exact ('201') or class ('2xx'); default any 2xx"),bodyPattern:k.string().optional().describe(`Regex the response body must match, e.g. '"status"\\s*:\\s*"READY"' for polling waits`)},async e=>(t.addActions([{action:"waitForResponse",urlPattern:e.urlPattern,...e.method?{method:e.method}:{},...e.status?{status:e.status}:{},...e.bodyPattern?{pattern:e.bodyPattern}:{}}]),O("Network wait recorded."))),ne("saffron_assert","Record a verified assertion for the current Then step. Call ONLY after you have confirmed the condition holds via a page snapshot. If the condition does NOT hold, do not call this \u2014 call saffron_done with success=false instead. NEVER record volatile content (prices, dates, counters) as literal expected text \u2014 use kind=matches with a pattern, or kind=differs against captured values.",{kind:k.enum(["visible","notVisible","text","url","value","differs","matches","attribute","response"]),...Qt,expected:k.string().optional().describe("Expected text/value for kind=text|value \u2014 stable text only, never volatile values"),url:k.string().optional().describe("URL substring for kind=url (path only, no host)"),pattern:k.string().optional().describe("kind=matches|attribute: regex the target's text (or attribute) must match, e.g. 'NOK [\\\\d,]+' for a price"),attribute:k.string().optional().describe("kind=attribute: attribute name to check, e.g. 'href' for link-target assertions \u2014 use this for 'X should link to Y' instead of clicking through"),capture:k.string().optional().describe("kind=differs: name of the captured value on the LEFT of the comparison (omit when comparing the target element's live text)"),urlPattern:k.string().optional().describe("kind=response: regex matched against the response URL \u2014 path-only for portability, never literal volatile IDs (use /api/orders/\\d+)"),method:k.string().optional().describe("kind=response: HTTP method to match (any if omitted)"),status:k.string().optional().describe("kind=response: expected status \u2014 exact ('201') or class ('2xx'); default any 2xx"),bodyPattern:k.string().optional().describe("kind=response: regex the response body must match (verify via browser_network_requests first)"),compareTo:k.string().optional().describe("kind=differs: name of the captured value to compare against")},async e=>{let n=Jt(e),r;switch(e.kind){case"visible":r={action:"expectVisible",target:n};break;case"notVisible":r={action:"expectNotVisible",target:n};break;case"text":r={action:"expectText",target:n,value:e.expected??""};break;case"value":r={action:"expectValue",target:n,value:e.expected??""};break;case"url":r={action:"expectUrl",url:e.url??""};break;case"differs":if(!e.compareTo)return O("ERROR: kind=differs requires compareTo.");if(!e.capture&&!n)return O("ERROR: kind=differs needs either capture (a stored name) or a target element.");r={action:"expectDiffers",target:n,value:e.capture,compareTo:e.compareTo};break;case"matches":if(!e.pattern)return O("ERROR: kind=matches requires pattern.");r={action:"expectMatches",target:n,pattern:e.pattern};break;case"attribute":if(!e.attribute||!e.pattern)return O("ERROR: kind=attribute requires attribute and pattern.");r={action:"expectAttribute",target:n,attribute:e.attribute,pattern:e.pattern};break;case"response":if(!e.urlPattern)return O("ERROR: kind=response requires urlPattern.");r={action:"expectResponse",urlPattern:e.urlPattern,...e.method?{method:e.method}:{},...e.status?{status:e.status}:{},...e.bodyPattern?{pattern:e.bodyPattern}:{}};break}return!["url","differs","response"].includes(e.kind)&&!n?O("ERROR: assertion needs a target (role/name, nameRegex, label, text, or selector)."):(t.addActions([r]),O("Assertion recorded."))}),ne("saffron_done","Finalize the run. Call exactly once, after the final step: success=true only if every step's intent was achieved and every assertion verified.",{success:k.boolean(),narrative:k.string().describe("2-4 sentence summary of the run: what happened, and why it failed if it did."),suggestedFeatureEdit:k.string().optional().describe("If you adapted any steps: the corrected Gherkin for those steps, as you would rewrite them in the .feature file (free text, for the human report)."),featureEdits:k.array(k.object({index:k.number().int().min(0).describe("zero-based step index"),text:k.string().describe("replacement step text WITHOUT the Given/When/Then keyword")})).optional().describe("Machine-applicable version of the suggested edits: one entry per adapted step. Provide this whenever you adapted a step.")},async e=>(t.done=!0,t.success=e.success,t.narrative=e.narrative,t.suggestedFeatureEdit=e.suggestedFeatureEdit,t.featureEdits=e.featureEdits??[],O("Run finalized.")))]})}function Xt(t={}){let e=t.deliberateSnapshots?`
23
+ Defined in StepSet **${f.fromStepSet}**`:""}`}}:void 0}}),r.onDidOpen(c=>m(c.document)),r.onDidChangeContent(c=>m(c.document)),r.onDidSave(()=>d()),n.onDidChangeWatchedFiles(()=>d()),r.listen(n),n.listen()}function Tt(t,e){let n=/\{env:([A-Za-z_][A-Za-z0-9_]*)\}/g,r;for(;r=n.exec(t);)if(e>=r.index&&e<=r.index+r[0].length)return{name:r[1],start:r.index,end:r.index+r[0].length}}function Et(t,e){for(let n of[".env",".env.example"]){let r=te.join(t,n);if(!kt.existsSync(r))continue;let i=kt.readFileSync(r,"utf8").split(`
24
+ `).findIndex(o=>new RegExp(`^\\s*(?:export\\s+)?${e}\\s*=`).test(o));if(i!==-1)return{file:r,line:i}}}import Ct from"node:fs";import gr from"node:path";var Pt=/\{env:([A-Za-z_][A-Za-z0-9_]*)\}/g;function le(t){return t.replace(Pt,(e,n)=>{let r=process.env[n];if(r===void 0)throw new Error(`environment variable ${n} is not set (referenced as {env:${n}}) \u2014 export it or add it to .env`);return r})}function Be(t){let e=new Set;for(let n of t)if(n)for(let r of n.matchAll(Pt))e.add(r[1]);return e}function qe(t){let e=[];for(let n of t.steps){e.push(n.text,n.resolvedText),n.docString&&e.push(n.docString);for(let r of n.table??[])e.push(...r)}return e}function de(t){let e=new Map;for(let n of Be(qe(t))){let r=process.env[n];r!==void 0&&e.set(n,r)}return e}function ne(t,e){let n=t;for(let[r,s]of[...e.entries()].sort((i,o)=>o[1].length-i[1].length))s.length<4||(n=n.split(s).join(`{env:${r}}`));return n}function Ft(t){let e=gr.join(t,".env");if(Ct.existsSync(e))for(let n of Ct.readFileSync(e,"utf8").split(`
25
+ `)){let r=n.trim();if(!r||r.startsWith("#"))continue;let s=r.indexOf("=");if(s<=0)continue;let i=r.slice(0,s).trim();if(!/^[A-Za-z_][A-Za-z0-9_]*$/.test(i))continue;let o=r.slice(s+1).trim();(o.startsWith('"')&&o.endsWith('"')||o.startsWith("'")&&o.endsWith("'"))&&(o=o.slice(1,-1)),process.env[i]===void 0&&(process.env[i]=o)}}import Yt from"node:fs";import Ar from"node:net";import Jt from"node:path";import{chromium as Cr,firefox as Pr,webkit as Fr}from"playwright";import V from"node:fs";import ve from"node:path";function jt(t,e){V.mkdirSync(ve.dirname(t),{recursive:!0}),V.writeFileSync(t,`${JSON.stringify(e,null,2)}
26
+ `)}function re(t){return JSON.parse(V.readFileSync(t,"utf8"))}function pe(t){let e=ve.join(t,".saffron","proposals");if(!V.existsSync(e))return[];let n=[];for(let r of V.readdirSync(e)){let s=ve.join(e,r);if(V.statSync(s).isDirectory())for(let i of V.readdirSync(s)){if(!i.endsWith(".json"))continue;let o=ve.join(s,i);n.push({file:o,proposal:re(o)})}}return n}function It(t,e){let n=re(e),r=B(t,n.cache.feature,n.cache.scenario);return ee(r,n.cache),V.rmSync(e),r}function _t(t){V.rmSync(t)}import Dt from"node:path";var mr=/\{date([+-]\d+)?(?::([^}]+))?\}/g;function hr(t,e){let n=String(t.getFullYear()),r=String(t.getMonth()+1).padStart(2,"0"),s=String(t.getDate()).padStart(2,"0");return e.replaceAll("YYYY",n).replaceAll("MM",r).replaceAll("DD",s).replaceAll("M",String(t.getMonth()+1)).replaceAll("D",String(t.getDate()))}function We(t,e=new Date){return t.replace(mr,(n,r,s)=>{let i=new Date(e);return i.setDate(i.getDate()+(r?parseInt(r,10):0)),hr(i,s??"YYYY-MM-DD")})}var yr=/\b(\d{4})-(\d{2})-(\d{2})\b/g,xr=400;function Ot(t,e=new Date){let n=new Date(e.getFullYear(),e.getMonth(),e.getDate());return t.replace(yr,(r,s,i,o)=>{let a=new Date(Number(s),Number(i)-1,Number(o));if(Number.isNaN(a.getTime()))return r;let d=Math.round((a.getTime()-n.getTime())/864e5);return Math.abs(d)>xr?r:d===0?"{date}":`{date${d>0?"+":""}${d}}`})}import{createHash as Sr}from"node:crypto";async function Y(t){let e;try{e=await t.locator("body").ariaSnapshot({timeout:3e3})}catch{return"sha256:unavailable"}let n=e.replace(/\d+/g,"#").replace(/\s+/g," ").trim();return`sha256:${Sr("sha256").update(n).digest("hex")}`}var Ye=t=>new Promise(e=>setTimeout(e,t)),Ge=class{entries=[];seq=0;prevStepSeq=0;curStepSeq=0;listener;context;attach(e,n){this.context=e,this.listener=r=>{let s={seq:++this.seq,url:r.url(),method:r.request().method(),status:r.status()};if(this.entries.push(s),n){let i=r.headers()["content-type"]??"";/json|text|xml/i.test(i)&&r.text().then(o=>{s.body=o.length>262144?o.slice(0,262144):o}).catch(()=>{})}},e.on("response",this.listener)}detach(){this.context&&this.listener&&this.context.off("response",this.listener)}markStep(){this.prevStepSeq=this.curStepSeq,this.curStepSeq=this.seq}sincePreviousStep(){return this.entries.filter(e=>e.seq>this.prevStepSeq)}all(){return this.entries}};function br(t,e){if(!e)return t>=200&&t<300;let n=/^([1-5])xx$/i.exec(e.trim());if(n){let r=Number(n[1])*100;return t>=r&&t<r+100}return t===Number(e.trim())}function Mt(t,e,n,r,s){return!(!e.test(t.url)||n&&t.method.toUpperCase()!==n.toUpperCase()||!br(t.status,r)||s&&!s.test(t.body??""))}var vr=(t,e)=>`response matching ${t.method??"any-method"} /${e}/ status ${t.status??"2xx"}${t.pattern?` body /${t.pattern}/`:""}`;function Lt(t,e,n,r=!1){let s=a=>le(We(q(a,n))),i=[],o=a=>{if(e.role){let d=e.nameRegex?new RegExp(s(e.nameRegex),"i"):e.name?s(e.name):void 0;i.push(a.getByRole(e.role,{name:d,exact:!1}))}e.label&&i.push(a.getByLabel(s(e.label))),e.placeholder&&i.push(a.getByPlaceholder(s(e.placeholder))),e.text&&i.push(a.getByText(s(e.text))),e.testId&&i.push(a.getByTestId(s(e.testId)));for(let d of e.fallbackSelectors??[])i.push(a.locator(d))};if(e.frame)o(t.frameLocator(s(e.frame)));else if(o(t),r)for(let a of t.frames())a!==t.mainFrame()&&o(a);if(i.length===0)throw new Error("Action target has neither role nor fallback selectors");return i}async function z(t,e,n){let r=Date.now()+e,s;for(;Date.now()<r;){try{if(await t())return}catch(i){s=i}await Ye(100)}throw new Error(`Timed out waiting for ${n}${s?` (${String(s)})`:""}`)}async function N(t,e){let n;for(let r of t)try{await e(r.first());return}catch(s){n=s}throw n}var He=t=>t.replace(/\s+/g," ").trim();async function Je(t,e,n,r,s,i=new Map,o){let a=g=>le(We(q(g,n))),d=e.value!==void 0?a(e.value):void 0,p=e.url!==void 0?a(e.url):void 0,m=e.action==="expectVisible"||e.action==="expectText"||e.action==="expectValue"||e.action==="expectMatches"||e.action==="expectAttribute"||e.action==="captureText",c=e.target?Lt(t,e.target,n,m):[],l={timeout:r},u={timeout:Math.min(1e3,r)},h=g=>async()=>{for(let f of c)try{if(await g(f.first()))return!0}catch{}return!1};switch(e.action){case"goto":{if(!p)throw new Error("goto requires url");let g=/^https?:\/\//.test(p)?p:new URL(p,s).toString();await t.goto(g,l);return}case"click":return N(c,g=>g.click(l));case"fill":return N(c,g=>g.fill(d??"",l));case"press":return c.length>0?N(c,g=>g.press(d??"",l)):t.keyboard.press(d??"");case"selectOption":return N(c,async g=>{await g.selectOption(d??"",l)});case"check":return N(c,g=>g.check(l));case"uncheck":return N(c,g=>g.uncheck(l));case"hover":return N(c,g=>g.hover(l));case"waitFor":return c.length>0?N(c,g=>g.waitFor({state:"visible",timeout:r})):Ye(Math.min(Number(d??"0"),r));case"expectVisible":return z(h(g=>g.isVisible()),r,"target to be visible");case"expectNotVisible":return N(c,g=>g.waitFor({state:"hidden",timeout:r}));case"expectText":return z(h(async g=>(await g.textContent(u)??"").includes(d??"")),r,`text "${d}"`);case"expectValue":return z(h(async g=>await g.inputValue(u)===(d??"")),r,`input value "${d}"`);case"expectUrl":{let g=p??d??"";return z(async()=>t.context().pages().some(f=>f.url().includes(g)),r,`URL containing "${g}" in any tab (current: ${t.context().pages().map(f=>f.url()).join(", ")})`)}case"handleDialog":{let g=(d??"accept")!=="dismiss",f=e.promptText?a(e.promptText):void 0;t.once("dialog",b=>{g?b.accept(f):b.dismiss()});return}case"uploadFile":{let g=(d??"").split(`
27
+ `).filter(Boolean).map(f=>Dt.isAbsolute(f)?f:Dt.resolve(f));if(g.length===0)throw new Error("uploadFile requires a path");if(c.length>0)return N(c,f=>f.setInputFiles(g,l));t.once("filechooser",f=>{f.setFiles(g)});return}case"dragTo":{if(!e.toTarget)throw new Error("dragTo requires toTarget");let g=Lt(t,e.toTarget,n);return N(c,f=>f.dragTo(g[0].first(),l))}case"captureText":{if(!e.saveAs)throw new Error("captureText requires saveAs");return z(h(async g=>{let f=He(await g.textContent(u)??"");return f===""?!1:(i.set(e.saveAs,f),!0)}),r,`non-empty text to capture as "${e.saveAs}"`)}case"expectDiffers":{if(!e.compareTo)throw new Error("expectDiffers requires compareTo");let g=i.get(e.compareTo);if(g===void 0)throw new Error(`expectDiffers: no captured value named "${e.compareTo}"`);if(c.length>0)return z(h(async y=>He(await y.textContent(u)??"")!==g),r,`target text to differ from "${e.compareTo}" (${g})`);let f=d??"",b=i.get(f);if(b===void 0)throw new Error(`expectDiffers: no captured value named "${f}"`);if(b===g)throw new Error(`expectDiffers: "${f}" (${b}) equals "${e.compareTo}" (${g})`);return}case"expectAttribute":{if(!e.attribute)throw new Error("expectAttribute requires attribute");if(!e.pattern)throw new Error("expectAttribute requires pattern");let g=new RegExp(e.pattern,"i");return z(h(async f=>g.test(await f.getAttribute(e.attribute,u)??"")),r,`attribute ${e.attribute} to match /${e.pattern}/i`)}case"expectMatches":{if(!e.pattern)throw new Error("expectMatches requires pattern");let g=new RegExp(e.pattern,"i");return z(h(async f=>g.test(He(await f.textContent(u)??""))),r,`target text to match /${e.pattern}/i`)}case"waitForResponse":case"expectResponse":{if(!e.urlPattern)throw new Error(`${e.action} requires urlPattern`);let g=new RegExp(a(e.urlPattern)),f=e.pattern?new RegExp(a(e.pattern)):void 0;if(!o){await t.waitForResponse(y=>Mt({seq:0,url:y.url(),method:y.request().method(),status:y.status()},g,e.method,e.status,void 0),l);return}let b=()=>e.action==="expectResponse"?o.all():o.sincePreviousStep();return z(async()=>b().some(y=>Mt(y,g,e.method,e.status,f)),r,vr(e,e.urlPattern))}default:throw new Error(`Unknown action type: ${e.action}`)}}function Nt(t,e){return t.actions.some(n=>[n.value,n.url,n.pattern,n.target?.name,n.target?.nameRegex,n.target?.label,n.target?.text,n.target?.placeholder].some(r=>r?.includes(e)))}function wr(t,e){return e.steps.length!==t.steps.length?!1:e.steps.every((n,r)=>{let s=t.steps[r];if(n.gherkin!==s.text)return!1;let i=n.table,o=s.table;if(!!i!=!!o)return!1;if(i&&o){let a=Object.keys(L(i)),d=Object.keys(L(o));if(a.length>0&&d.length>0){if(JSON.stringify(a)!==JSON.stringify(d))return!1}else if(JSON.stringify(i)!==JSON.stringify(o))return!1}if(n.docString!==void 0!=(s.docString!==void 0))return!1;if(n.docString!==void 0&&s.docString!==void 0&&n.docString!==s.docString){let a=e.steps.some(p=>Nt(p,"<docstring>")),d=e.steps.some(p=>Nt(p,n.docString));if(!a||d)return!1}return!0})}function Ke(t,e){let n=t.steps[e],r=n?.resolvedTable??n?.table;return{...t.params,...Q(t.steps),...L(r),...W(n?.resolvedDocString??n?.docString)}}async function ue(t,e,n,r={}){let s=r.actionTimeoutMs??5e3,i=r.retries??1,o=[],a=r.vars??new Map,d=()=>Object.fromEntries(a),p=n.steps.some(u=>u.actions.some(h=>(h.action==="waitForResponse"||h.action==="expectResponse")&&h.pattern!==void 0)),m=new Ge;m.attach(t.context(),p);let c=t,l=()=>{let u=t.context().pages(),h=u[u.length-1];h&&h!==c&&!h.isClosed()&&(c=h)};if(!wr(e,n))return m.detach(),{status:"stale",stepResults:o,captured:d()};try{for(let u=0;u<n.steps.length;u++){let h=n.steps[u],g=Ke(e,u);m.markStep();let f=!1,b=0;for(let y=0;y<h.actions.length;y++){let x=h.actions[y];l(),x.pageFingerprint&&await Y(c)!==x.pageFingerprint&&(f=!0);let E,w=!1;for(let v=0;v<=i&&!w;v++){v>0&&(b++,await Ye(250*v),l());try{await Je(c,x,g,s,r.baseURL,a,m),w=!0}catch(F){E=F}}if(!w){let v=E instanceof Error?E.message:String(E);o.push({gherkin:h.gherkin,fromStepSet:h.fromStepSet,kind:h.kind,status:"failed",drift:f,...b?{retries:b}:{},error:v});for(let F=u+1;F<n.steps.length;F++)o.push({gherkin:n.steps[F].gherkin,kind:n.steps[F].kind,status:"skipped"});return{status:"failed",failure:{stepIndex:u,actionIndex:y,stepText:h.gherkin,kind:h.kind,error:v},stepResults:o,captured:d()}}}o.push({gherkin:h.gherkin,fromStepSet:h.fromStepSet,kind:h.kind,status:"passed",drift:f,...b?{retries:b}:{}})}return{status:"passed",stepResults:o,captured:d()}}finally{m.detach()}}var Ut=new Set(["expectVisible","expectNotVisible","expectText","expectUrl","expectValue","expectDiffers","expectMatches","expectAttribute","expectResponse"]);var we=class{steps;currentStepIndex=-1;done=!1;success=!1;narrative="";adaptations=[];suggestedFeatureEdit;featureEdits=[];announced=new Set;pendingFingerprint;constructor(e){this.steps=e.steps.map(n=>({gherkin:n.text,keyword:n.keyword,kind:n.kind,table:n.table,docString:n.docString,fromStepSet:n.source?.fromStepSet,actions:[]}))}addArmedAction(e){if(this.done)return;let n=Math.max(this.currentStepIndex,0),r=this.steps[n];if(!r||r.actions.some(o=>o.action===e.action&&o.value===e.value&&o.promptText===e.promptText))return;let i=Math.max(r.actions.length-1,0);r.actions.splice(i,0,e)}addActions(e){if(this.done||e.length===0)return;let n=Math.max(this.currentStepIndex,0),r=this.steps[n];r&&(this.pendingFingerprint&&e[0]&&(e[0].pageFingerprint=this.pendingFingerprint,this.pendingFingerprint=void 0),r.actions.push(...e))}},J=t=>t.replace(/\\(['"\\])/g,"$1");function kr(t){let e=t.match(/'((?:[^'\\]|\\.)*)'/);return e?J(e[1]):void 0}function Qe(t){let e={},n=t.match(/(?:frameLocator\('((?:[^'\\]|\\.)*)'\)|locator\('((?:[^'\\]|\\.)*)'\)\.contentFrame\(\))/);n&&(e.frame=J(n[1]??n[2]),t=t.slice((n.index??0)+n[0].length));let r=t.match(/getByRole\('([^']+)'(?:,\s*\{([^}]*)\})?\)/);if(r){e.role=r[1];let o=(r[2]??"").match(/name:\s*'((?:[^'\\]|\\.)*)'/);o&&(e.name=J(o[1]))}let s=[[/getByLabel\('((?:[^'\\]|\\.)*)'\)/,"label"],[/getByText\('((?:[^'\\]|\\.)*)'\)/,"text"],[/getByTestId\('((?:[^'\\]|\\.)*)'\)/,"testId"],[/getByPlaceholder\('((?:[^'\\]|\\.)*)'\)/,"placeholder"]];for(let[o,a]of s){let d=t.match(o);d&&(e[a]=J(d[1]))}let i=t.match(/(?:^|\.)locator\('((?:[^'\\]|\\.)*)'\)/);return i&&(e.fallbackSelectors=[J(i[1])]),Object.keys(e).length>0?e:void 0}function $r(t,e){if(e&&t.startsWith(e)){let n=t.slice(e.length);return n.startsWith("/")?n:`/${n}`}return t}var Rr={click:"click",dblclick:"click",fill:"fill",pressSequentially:"fill",type:"fill",press:"press",check:"check",uncheck:"uncheck",hover:"hover",selectOption:"selectOption"};function Tr(t,e){let n=t.match(/page\.goto\('((?:[^'\\]|\\.)*)'\)/);if(n)return{action:"goto",url:$r(J(n[1]),e)};let r=t.match(/page\.keyboard\.press\('((?:[^'\\]|\\.)*)'\)/);if(r)return{action:"press",value:J(r[1])};let s=t.match(/await\s+page\.(.+)\.dragTo\(page\.(.+?)\);?\s*$/);if(s){let l=Qe(s[1]),u=Qe(s[2]);if(l&&u)return{action:"dragTo",target:l,toTarget:u}}let i=t.match(/await\s+page\.(.+)\.(click|dblclick|fill|pressSequentially|type|press|check|uncheck|hover|selectOption)\((.*)\);?\s*$/);if(!i)return;let[,o,a,d]=i,p=Qe(o);if(!p)return;let m={action:Rr[a],target:p},c=kr(d);return c!==void 0&&a!=="click"&&a!=="dblclick"&&(m.value=c),m}function Vt(t,e){let n=[],r=Array.isArray(t)?t:t?.content;if(Array.isArray(r))for(let i of r){let o=i?.text;typeof o=="string"&&n.push(o)}else typeof t=="string"&&n.push(t);let s=[];for(let i of n)for(let o of i.split(`
28
+ `)){let a=Tr(o.trim(),e);a&&s.push(a)}return Er(s)}function Er(t){return t.filter((e,n)=>{let r=t[n+1];return!(e.action==="fill"&&(e.value??"")===""&&r?.action==="fill"&&JSON.stringify(r.target)===JSON.stringify(e.target))})}function zt(t){let e=[];for(let n of t)if(/"[^"]+"|<[^<>]+>/.test(n.gherkin)){for(let s of n.actions)if(s.action==="fill"&&(s.value??"")===""){e.push(`Step "${n.gherkin}" recorded a fill with an empty value although the step passes one; the typed value was lost. Re-record with: saffron run --rerecord`);break}}return e}function Xe(t,e){let n=t;for(let[r,s]of Object.entries(e).filter(([,i])=>i.length>=3).sort((i,o)=>o[1].length-i[1].length))n=n.split(s).join(`<${r}>`);return n}function Bt(t,e){let n=Object.entries(e).filter(([,o])=>o.length>=3);if(n.length===0)return t;let r=o=>o===void 0?void 0:Xe(o,e),s=[...n].sort((o,a)=>a[1].length-o[1].length),i=o=>{if(o!==void 0){for(let[a,d]of s)if(o.includes(d))return`<${a}>`;return o}};return t.map(o=>({...o,actions:o.actions.map(a=>{let d=Ut.has(a.action)&&a.action!=="expectValue";return{...a,value:d?i(a.value):r(a.value),url:r(a.url),target:a.target?{...a.target,name:d?i(a.target.name):r(a.target.name),label:r(a.target.label),text:d?i(a.target.text):r(a.target.text),placeholder:r(a.target.placeholder)}:void 0}})}))}function qt(t,e){let n=Q(e.steps);return t.map((r,s)=>{let i=e.steps[s],o=i?.resolvedTable??i?.table,a=i?.resolvedDocString??i?.docString,d=Object.entries({...n,...L(o),...W(a)}).filter(([,m])=>m.length>=3).sort((m,c)=>c[1].length-m[1].length);if(d.length===0)return r;let p=m=>{if(m===void 0)return;let c=m;for(let[l,u]of d)c=c.split(u).join(`<${l}>`);return c};return{...r,actions:r.actions.map(m=>({...m,value:p(m.value),url:p(m.url),target:m.target?{...m.target,name:p(m.target.name),label:p(m.target.label),text:p(m.target.text),placeholder:p(m.target.placeholder)}:void 0}))}})}function Wt(t,e=new Date){let n=r=>r===void 0?void 0:Ot(r,e);return t.map(r=>({...r,actions:r.actions.map(s=>({...s,value:n(s.value),url:n(s.url),target:s.target?{...s.target,name:n(s.target.name),nameRegex:n(s.target.nameRegex),label:n(s.target.label),text:n(s.target.text)}:void 0}))}))}function Ht(t,e){if(e.size===0)return t;let n=r=>r===void 0?void 0:ne(r,e);return t.map(r=>({...r,actions:r.actions.map(s=>({...s,value:n(s.value),url:n(s.url),pattern:n(s.pattern),target:s.target?{...s.target,name:n(s.target.name),nameRegex:n(s.target.nameRegex),label:n(s.target.label),text:n(s.target.text),placeholder:n(s.target.placeholder)}:void 0}))}))}function Gt(t,e){let n=e??{};if(t==="mcp__playwright__browser_handle_dialog"){let r={action:"handleDialog",value:n.accept?"accept":"dismiss"};return typeof n.promptText=="string"&&n.promptText&&(r.promptText=n.promptText),r}if(t==="mcp__playwright__browser_file_upload"){let r=Array.isArray(n.paths)?n.paths:[];if(r.length===0)return;let s=process.cwd()+"/";return{action:"uploadFile",value:r.map(o=>typeof o=="string"&&o.startsWith(s)?o.slice(s.length):o).join(`
29
+ `)}}}var se={aiCalls:0,inputTokens:0,outputTokens:0,cacheReadTokens:0,cacheCreationTokens:0,costUsd:0};async function jr(){return new Promise((t,e)=>{let n=Ar.createServer();n.listen(0,"127.0.0.1",()=>{let{port:r}=n.address();n.close(()=>t(r))}),n.on("error",e)})}function fe(t){let e=t.contexts().flatMap(n=>n.pages());return[...e].reverse().find(n=>n.url()!=="about:blank")??e.at(-1)}function Zt(t){let e=t.length;for(let n=t.length-1;n>=0&&t[n].kind==="assertion";n--)e=n;return e}function Kt(t,e){return t[e]?.kind==="assertion"&&e>=Zt(t)}function Qt(t,e,n=!1,r){let s=Zt(t);return t.map((i,o)=>{let a=e[o],d=a&&a.actions.length>0;return i.kind==="assertion"?n&&o<s&&d?a:i:d?r&&o===r.stepIndex&&r.actionIndex>0?{...a,actions:[...i.actions.slice(0,r.actionIndex),...a.actions]}:a:i})}function Ir(t,e){return t.map((n,r)=>{let s=e[r];return s&&s.actions.length>0?s:n})}function Xt(t,e){return{aiCalls:t.aiCalls+e.aiCalls,inputTokens:t.inputTokens+e.inputTokens,outputTokens:t.outputTokens+e.outputTokens,cacheReadTokens:t.cacheReadTokens+e.cacheReadTokens,cacheCreationTokens:t.cacheCreationTokens+e.cacheCreationTokens,costUsd:(t.costUsd??0)+(e.costUsd??0)}}var ke=class{constructor(e){this.options=e}options;browser;cdpEndpoint;stepIndex;getStepIndex(){if(!this.stepIndex&&(this.stepIndex=H(this.options.projectRoot),this.stepIndex.steps.size>0)){let e=this.stepIndex.divergent.length>0?` \xB7 ${this.stepIndex.divergent.length} step(s) have divergent recordings (Level-2 signal)`:"";console.log(`step index: ${this.stepIndex.steps.size} reusable steps from ${this.stepIndex.scannedCaches} cache(s)${e}`)}return this.stepIndex}async recordWithSeeding(e,n){let r=this.getStepIndex(),s=e.steps.length,i={...e.params,...Q(e.steps)},o=e.steps.map(y=>{let x=r.steps.size>0?yt(r,y,i):void 0;return x?{gherkin:y.text,keyword:y.keyword,kind:y.kind,table:y.table,docString:y.docString,fromStepSet:y.source?.fromStepSet,actions:x.actions}:void 0}),a=e.steps.map(y=>({gherkin:y.text,keyword:y.keyword,kind:y.kind,table:y.table,docString:y.docString,fromStepSet:y.source?.fromStepSet,actions:[]})),d=new Map,p=[],m=[],c=[],l=[],u={...se},h=0,g=0,f=0,b=y=>({success:y,narrative:m.join(" ")||"Composed entirely from seeded recordings.",adaptations:p,suggestedFeatureEdit:l.length>0?l.join(`
30
+ `):void 0,featureEdits:c,recordedSteps:a,announcedSteps:[],usage:u,seededCount:h});for(;f<s;){if(o[f]){let v=f;for(;v<s&&o[v];)v++;let F=o.slice(f,v),S={...e,steps:e.steps.slice(f,v)},R=await ue(n,S,this.buildCandidateCache(e,F),{baseURL:this.options.baseURL,actionTimeoutMs:this.options.actionTimeoutMs,retries:this.options.retries,vars:d}),A=R.status==="passed"?v-f:R.failure?.stepIndex??0;for(let O=0;O<A;O++)a[f+O]=F[O];if(h+=A,R.status==="passed"){f=v;continue}let I=f+A;p.push(`Seeded recording for "${e.steps[I].text}" did not replay in this scenario's context; the agent re-recorded it fresh. Divergence signal.`),o[I]=void 0,f=I;continue}if(!this.options.agent)return b(!1);g++;let y=f;for(;y<s&&!o[y];)y++;g>=3&&(y=s);let x=await this.withDialogsVisible(()=>this.options.agent.run({scenario:e,baseURL:this.options.baseURL,mode:"record",cdpEndpoint:this.cdpEndpoint,assertionPolicy:this.options.assertionPolicy,completedSteps:f>0?e.steps.slice(0,f).map(v=>v.resolvedText):void 0,recordOnly:y<s?{from:f,to:y-1}:void 0,takeFingerprint:async()=>Y(fe(this.browser)??n)}));if(u=Xt(u,x.usage),m.push(x.narrative),p.push(...x.adaptations),c.push(...x.featureEdits),x.suggestedFeatureEdit&&l.push(x.suggestedFeatureEdit),!x.success)return b(!1);let E=x.announcedSteps.filter(v=>v>=f&&v<s),w=Math.min(s-1,Math.max(E.length>0?Math.max(...E):y-1,f));for(let v=f;v<=w;v++)a[v]=x.recordedSteps[v];f=w+1}return b(!0)}async withDialogsVisible(e){let n=()=>{},r=[],s=[],i=o=>{o.on("dialog",n),r.push(o)};for(let o of this.browser?.contexts()??[]){o.on("page",i),s.push(o);for(let a of o.pages())i(a)}try{return await e()}finally{for(let o of s)o.off("page",i);for(let o of r)try{o.off("dialog",n)}catch{}}}async start(){let e=this.options.browser??"chromium";if(e==="chromium"){let n=await jr();this.browser=await Cr.launch({headless:!this.options.headed,args:[`--remote-debugging-port=${n}`]}),this.cdpEndpoint=`http://127.0.0.1:${n}`}else this.browser=await(e==="firefox"?Pr:Fr).launch({headless:!this.options.headed}),this.cdpEndpoint=void 0}async stop(){await this.browser?.close(),this.browser=void 0}resolveStorageState(){if(!this.options.storageState)return;let e=Jt.isAbsolute(this.options.storageState)?this.options.storageState:Jt.join(this.options.projectRoot,this.options.storageState);if(!Yt.existsSync(e))throw new Error(`storageState file not found: ${e}. Generate one with: npx playwright open --save-storage=${this.options.storageState} <url>`);return e}buildCandidateCache(e,n){return{version:1,feature:e.featurePath,scenario:e.name,recordedAt:new Date().toISOString(),recordedBy:"agent",steps:n}}async proofReplay(e,n){let r=await this.browser.newContext({storageState:this.resolveStorageState()}),s=await r.newPage();return{result:await ue(s,e,n,{baseURL:this.options.baseURL,actionTimeoutMs:this.options.actionTimeoutMs,retries:this.options.retries}),context:r,page:s}}async runScenario(e,n={}){let r=await this.runScenarioInner(e,n),s=de(e);if(s.size>0){let i=o=>o===void 0?o:ne(o,s);r.error=i(r.error),r.narrative=i(r.narrative),r.proofError=i(r.proofError),r.suggestedFeatureEdit=i(r.suggestedFeatureEdit),r.adaptations=r.adaptations.map(o=>ne(o,s));for(let o of r.stepResults)o.error=i(o.error)}return r}async runScenarioInner(e,n={}){if(!this.browser)throw new Error("Orchestrator not started");let r=Date.now(),{projectRoot:s,baseURL:i,actionTimeoutMs:o,retries:a}=this.options,d=B(s,e.featurePath,e.name),p=U(d),m=Le(s,e.featurePath,e.name),c=!p&&Yt.existsSync(m)?re(m):void 0,l=await this.browser.newContext({storageState:this.resolveStorageState()}),u=await l.newPage();try{let h;if(c){let x=await ue(u,e,c.cache,{baseURL:i,actionTimeoutMs:o,retries:a}),E=c.meta.recordedFor??e.name;if(x.status==="passed")return{scenario:e,status:"yellow",source:"agent-record",stepResults:x.stepResults,narrative:`Replayed the pending proposal recorded for "${E}" at zero AI; accept it to go green.`,adaptations:[],verified:!0,proposalFile:m,usage:se,durationMs:Date.now()-r};if(Object.keys(e.params).length>0&&E!==e.displayName){let v=x.failure;return{scenario:e,status:"red",source:"agent-record",stepResults:x.stepResults,adaptations:[],proposalFile:m,usage:se,durationMs:Date.now()-r,error:`The pending proposal recorded for "${E}" does not replay for this Examples row`+(v?` (step "${v.stepText}": ${v.error.split(`
31
+ `)[0]})`:"")+". A row value is probably baked in as a literal instead of a <placeholder>; inspect the proposal, reject it, and re-record with saffron run --rerecord."}}await u.goto("about:blank")}if(p&&(h=await ue(u,e,p,{baseURL:i,actionTimeoutMs:o,retries:a}),h.status==="passed"))return{scenario:e,status:"green",source:"cache",stepResults:h.stepResults,adaptations:[],usage:se,durationMs:Date.now()-r};if(!(this.options.agent!==void 0&&this.cdpEndpoint!==void 0&&!n.agentDisabled)){let x=this.options.agent!==void 0&&this.cdpEndpoint===void 0&&!n.agentDisabled?`recording/healing requires Chromium (the agent attaches over CDP). Record with --browser chromium (the default), then replay with --browser ${this.options.browser}.`:"no agent is configured.";return{scenario:e,status:"red",source:"cache",stepResults:h?.stepResults??[],adaptations:[],usage:se,durationMs:Date.now()-r,error:p?h?.status==="stale"?`Cache is stale (feature file changed) and ${x}`:`Replay failed and ${x} ${h?.failure?.error??""}`.trimEnd():`No cache exists and ${x}`}}let f=p!==void 0&&h!==void 0&&h.status==="failed",b=0,y;try{if(f)y=await this.withDialogsVisible(()=>this.options.agent.run({scenario:e,baseURL:i,mode:"heal",model:this.options.healModel,cdpEndpoint:this.cdpEndpoint,assertionPolicy:this.options.assertionPolicy,completedSteps:h.stepResults.filter(x=>x.status==="passed").map(x=>x.gherkin),failedStep:{text:h.failure.stepText,kind:h.failure.kind,error:h.failure.error},takeFingerprint:async()=>{let x=fe(this.browser)??u;return Y(x)}}));else if(await u.goto("about:blank"),this.options.reuseSteps!==!1){let x=await this.recordWithSeeding(e,u);b=x.seededCount,y=x}else y=await this.withDialogsVisible(()=>this.options.agent.run({scenario:e,baseURL:i,mode:"record",cdpEndpoint:this.cdpEndpoint,assertionPolicy:this.options.assertionPolicy,takeFingerprint:async()=>{let x=fe(this.browser)??u;return Y(x)}}))}catch(x){let E=x instanceof Error?x.message:String(x);return{scenario:e,status:"red",source:f?"agent-heal":"agent-record",stepResults:h?.stepResults??[],adaptations:[],usage:se,durationMs:Date.now()-r,error:`Agent invocation failed: ${E.split(`
32
+ `)[0]}`}}if(y.success&&f&&h.failure.kind==="assertion"&&(this.options.assertionPolicy!=="adaptable-mid"||Kt(p.steps,h.failure.stepIndex))){let x=p.steps[h.failure.stepIndex],E=fe(this.browser)??u,w=new Map(Object.entries(h.captured)),v=Ke(e,h.failure.stepIndex);try{for(let F of x.actions)await Je(E,F,v,this.options.actionTimeoutMs??5e3,i,w)}catch(F){let S=F instanceof Error?F.message:String(F);return{scenario:e,status:"red",source:"agent-heal",stepResults:h.stepResults,narrative:y.narrative,adaptations:y.adaptations,suggestedFeatureEdit:y.suggestedFeatureEdit,usage:y.usage,durationMs:Date.now()-r,error:`Assertion failed as written: "${x.gherkin}". Saffron never adapts assertions. If this change is intended, update the .feature file or re-record the scenario (saffron run --rerecord --filter @tag). If the recording itself looks wrong (an empty value, a wrong target), re-record it the same way. Verification error: ${S.split(`
33
+ `)[0]}`}}}return await this.finalizeAgentRun(e,y,f,p,r,b,f?h?.failure:void 0)}finally{await l.close()}}async finalizeAgentRun(e,n,r,s,i,o=0,a){let d=r?"agent-heal":"agent-record",p=n.recordedSteps.map(w=>({gherkin:w.gherkin,kind:w.kind,status:n.success?"passed":"failed"}));if(!n.success)return{scenario:e,status:"red",source:d,stepResults:p,narrative:n.narrative,adaptations:n.adaptations,usage:n.usage,durationMs:Date.now()-i,error:n.narrative};let m=r?Qt(s.steps,n.recordedSteps,this.options.assertionPolicy==="adaptable-mid",a?{stepIndex:a.stepIndex,actionIndex:a.actionIndex}:void 0):n.recordedSteps,c=[...n.adaptations],l={...n.usage},u,h;if(this.options.verifyProposals!==!1){let w=await this.proofReplay(e,this.buildCandidateCache(e,m));try{if(w.result.status!=="passed"&&w.result.failure){let v=w.result.failure;if(this.options.agent&&!(r&&v.kind==="assertion"&&(this.options.assertionPolicy!=="adaptable-mid"||Kt(s.steps,v.stepIndex))))try{let S=await this.withDialogsVisible(()=>this.options.agent.run({scenario:e,baseURL:this.options.baseURL,mode:"refine",model:r?this.options.healModel:void 0,cdpEndpoint:this.cdpEndpoint,assertionPolicy:this.options.assertionPolicy,completedSteps:w.result.stepResults.filter(R=>R.status==="passed").map(R=>R.gherkin),failedStep:{text:v.stepText,kind:v.kind,error:v.error},takeFingerprint:async()=>Y(fe(this.browser)??w.page)}));l=Xt(l,S.usage),S.success&&(c.push(...S.adaptations),m=r?Qt(m,S.recordedSteps,this.options.assertionPolicy==="adaptable-mid"):Ir(m,S.recordedSteps),await w.context.close(),w=await this.proofReplay(e,this.buildCandidateCache(e,m)))}catch{}}u=w.result.status==="passed",u||(h=w.result.failure?.error??`proof replay ${w.result.status}`)}finally{await w.context.close().catch(()=>{})}}let g=[...n.featureEdits];for(let w of xt(m,H(this.options.projectRoot)))c.push(`duplicate wording: "${w.from}" recorded exactly the same actions as the existing step "${w.to}" (${w.feature} \u203A ${w.scenario}). Accept with --with-feature-edit to converge on the canonical wording.`),g.some(v=>v.index===w.index)||g.push({index:w.index,text:w.to});let f=de(e),b=w=>f.size>0?ne(w,f):w;c=c.map(b);let y={meta:{createdAt:new Date().toISOString(),mode:r?"heal":"record",narrative:b(n.narrative),adaptations:c,suggestedFeatureEdit:n.suggestedFeatureEdit?b(n.suggestedFeatureEdit):void 0,featureEdits:g.length>0?g:void 0,verified:u,proofError:h?b(h):void 0,seededSteps:o>0?o:void 0,recordedFor:e.displayName,usage:l},cache:{version:1,feature:e.featurePath,scenario:e.name,recordedAt:new Date().toISOString(),recordedBy:"agent",steps:m}},x=zt(m);x.length>0&&(u=!1,h=[h,...x].filter(Boolean).join(" "));let E=Le(this.options.projectRoot,e.featurePath,e.name);return jt(E,y),{scenario:e,status:"yellow",source:d,stepResults:p,narrative:n.narrative,adaptations:c,suggestedFeatureEdit:n.suggestedFeatureEdit,featureEdits:g.length>0?g:void 0,verified:u,proofError:h,seededSteps:o>0?o:void 0,proposalFile:E,usage:l,durationMs:Date.now()-i}}};import on from"node:path";import{createRequire as Dr}from"node:module";import{query as Mr}from"@anthropic-ai/claude-agent-sdk";import{createSdkMcpServer as _r,tool as oe}from"@anthropic-ai/claude-agent-sdk";import{z as k}from"zod";var D=t=>({content:[{type:"text",text:t}]});function en(t){let e={};return t.role&&(e.role=t.role),t.name&&(e.name=t.name),t.nameRegex&&(e.nameRegex=t.nameRegex),t.label&&(e.label=t.label),t.text&&(e.text=t.text),t.selector&&(e.fallbackSelectors=[t.selector]),t.frame&&(e.frame=t.frame),Object.keys(e).length>0?e:void 0}var tn={role:k.string().optional().describe("ARIA role of the element"),name:k.string().optional().describe("Accessible name \u2014 use the SHORTEST stable substring; never include volatile content like prices or dates"),nameRegex:k.string().optional().describe("Regex for the accessible name when it embeds volatile content, e.g. 'Select \\\\{date\\\\+1\\\\} as checkin' cannot work \u2014 instead use nameRegex 'Select .* as checkin'"),label:k.string().optional().describe("Form-label text for getByLabel \u2014 the literal <label> text only, never a free-text description"),text:k.string().optional().describe("getByText locator text"),selector:k.string().optional().describe("CSS fallback selector"),frame:k.string().optional().describe(`CSS selector of the iframe hosting the element, e.g. 'iframe[title="Feedback widget"]' \u2014 REQUIRED whenever the element lives inside an iframe; without it replay looks only at the top-level page`)};function nn(t){return _r({name:"saffron",version:"0.1.0",tools:[oe("saffron_step","Announce the Gherkin step you are about to perform. MUST be called before executing browser actions for each step, with the step's zero-based index and exact text.",{index:k.number().int().min(0),text:k.string(),adaptation:k.string().optional().describe("If the written step does not match the real UI and you are deviating from it, describe the deviation in one sentence.")},async e=>(t.currentStepIndex=e.index,t.announced.add(e.index),e.adaptation&&t.adaptations.push(`Step ${e.index+1} ("${e.text}"): ${e.adaptation}`),D(`Recording step ${e.index}: ${e.text}`))),oe("saffron_capture",`Record a captureText action for the current step: at replay time, the target element's text is read and stored under saveAs for later expectDiffers comparisons. Use for steps like 'I record the displayed price as "X"'. The target must select exactly the element whose text is the value.`,{saveAs:k.string().describe("Name to store the captured text under"),...tn},async e=>{let n=en(e);return n?(t.addActions([{action:"captureText",target:n,saveAs:e.saveAs}]),D(`Capture recorded as "${e.saveAs}".`)):D("ERROR: capture needs a target (role/name, nameRegex, label, text, or selector).")}),oe("saffron_dialog","Record how a native dialog (alert/confirm/prompt) must be handled at replay. Call this IMMEDIATELY whenever an action triggers a native dialog \u2014 whether you handled it via browser_handle_dialog or the browser reported it as already handled. At replay Saffron arms this handler BEFORE the triggering action, so without this call the replay will auto-dismiss the dialog and diverge from what you saw.",{accept:k.boolean().describe("true = accept/OK the dialog, false = dismiss/cancel"),promptText:k.string().optional().describe("Text typed into a prompt() before accepting")},async e=>(t.addArmedAction({action:"handleDialog",value:e.accept?"accept":"dismiss",...e.promptText?{promptText:e.promptText}:{}}),D(`Dialog handling recorded (${e.accept?"accept":"dismiss"}).`))),oe("saffron_wait_api","Record a network wait for the current step: replay will block until a matching API response is observed (responses from the triggering step count). Call AFTER you verified via browser_network_requests that the response actually occurred with the expected status/body. Use a path-only urlPattern regex and never literal volatile IDs (/api/orders/\\d+, not /api/orders/8842).",{urlPattern:k.string().describe("Regex matched against the response URL \u2014 path-only for portability"),method:k.string().optional().describe("HTTP method to match (any if omitted)"),status:k.string().optional().describe("Expected status \u2014 exact ('201') or class ('2xx'); default any 2xx"),bodyPattern:k.string().optional().describe(`Regex the response body must match, e.g. '"status"\\s*:\\s*"READY"' for polling waits`)},async e=>(t.addActions([{action:"waitForResponse",urlPattern:e.urlPattern,...e.method?{method:e.method}:{},...e.status?{status:e.status}:{},...e.bodyPattern?{pattern:e.bodyPattern}:{}}]),D("Network wait recorded."))),oe("saffron_assert","Record a verified assertion for the current Then step. Call ONLY after you have confirmed the condition holds via a page snapshot. If the condition does NOT hold, do not call this \u2014 call saffron_done with success=false instead. NEVER record volatile content (prices, dates, counters) as literal expected text \u2014 use kind=matches with a pattern, or kind=differs against captured values.",{kind:k.enum(["visible","notVisible","text","url","value","differs","matches","attribute","response"]),...tn,expected:k.string().optional().describe("Expected text/value for kind=text|value \u2014 stable text only, never volatile values"),url:k.string().optional().describe("URL substring for kind=url (path only, no host)"),pattern:k.string().optional().describe("kind=matches|attribute: regex the target's text (or attribute) must match, e.g. 'NOK [\\\\d,]+' for a price"),attribute:k.string().optional().describe("kind=attribute: attribute name to check, e.g. 'href' for link-target assertions \u2014 use this for 'X should link to Y' instead of clicking through"),capture:k.string().optional().describe("kind=differs: name of the captured value on the LEFT of the comparison (omit when comparing the target element's live text)"),urlPattern:k.string().optional().describe("kind=response: regex matched against the response URL \u2014 path-only for portability, never literal volatile IDs (use /api/orders/\\d+)"),method:k.string().optional().describe("kind=response: HTTP method to match (any if omitted)"),status:k.string().optional().describe("kind=response: expected status \u2014 exact ('201') or class ('2xx'); default any 2xx"),bodyPattern:k.string().optional().describe("kind=response: regex the response body must match (verify via browser_network_requests first)"),compareTo:k.string().optional().describe("kind=differs: name of the captured value to compare against")},async e=>{let n=en(e),r;switch(e.kind){case"visible":r={action:"expectVisible",target:n};break;case"notVisible":r={action:"expectNotVisible",target:n};break;case"text":r={action:"expectText",target:n,value:e.expected??""};break;case"value":r={action:"expectValue",target:n,value:e.expected??""};break;case"url":r={action:"expectUrl",url:e.url??""};break;case"differs":if(!e.compareTo)return D("ERROR: kind=differs requires compareTo.");if(!e.capture&&!n)return D("ERROR: kind=differs needs either capture (a stored name) or a target element.");r={action:"expectDiffers",target:n,value:e.capture,compareTo:e.compareTo};break;case"matches":if(!e.pattern)return D("ERROR: kind=matches requires pattern.");r={action:"expectMatches",target:n,pattern:e.pattern};break;case"attribute":if(!e.attribute||!e.pattern)return D("ERROR: kind=attribute requires attribute and pattern.");r={action:"expectAttribute",target:n,attribute:e.attribute,pattern:e.pattern};break;case"response":if(!e.urlPattern)return D("ERROR: kind=response requires urlPattern.");r={action:"expectResponse",urlPattern:e.urlPattern,...e.method?{method:e.method}:{},...e.status?{status:e.status}:{},...e.bodyPattern?{pattern:e.bodyPattern}:{}};break}return!["url","differs","response"].includes(e.kind)&&!n?D("ERROR: assertion needs a target (role/name, nameRegex, label, text, or selector)."):(t.addActions([r]),D("Assertion recorded."))}),oe("saffron_done","Finalize the run. Call exactly once, after the final step: success=true only if every step's intent was achieved and every assertion verified.",{success:k.boolean(),narrative:k.string().describe("2-4 sentence summary of the run: what happened, and why it failed if it did."),suggestedFeatureEdit:k.string().optional().describe("If you adapted any steps: the corrected Gherkin for those steps, as you would rewrite them in the .feature file (free text, for the human report)."),featureEdits:k.array(k.object({index:k.number().int().min(0).describe("zero-based step index"),text:k.string().describe("replacement step text WITHOUT the Given/When/Then keyword")})).optional().describe("Machine-applicable version of the suggested edits: one entry per adapted step. Provide this whenever you adapted a step.")},async e=>(t.done=!0,t.success=e.success,t.narrative=e.narrative,t.suggestedFeatureEdit=e.suggestedFeatureEdit,t.featureEdits=e.featureEdits??[],D("Run finalized.")))]})}function rn(t={}){let e=t.deliberateSnapshots?`
32
34
  8. Tool responses do NOT include a page snapshot. Take snapshots deliberately with browser_snapshot, and only when you actually need to see the page: after navigation, before locating an element you haven't seen yet, and when verifying an assertion. Do NOT snapshot after actions whose outcome is predictable (filling a field you just located, pressing Enter, a click whose result you will verify later anyway). Every snapshot is expensive.
33
35
  9. Minimize round-trips: batch tool calls in a single response whenever they don't depend on each other's results \u2014 saffron_step together with that step's browser actions, several fills in one turn, bookkeeping calls (saffron_capture, saffron_assert) alongside the actions they belong to. Only stop and wait when you genuinely need a result before deciding your next call. Do not write narration between tool calls.`:"";return`You are Saffron's test execution agent. You execute Gherkin scenarios in a real browser using the playwright MCP tools, while Saffron records your actions into a deterministic replay cache.
34
36
 
35
37
  Non-negotiable rules:
36
38
  1. Before performing each step, call saffron_step with the step's index and exact text. Only then perform the browser actions for that step.
37
39
  2. ${t.adaptableMidAssertions?"Steps marked [assertion:final] are sacred \u2014 they are the scenario's verdict. Verify them against a page snapshot; if the condition does not hold, the scenario FAILS: call saffron_done with success=false. Never manipulate the page to force them, never weaken or substitute them. Steps marked [assertion] (mid-scenario checkpoints) MAY be adapted under this project's policy when the written condition no longer matches a legitimately changed UI \u2014 record the equivalent verified condition via saffron_assert AND report the deviation via saffron_step's adaptation field plus featureEdits. An application defect is still a failure, not an adaptation.":'Steps marked [assertion] or [assertion:final] are sacred. Verify them against a page snapshot. If the condition holds, record it with saffron_assert. If it does not hold, the scenario FAILS: call saffron_done with success=false. Never click, navigate, or otherwise manipulate the page to force an assertion to become true, and never weaken or substitute the asserted condition for a "close enough" one.'}
38
- 3. Steps marked [action] may be adapted if the written step does not match the real UI (e.g. a step refers to a control that does not exist, or a required intermediate step is missing). Adapt minimally to achieve the step's evident intent, and report the deviation via saffron_step's "adaptation" field. Before adapting, take a snapshot and decide: is this UI drift (adapt) or an application defect (fail with saffron_done success=false and explain)?
40
+ 3. A Given step (or a StepSet guard) that describes a state the page is ALREADY in needs no action and is NOT an adaptation: confirm it from the current snapshot and continue. Only report an adaptation when you had to do something different from what the step says.
41
+ 3a. Steps marked [action] may be adapted if the written step does not match the real UI (e.g. a step refers to a control that does not exist, or a required intermediate step is missing). Adapt minimally to achieve the step's evident intent, and report the deviation via saffron_step's "adaptation" field. Before adapting, take a snapshot and decide: is this UI drift (adapt) or an application defect (fail with saffron_done success=false and explain)?
39
42
  4. Do not pursue goals beyond the scenario. Do not retry an assertion more than twice.
40
43
  5. Prefer stable, semantic element references: role + accessible name. Avoid positional or generated-id selectors. Use the SHORTEST stable name substring; when an accessible name embeds volatile content (prices, dates, counters), use nameRegex with the volatile part wildcarded instead.
41
44
  5a. For "X should link to Y" assertions, use saffron_assert kind=attribute (attribute='href', pattern for the URL) on the link element \u2014 do NOT click through and assert the page URL; the recorded assertion must be verifiable without navigation. NEVER bake volatile values into the recording. For steps that store a displayed value ('I record the price as "X"'), use saffron_capture. For comparisons ('X should differ from Y'), verify yourself from snapshots, then record with saffron_assert kind=differs referencing the captured names. For 'something dynamic should be visible', use kind=matches with a pattern (e.g. 'NOK [\\d,]+') instead of literal text.
45
+ 5a2. When a Then step quotes the expected text (or carries a <param> that resolves to it), pass EXACTLY that quoted text as the expected argument of saffron_assert. Replay checks containment, so the step's own wording is enough; never substitute the page's longer sentence, and never a value from a different Examples row.
42
46
  5b. Literal ISO dates (YYYY-MM-DD) in recorded locators are auto-templated to {date\xB1N} relative to today, so date-picker recordings stay valid tomorrow. For non-ISO date formats in names, use nameRegex.
43
47
  6. When all steps are done, call saffron_done exactly once. If you adapted steps, include BOTH suggestedFeatureEdit (human-readable corrected Gherkin) AND featureEdits (one {index, text} entry per adapted step, text without the keyword) so the correction can be applied automatically.
44
48
  5c. Real-world page furniture is supported: elements inside IFRAMES record and replay fine (interact normally) \u2014 but when a saffron_assert targets an element INSIDE an iframe, you MUST pass the iframe's CSS selector as the 'frame' argument (e.g. frame='iframe[title="Feedback widget"]'); replay cannot see into frames otherwise. File uploads: use browser_file_upload with the file path. Drag-and-drop: use browser_drag. All of these are recorded and replay deterministically.
45
49
  5d. NATIVE DIALOGS (alert/confirm/prompt): when an action opens one, the page blocks and the snapshot reports a modal state \u2014 resolve it with browser_handle_dialog (accept true/false; promptText for prompt()). That call is recorded automatically as an armed handler replay places BEFORE the triggering action, so do NOT also call saffron_dialog. After handling, verify the post-dialog state as usual. If a step's wording says to confirm/accept, accept; if it says cancel/dismiss, dismiss.
46
50
  5e. NETWORK WAITS: when a step says to wait for an API call ("wait for the order API to succeed", "until the job API reports READY"), do it verify-first: perform the trigger, check via browser_network_requests that the matching response actually occurred with the expected status/body, then record it with saffron_wait_api. For Then steps about API contracts ("the request should have returned 201") verify the same way and record with saffron_assert kind=response. urlPattern is a path-only regex \u2014 NEVER a literal volatile ID (/api/orders/\\d+, not /api/orders/8842) and never the host.
47
- 7. Never ask the user questions; you are unattended.${e}`}function Fr(t,e){if(t[e].kind!=="assertion")return"action";let n=t.length;for(let r=t.length-1;r>=0&&t[r].kind==="assertion";r--)n=r;return e>=n?"assertion:final":"assertion"}function Zt(t){let{scenario:e}=t,n=e.steps.map((s,o)=>{let i=l=>ie(l),a=`${o}. [${Fr(e.steps,o)}] ${s.keyword} ${i(s.resolvedText)}`,d=s.resolvedTable??s.table,p=s.resolvedDocString??s.docString,m=a;return d&&(m+=`
48
- ${d.map(l=>` | ${l.map(i).join(" | ")} |`).join(`
51
+ 7. Never ask the user questions; you are unattended.${e}`}function Or(t,e){if(t[e].kind!=="assertion")return"action";let n=t.length;for(let r=t.length-1;r>=0&&t[r].kind==="assertion";r--)n=r;return e>=n?"assertion:final":"assertion"}function sn(t){let{scenario:e}=t,n=e.steps.map((s,i)=>{let o=c=>le(c),a=`${i}. [${Or(e.steps,i)}] ${s.keyword} ${o(s.resolvedText)}`,d=s.resolvedTable??s.table,p=s.resolvedDocString??s.docString,m=a;return d&&(m+=`
52
+ ${d.map(c=>` | ${c.map(o).join(" | ")} |`).join(`
49
53
  `)}`),p!==void 0&&(m+=`
50
54
  """
51
- ${i(p).split(`
52
- `).map(l=>` ${l}`).join(`
55
+ ${o(p).split(`
56
+ `).map(c=>` ${c}`).join(`
53
57
  `)}
54
58
  """`),m}).join(`
55
59
  `),r=[`Feature: ${e.featureName} (${e.featurePath})`,`Scenario: ${e.displayName}`,t.baseURL?`Base URL: ${t.baseURL}`:void 0,"","Steps (index. [kind] keyword text):",n,""];if(t.mode==="refine")r.push("MODE: REFINE. You (or a previous agent session) just recorded this scenario and it completed successfully \u2014 but the deterministic zero-AI replay of that recording FAILED at the step below. The application is working; the RECORDING is not replayable.","The browser tab shows the state where the proof replay stopped.","",`Steps that replayed fine:
56
60
  ${(t.completedSteps??[]).map(s=>` \u2713 ${s}`).join(`
57
61
  `)||" (none)"}`,"",`Failed step: [${t.failedStep?.kind}] ${t.failedStep?.text}`,`Replay failure: ${t.failedStep?.error}`,"","Typical causes: a locator that only matched during your session (volatile accessible name \u2014 use nameRegex or a shorter stable name), a literal dynamic value baked into an assertion (use kind=matches/differs/captureText), or an assertion that cannot be checked without navigation (use kind=attribute for link targets).","Re-perform and re-record the failed step and every step after it in a REPLAYABLE form via saffron_step + browser tools / saffron_capture / saffron_assert. Express the SAME conditions the steps state \u2014 do not weaken them.","If a step genuinely cannot be expressed replayably, call saffron_done success=false and explain why.");else if(t.mode==="heal")r.push("MODE: HEAL. A cached deterministic replay of this scenario failed mid-run.","The browser tab already holds the page state reached so far \u2014 do NOT restart from step 0; verify where you are with a snapshot and continue from the failed step.","",`Steps already completed by replay:
58
62
  ${(t.completedSteps??[]).map(s=>` \u2713 ${s}`).join(`
59
- `)||" (none)"}`,"",`Failed step: [${t.failedStep?.kind}] ${t.failedStep?.text}`,`Failure: ${t.failedStep?.error}`,"","First diagnose: did the UI legitimately change (heal: adapt the actions, record via saffron_step + browser tools), or is the application broken (fail: saffron_done success=false with your diagnosis)?",t.assertionPolicy==="adaptable-mid"?"If the failed step is an [assertion:final]: you may re-verify the SAME condition once against the live page (timing), but if it does not hold AS WRITTEN, the run FAILS \u2014 call saffron_done success=false; never substitute it. If the failed step is a mid-scenario [assertion]: this project's policy allows adapting it \u2014 verify the equivalent condition on the legitimately-changed UI, record it via saffron_assert, and report the deviation via saffron_step's adaptation field plus featureEdits. An application defect still fails.":"If the failed step is an [assertion] or [assertion:final]: you may re-verify the SAME condition once against the live page (it may have been a timing issue). If the condition AS WRITTEN does not hold, the run FAILS \u2014 call saffron_done success=false. Do NOT substitute a different element, text, or URL that 'means the same thing'; suggesting a corrected assertion belongs in suggestedFeatureEdit of your failure report, never in saffron_assert.","Announce (saffron_step) and perform only the failed step and the steps after it.");else if(t.mode==="record"&&t.recordOnly){let{from:s,to:o}=t.recordOnly;r.push("MODE: RECORD (segment). This scenario is being composed from existing recordings plus your work.",t.completedSteps&&t.completedSteps.length>0?`Already executed against the live browser (do NOT redo):
60
- ${t.completedSteps.map(i=>` \u2713 ${i}`).join(`
61
- `)}`:"You are starting from a blank page.","",`Record ONLY steps ${s} through ${o} (inclusive).`,`CRITICAL STOP RULE: the steps AFTER step ${o} already have recordings and will be replayed automatically the moment you stop. After completing step ${o}, immediately call saffron_done \u2014 do NOT perform, verify, or navigate into any later step. Executing a later step yourself would make the automatic replay run it TWICE.`)}else if(t.completedSteps&&t.completedSteps.length>0){let s=t.completedSteps.length;r.push("MODE: RECORD (seeded). No cache exists for this scenario yet, but its first steps matched existing recordings and were ALREADY EXECUTED against the live browser by zero-AI replay:",t.completedSteps.map(o=>` \u2713 ${o}`).join(`
63
+ `)||" (none)"}`,"",`Failed step: [${t.failedStep?.kind}] ${t.failedStep?.text}`,`Failure: ${t.failedStep?.error}`,"","First diagnose: did the UI legitimately change (heal: adapt the actions, record via saffron_step + browser tools), or is the application broken (fail: saffron_done success=false with your diagnosis)?",t.assertionPolicy==="adaptable-mid"?"If the failed step is an [assertion:final]: you may re-verify the SAME condition once against the live page (timing), but if it does not hold AS WRITTEN, the run FAILS \u2014 call saffron_done success=false; never substitute it. If the failed step is a mid-scenario [assertion]: this project's policy allows adapting it \u2014 verify the equivalent condition on the legitimately-changed UI, record it via saffron_assert, and report the deviation via saffron_step's adaptation field plus featureEdits. An application defect still fails.":"If the failed step is an [assertion] or [assertion:final]: you may re-verify the SAME condition once against the live page (it may have been a timing issue). If the condition AS WRITTEN does not hold, the run FAILS \u2014 call saffron_done success=false. Do NOT substitute a different element, text, or URL that 'means the same thing'; suggesting a corrected assertion belongs in suggestedFeatureEdit of your failure report, never in saffron_assert.","Announce (saffron_step) and perform only the failed step and the steps after it.");else if(t.mode==="record"&&t.recordOnly){let{from:s,to:i}=t.recordOnly;r.push("MODE: RECORD (segment). This scenario is being composed from existing recordings plus your work.",t.completedSteps&&t.completedSteps.length>0?`Already executed against the live browser (do NOT redo):
64
+ ${t.completedSteps.map(o=>` \u2713 ${o}`).join(`
65
+ `)}`:"You are starting from a blank page.","",`Record ONLY steps ${s} through ${i} (inclusive).`,`CRITICAL STOP RULE: the steps AFTER step ${i} already have recordings and will be replayed automatically the moment you stop. After completing step ${i}, immediately call saffron_done \u2014 do NOT perform, verify, or navigate into any later step. Executing a later step yourself would make the automatic replay run it TWICE.`)}else if(t.completedSteps&&t.completedSteps.length>0){let s=t.completedSteps.length;r.push("MODE: RECORD (seeded). No cache exists for this scenario yet, but its first steps matched existing recordings and were ALREADY EXECUTED against the live browser by zero-AI replay:",t.completedSteps.map(i=>` \u2713 ${i}`).join(`
62
66
  `),"",`The browser currently shows the state after those ${s} step(s) (verify with a snapshot if unsure). Do NOT redo them and do NOT navigate away from the current state.`,`Start with saffron_step for step index ${s} and record from there to the end.`)}else r.push("MODE: RECORD. No cache exists for this scenario yet.","Execute every step in order, starting at step 0. Navigate to the base URL first if the scenario implies a starting page.");return r.filter(s=>s!==void 0).join(`
63
- `)}var _r=jr(import.meta.url);function Dr(){let t=_r.resolve("@playwright/mcp/package.json");return en.join(en.dirname(t),"cli.js")}var Or=new Set(["mcp__playwright__browser_navigate","mcp__playwright__browser_click","mcp__playwright__browser_type","mcp__playwright__browser_fill_form","mcp__playwright__browser_select_option","mcp__playwright__browser_press_key"]),$e=class{constructor(e={}){this.opts=e}opts;async run(e){let n=new ve(e.scenario),r={aiCalls:0,inputTokens:0,outputTokens:0,cacheReadTokens:0,cacheCreationTokens:0},s="",o=Ir({prompt:Zt(e),options:{systemPrompt:Xt({deliberateSnapshots:(this.opts.snapshotMode??"none")==="none",adaptableMidAssertions:e.assertionPolicy==="adaptable-mid"}),model:e.model??this.opts.model,maxTurns:this.opts.maxTurns??100,tools:[],permissionMode:"bypassPermissions",allowDangerouslySkipPermissions:!0,persistSession:!1,settingSources:[],mcpServers:{playwright:{type:"stdio",command:process.execPath,args:[Dr(),"--cdp-endpoint",e.cdpEndpoint,"--snapshot-mode",this.opts.snapshotMode??"none","--image-responses","omit"]},saffron:Kt(n)},hooks:{PreToolUse:[{hooks:[async i=>{let a=i;if(Or.has(a.tool_name)&&e.takeFingerprint&&!n.pendingFingerprint)try{n.pendingFingerprint=await e.takeFingerprint()}catch{}return{continue:!0}}]}],PostToolUse:[{hooks:[async i=>{let a=i,d=zt(a.tool_name,a.tool_input);return d&&n.addArmedAction(d),a.tool_name.startsWith("mcp__playwright__")&&(n.addActions(Mt(a.tool_response,e.baseURL)),n.pendingFingerprint=void 0),{continue:!0}}]}]}}});try{for await(let i of o)i.type==="result"&&(r.aiCalls=i.num_turns,r.costUsd=i.total_cost_usd,"usage"in i&&i.usage&&(r.inputTokens=i.usage.input_tokens??0,r.outputTokens=i.usage.output_tokens??0,r.cacheReadTokens=i.usage.cache_read_input_tokens??0,r.cacheCreationTokens=i.usage.cache_creation_input_tokens??0),i.subtype==="success"&&(s=i.result))}catch(i){let a=i instanceof Error?i.message:String(i);n.done=!0,n.success=!1,n.narrative=`Agent session error: ${a}`}return n.done||(n.success=!1,n.narrative=n.narrative||`Agent session ended without finalizing the run. Last output: ${s.slice(0,500)}`),{success:n.success,narrative:n.narrative,adaptations:n.adaptations,suggestedFeatureEdit:n.suggestedFeatureEdit,featureEdits:n.featureEdits.map(i=>({index:i.index,text:Ke(i.text,e.scenario.params)})),recordedSteps:Vt(Bt(Nt(Ut(n.steps,e.scenario),e.scenario.params)),ae(e.scenario)),announcedSteps:[...n.announced].sort((i,a)=>i-a),usage:r}}};import tn from"node:fs";import Re from"node:path";function Te(t){return JSON.stringify([t.role??null,t.name??null,t.nameRegex??null,t.label??null,t.text??null,t.testId??null,t.placeholder??null])}function nn(t,e){let n=new Map,r=Math.min(t.steps.length,e.steps.length);for(let s=0;s<r;s++){let o=t.steps[s].actions,i=e.steps[s].actions;if(o.length===i.length)for(let a=0;a<o.length;a++){let d=o[a],p=i[a];if(d.action!==p.action||!d.target||!p.target)continue;let m=Te(d.target);m!==Te(p.target)&&n.set(m,{from:d.target,to:p.target})}}return[...n.values()]}function Mr(t){let e=Re.join(t,".saffron","cache");if(!tn.existsSync(e))return[];let n=[];for(let r of tn.readdirSync(e,{recursive:!0})){let s=String(r);s.endsWith(".json")&&n.push(Re.join(e,s))}return n}function rn(t,e,n,r){if(e.length===0)return[];let s=new Map(e.map(i=>[Te(i.from),i])),o=[];for(let i of Mr(t)){if(Re.resolve(i)===Re.resolve(n))continue;let a=U(i);if(!a)continue;let d=[],p=!1;for(let m of a.steps){let l=0;for(let c of m.actions){if(!c.target)continue;let g=s.get(Te(c.target));g&&(l++,r||(c.target=structuredClone(g.to),p=!0))}l>0&&d.push({gherkin:m.gherkin,count:l})}d.length>0&&(p&&ee(i,a),o.push({file:i,scenario:a.scenario,feature:a.feature,steps:d}))}return o}function Xe(t){return t.role?`${t.role} "${t.name??t.nameRegex??""}"`:t.label?`label "${t.label}"`:t.text?`text "${t.text}"`:t.testId?`testId "${t.testId}"`:(t.fallbackSelectors??[]).join(",")||"(empty target)"}import sn from"node:fs";import Ze from"node:path";function on(t,e,n,r,s){let o={applied:[],skipped:[]},i=Z(Ze.join(t,e),t,s).find(p=>p.name===n);if(!i){for(let p of r)o.skipped.push({index:p.index,reason:`scenario "${n}" not found in ${e}`});return o}let a=new Map,d=new Set;for(let p of r){let m=i.steps[p.index];if(!m?.source){o.skipped.push({index:p.index,reason:`no step at index ${p.index}`});continue}let{file:l,line:c,fromStepSet:g,fromBackground:h}=m.source;if(h){o.skipped.push({index:p.index,reason:`"${m.text}" is a Background step shared across scenarios; edit it manually`});continue}let u=`${l}:${c}`;if(d.has(u))continue;let f=a.get(l);f||(f=sn.readFileSync(Ze.join(t,l),"utf8").split(`
64
- `),a.set(l,f));let y=f[c-1],x=y?.match(/^(\s*)(\S+)\s+(.*)$/);if(!x||x[3]!==m.text){o.skipped.push({index:p.index,reason:`${l}:${c} no longer matches the recorded step text`});continue}let w=`${x[1]}${x[2]} ${p.text}`;f[c-1]=w,d.add(u),o.applied.push({file:l,line:c,from:y.trim(),to:w.trim(),fromStepSet:g})}for(let[p,m]of a)o.applied.some(l=>l.file===p)&&sn.writeFileSync(Ze.join(t,p),m.join(`
65
- `));return o}import tt from"node:fs";import et from"node:fs";import Ee from"node:path";import{fileURLToPath as Lr}from"node:url";function Ae(){let t=Ee.dirname(Lr(import.meta.url));for(let e=0;e<6;e++){let n=Ee.join(t,"package.json");if(et.existsSync(n))try{if(JSON.parse(et.readFileSync(n,"utf8")).name==="saffron-ai")return t}catch{}t=Ee.dirname(t)}}function Ce(){let t=Ae();if(!t)return"unknown";try{return JSON.parse(et.readFileSync(Ee.join(t,"package.json"),"utf8")).version??"unknown"}catch{return"unknown"}}import nt from"node:path";var C=t=>t.replaceAll("&","&amp;").replaceAll("<","&lt;").replaceAll(">","&gt;").replaceAll('"',"&quot;"),ln="M11 14 L10 4.5 L17.5 9.5 L24 2.5 L30.5 9.5 L38 4.5 L37 14 Z",Nr="M24.085 45.646L24.085 45.646Q20.719 45.646 18.407 44.575Q16.095 43.504 14.905 41.651Q13.715 39.798 13.715 37.384L13.715 37.384L19.121 37.384Q19.121 38.336 19.648 39.152Q20.175 39.968 21.263 40.461Q22.351 40.954 24.085 40.954L24.085 40.954Q25.649 40.954 26.703 40.546Q27.757 40.138 28.301 39.407Q28.845 38.676 28.845 37.724L28.845 37.724Q28.845 36.534 27.825 35.837Q26.805 35.140 24.527 34.936L24.527 34.936L22.657 34.766Q18.951 34.460 16.741 32.454Q14.531 30.448 14.531 27.150L14.531 27.150Q14.531 24.770 15.670 23.036Q16.809 21.302 18.849 20.367Q20.889 19.432 23.677 19.432L23.677 19.432Q26.601 19.432 28.692 20.435Q30.783 21.438 31.905 23.257Q33.027 25.076 33.027 27.524L33.027 27.524L27.587 27.524Q27.587 26.606 27.145 25.841Q26.703 25.076 25.836 24.600Q24.969 24.124 23.677 24.124L23.677 24.124Q22.453 24.124 21.620 24.532Q20.787 24.940 20.379 25.637Q19.971 26.334 19.971 27.150L19.971 27.150Q19.971 28.204 20.719 28.986Q21.467 29.768 23.167 29.904L23.167 29.904L25.071 30.074Q27.791 30.312 29.865 31.247Q31.939 32.182 33.112 33.797Q34.285 35.412 34.285 37.724L34.285 37.724Q34.285 40.104 33.044 41.889Q31.803 43.674 29.525 44.660Q27.247 45.646 24.085 45.646Z";function Ur(t){return`<svg viewBox="0 0 48 48" width="${t}" height="${t}" aria-hidden="true">
66
- <path d="${ln}" fill="#F4A300"/>
67
- <path d="${Nr}" fill="#E7E9EC"/>
68
- </svg>`}function Br(t){return`<svg viewBox="8 1 32 15" height="${t}" aria-hidden="true"><path d="${ln}" fill="#F4A300"/></svg>`}var Vr={green:"passed",yellow:"adapted",red:"failed"};function Pe(t){return t>=1e3?`${(t/1e3).toFixed(1)}s`:`${t}ms`}function de(t){return t>=1e6?`${(t/1e6).toFixed(1)}M`:t>=1e4?`${(t/1e3).toFixed(1)}k`:t.toLocaleString()}function Q(t,e,n,r="",s="",o=""){return`<div class="kpi">
67
+ `)}var Lr=Dr(import.meta.url);function Nr(){let t=Lr.resolve("@playwright/mcp/package.json");return on.join(on.dirname(t),"cli.js")}var Ur=new Set(["mcp__playwright__browser_navigate","mcp__playwright__browser_click","mcp__playwright__browser_type","mcp__playwright__browser_fill_form","mcp__playwright__browser_select_option","mcp__playwright__browser_press_key"]),$e=class{constructor(e={}){this.opts=e}opts;async run(e){let n=new we(e.scenario),r={aiCalls:0,inputTokens:0,outputTokens:0,cacheReadTokens:0,cacheCreationTokens:0},s="",i=Mr({prompt:sn(e),options:{systemPrompt:rn({deliberateSnapshots:(this.opts.snapshotMode??"none")==="none",adaptableMidAssertions:e.assertionPolicy==="adaptable-mid"}),model:e.model??this.opts.model,maxTurns:this.opts.maxTurns??100,tools:[],permissionMode:"bypassPermissions",allowDangerouslySkipPermissions:!0,persistSession:!1,settingSources:[],mcpServers:{playwright:{type:"stdio",command:process.execPath,args:[Nr(),"--cdp-endpoint",e.cdpEndpoint,"--snapshot-mode",this.opts.snapshotMode??"none","--image-responses","omit"]},saffron:nn(n)},hooks:{PreToolUse:[{hooks:[async o=>{let a=o;if(Ur.has(a.tool_name)&&e.takeFingerprint&&!n.pendingFingerprint)try{n.pendingFingerprint=await e.takeFingerprint()}catch{}return{continue:!0}}]}],PostToolUse:[{hooks:[async o=>{let a=o,d=Gt(a.tool_name,a.tool_input);return d&&n.addArmedAction(d),a.tool_name.startsWith("mcp__playwright__")&&(n.addActions(Vt(a.tool_response,e.baseURL)),n.pendingFingerprint=void 0),{continue:!0}}]}]}}});try{for await(let o of i)o.type==="result"&&(r.aiCalls=o.num_turns,r.costUsd=o.total_cost_usd,"usage"in o&&o.usage&&(r.inputTokens=o.usage.input_tokens??0,r.outputTokens=o.usage.output_tokens??0,r.cacheReadTokens=o.usage.cache_read_input_tokens??0,r.cacheCreationTokens=o.usage.cache_creation_input_tokens??0),o.subtype==="success"&&(s=o.result))}catch(o){let a=o instanceof Error?o.message:String(o);n.done=!0,n.success=!1,n.narrative=`Agent session error: ${a}`}return n.done||(n.success=!1,n.narrative=n.narrative||`Agent session ended without finalizing the run. Last output: ${s.slice(0,500)}`),{success:n.success,narrative:n.narrative,adaptations:n.adaptations,suggestedFeatureEdit:n.suggestedFeatureEdit,featureEdits:n.featureEdits.map(o=>({index:o.index,text:Xe(o.text,e.scenario.params)})),recordedSteps:Ht(Wt(Bt(qt(n.steps,e.scenario),e.scenario.params)),de(e.scenario)),announcedSteps:[...n.announced].sort((o,a)=>o-a),usage:r}}};import an from"node:fs";import Re from"node:path";function Te(t){return JSON.stringify([t.role??null,t.name??null,t.nameRegex??null,t.label??null,t.text??null,t.testId??null,t.placeholder??null])}function cn(t,e){let n=new Map,r=Math.min(t.steps.length,e.steps.length);for(let s=0;s<r;s++){let i=t.steps[s].actions,o=e.steps[s].actions;if(i.length===o.length)for(let a=0;a<i.length;a++){let d=i[a],p=o[a];if(d.action!==p.action||!d.target||!p.target)continue;let m=Te(d.target);m!==Te(p.target)&&n.set(m,{from:d.target,to:p.target})}}return[...n.values()]}function Vr(t){let e=Re.join(t,".saffron","cache");if(!an.existsSync(e))return[];let n=[];for(let r of an.readdirSync(e,{recursive:!0})){let s=String(r);s.endsWith(".json")&&n.push(Re.join(e,s))}return n}function ln(t,e,n,r){if(e.length===0)return[];let s=new Map(e.map(o=>[Te(o.from),o])),i=[];for(let o of Vr(t)){if(Re.resolve(o)===Re.resolve(n))continue;let a=U(o);if(!a)continue;let d=[],p=!1;for(let m of a.steps){let c=0;for(let l of m.actions){if(!l.target)continue;let u=s.get(Te(l.target));u&&(c++,r||(l.target=structuredClone(u.to),p=!0))}c>0&&d.push({gherkin:m.gherkin,count:c})}d.length>0&&(p&&ee(o,a),i.push({file:o,scenario:a.scenario,feature:a.feature,steps:d}))}return i}function Ze(t){return t.role?`${t.role} "${t.name??t.nameRegex??""}"`:t.label?`label "${t.label}"`:t.text?`text "${t.text}"`:t.testId?`testId "${t.testId}"`:(t.fallbackSelectors??[]).join(",")||"(empty target)"}import dn from"node:fs";import et from"node:path";function pn(t,e,n,r,s){let i={applied:[],skipped:[]},o=Z(et.join(t,e),t,s).find(p=>p.name===n);if(!o){for(let p of r)i.skipped.push({index:p.index,reason:`scenario "${n}" not found in ${e}`});return i}let a=new Map,d=new Set;for(let p of r){let m=o.steps[p.index];if(!m?.source){i.skipped.push({index:p.index,reason:`no step at index ${p.index}`});continue}let{file:c,line:l,fromStepSet:u,fromBackground:h}=m.source;if(h){i.skipped.push({index:p.index,reason:`"${m.text}" is a Background step shared across scenarios; edit it manually`});continue}let g=`${c}:${l}`;if(d.has(g))continue;let f=a.get(c);f||(f=dn.readFileSync(et.join(t,c),"utf8").split(`
68
+ `),a.set(c,f));let b=f[l-1],y=b?.match(/^(\s*)(\S+)\s+(.*)$/);if(!y||y[3]!==m.text){i.skipped.push({index:p.index,reason:`${c}:${l} no longer matches the recorded step text`});continue}let x=`${y[1]}${y[2]} ${p.text}`;f[l-1]=x,d.add(g),i.applied.push({file:c,line:l,from:b.trim(),to:x.trim(),fromStepSet:u})}for(let[p,m]of a)i.applied.some(c=>c.file===p)&&dn.writeFileSync(et.join(t,p),m.join(`
69
+ `));return i}import nt from"node:fs";import tt from"node:fs";import Ee from"node:path";import{fileURLToPath as zr}from"node:url";function Ae(){let t=Ee.dirname(zr(import.meta.url));for(let e=0;e<6;e++){let n=Ee.join(t,"package.json");if(tt.existsSync(n))try{if(JSON.parse(tt.readFileSync(n,"utf8")).name==="saffron-ai")return t}catch{}t=Ee.dirname(t)}}function Ce(){let t=Ae();if(!t)return"unknown";try{return JSON.parse(tt.readFileSync(Ee.join(t,"package.json"),"utf8")).version??"unknown"}catch{return"unknown"}}import rt from"node:path";var P=t=>t.replaceAll("&","&amp;").replaceAll("<","&lt;").replaceAll(">","&gt;").replaceAll('"',"&quot;"),gn="M11 14 L10 4.5 L17.5 9.5 L24 2.5 L30.5 9.5 L38 4.5 L37 14 Z",Br="M24.085 45.646L24.085 45.646Q20.719 45.646 18.407 44.575Q16.095 43.504 14.905 41.651Q13.715 39.798 13.715 37.384L13.715 37.384L19.121 37.384Q19.121 38.336 19.648 39.152Q20.175 39.968 21.263 40.461Q22.351 40.954 24.085 40.954L24.085 40.954Q25.649 40.954 26.703 40.546Q27.757 40.138 28.301 39.407Q28.845 38.676 28.845 37.724L28.845 37.724Q28.845 36.534 27.825 35.837Q26.805 35.140 24.527 34.936L24.527 34.936L22.657 34.766Q18.951 34.460 16.741 32.454Q14.531 30.448 14.531 27.150L14.531 27.150Q14.531 24.770 15.670 23.036Q16.809 21.302 18.849 20.367Q20.889 19.432 23.677 19.432L23.677 19.432Q26.601 19.432 28.692 20.435Q30.783 21.438 31.905 23.257Q33.027 25.076 33.027 27.524L33.027 27.524L27.587 27.524Q27.587 26.606 27.145 25.841Q26.703 25.076 25.836 24.600Q24.969 24.124 23.677 24.124L23.677 24.124Q22.453 24.124 21.620 24.532Q20.787 24.940 20.379 25.637Q19.971 26.334 19.971 27.150L19.971 27.150Q19.971 28.204 20.719 28.986Q21.467 29.768 23.167 29.904L23.167 29.904L25.071 30.074Q27.791 30.312 29.865 31.247Q31.939 32.182 33.112 33.797Q34.285 35.412 34.285 37.724L34.285 37.724Q34.285 40.104 33.044 41.889Q31.803 43.674 29.525 44.660Q27.247 45.646 24.085 45.646Z";function qr(t){return`<svg viewBox="0 0 48 48" width="${t}" height="${t}" aria-hidden="true">
70
+ <path d="${gn}" fill="#F4A300"/>
71
+ <path d="${Br}" fill="#E7E9EC"/>
72
+ </svg>`}function Wr(t){return`<svg viewBox="8 1 32 15" height="${t}" aria-hidden="true"><path d="${gn}" fill="#F4A300"/></svg>`}var Hr={green:"passed",yellow:"pending review",red:"failed"};function Pe(t){return t>=1e3?`${(t/1e3).toFixed(1)}s`:`${t}ms`}function ge(t){return t>=1e6?`${(t/1e6).toFixed(1)}M`:t>=1e4?`${(t/1e3).toFixed(1)}k`:t.toLocaleString()}function K(t,e,n,r="",s="",i=""){return`<div class="kpi">
69
73
  <div class="kpi-label">${t}</div>
70
74
  <div class="kpi-value ${r}">${e}</div>
71
- <div class="kpi-sub ${s}">${n}</div>${o}
72
- </div>`}function an(t,e){if(t.length<2)return"";let n=108,r=22,s=Math.min(...t),i=Math.max(...t)-s||1,a=t.map((d,p)=>`${(p/(t.length-1)*n).toFixed(1)},${(r-2-(d-s)/i*(r-4)).toFixed(1)}`).join(" ");return`<svg class="spark" viewBox="0 0 ${n} ${r}" width="${n}" height="${r}" aria-hidden="true"><polyline points="${a}" fill="none" stroke="${e}" stroke-width="1.8" stroke-linejoin="round" stroke-linecap="round"/></svg>`}var cn=(t,e="",n=0)=>`${t>=0?"+":"\u2212"}${Math.abs(t).toFixed(n)}${e} vs prev`;function zr(t,e){let n=t.totals,r=t.trends,s=n.scenarios===0?0:Math.round((n.green+n.yellow)/n.scenarios*100),o=n.red>0?"red":n.yellow>0?"gold":"green",i=n.inputTokens+n.outputTokens,a=r?.prev?`${cn(r.prev.passRatePp,"pp")} \xB7 ${n.green+n.yellow} of ${n.scenarios}`:`${n.green+n.yellow} of ${n.scenarios} scenarios`,d=r?.prev?`${cn(r.prev.costUsd,"",4).replace("+","+$").replace("\u2212","\u2212$")} \xB7 ${Pe(e)}`:`${Pe(e)} total runtime`;return`<section class="kpis">
73
- ${Q("pass rate",`${s}<span class="unit">%</span>`,a,o,r?.prev?r.prev.passRatePp>=0?"green":"red":"",an(r?.series.passRate??[],"var(--green)"))}
74
- ${Q("passed",String(n.green),"deterministic replay","green",n.green>0?"green":"")}
75
- ${Q("adapted",String(n.yellow),n.yellow>0?"\u25B2 proposals pending review":"no adaptations",n.yellow>0?"gold":"",n.yellow>0?"gold":"")}
76
- ${Q("failed",String(n.red),n.red>0?"\u25BC needs attention":"all clear",n.red>0?"red":"",n.red>0?"red":"green")}
77
- ${Q("ai calls",String(n.aiCalls),`${de(i)} in+out tokens`,n.aiCalls>0?"":"green")}
78
- ${Q("cache traffic",de(n.cacheReadTokens+n.cacheCreationTokens),n.cacheReadTokens+n.cacheCreationTokens>0?`${de(n.cacheReadTokens)} read \xB7 ${de(n.cacheCreationTokens)} written`:"zero (fully cached run)","",n.cacheReadTokens+n.cacheCreationTokens>0?"":"green")}
79
- ${Q("ai cost",`<span class="unit">$</span>${n.costUsd.toFixed(n.costUsd>=1?2:4)}`,d,"","",an(r?.series.costUsd??[],"var(--gold)"))}
80
- </section>`}function qr(t){let e=t.trends;if(!e)return"";let n=[];return e.chronic.length>0&&n.push(`<div class="panel accent-gold"><div class="panel-title gold">chronic scenarios: stop paying for heals</div><ul>${e.chronic.map(r=>`<li>${C(r.feature)} \u203A ${C(r.scenario)}: ${r.heals} heal(s), ${r.reds} red(s) in the last ${r.runs} run(s). Re-record it or fix the feature text.</li>`).join("")}</ul></div>`),e.divergentSteps>0&&n.push(`<div class="panel"><div class="panel-title">step divergence (level-2 signal)</div><p>${e.divergentSteps} step text(s) currently have divergent recordings across caches.</p></div>`),e.topIssues.length>0&&n.push(`<div class="panel accent-red"><div class="panel-title red">recurring failure themes (last 20 runs)</div><ul>${e.topIssues.map(r=>`<li>${r.count}\xD7: ${C(r.message)}</li>`).join("")}</ul></div>`),n.length>0?`<section class="trends">${n.join(`
81
- `)}</section>`:""}function Wr(t){return`<ol class="steps">${t.steps.map(n=>{let r=n.status==="passed"?'<span class="dot green"></span>':n.status==="failed"?'<span class="dot red"></span>':'<span class="dot idle"></span>';return`<li class="step ${n.status}">
75
+ <div class="kpi-sub ${s}">${n}</div>${i}
76
+ </div>`}function un(t,e){if(t.length<2)return"";let n=108,r=22,s=Math.min(...t),o=Math.max(...t)-s||1,a=t.map((d,p)=>`${(p/(t.length-1)*n).toFixed(1)},${(r-2-(d-s)/o*(r-4)).toFixed(1)}`).join(" ");return`<svg class="spark" viewBox="0 0 ${n} ${r}" width="${n}" height="${r}" aria-hidden="true"><polyline points="${a}" fill="none" stroke="${e}" stroke-width="1.8" stroke-linejoin="round" stroke-linecap="round"/></svg>`}var fn=(t,e="",n=0)=>`${t>=0?"+":"\u2212"}${Math.abs(t).toFixed(n)}${e} vs prev`;function Gr(t,e){let n=t.totals,r=t.trends,s=n.scenarios===0?0:Math.round((n.green+n.yellow)/n.scenarios*100),i=n.red>0?"red":n.yellow>0?"gold":"green",o=n.inputTokens+n.outputTokens,a=r?.prev?`${fn(r.prev.passRatePp,"pp")} \xB7 ${n.green+n.yellow} of ${n.scenarios}`:`${n.green+n.yellow} of ${n.scenarios} scenarios`,d=r?.prev?`${fn(r.prev.costUsd,"",4).replace("+","+$").replace("\u2212","\u2212$")} \xB7 ${Pe(e)}`:`${Pe(e)} total runtime`;return`<section class="kpis">
77
+ ${K("pass rate",`${s}<span class="unit">%</span>`,a,i,r?.prev?r.prev.passRatePp>=0?"green":"red":"",un(r?.series.passRate??[],"var(--green)"))}
78
+ ${K("passed",String(n.green),"deterministic replay","green",n.green>0?"green":"")}
79
+ ${K("pending",String(n.yellow),n.yellow>0?"\u25B2 proposals to review":"nothing to review",n.yellow>0?"gold":"",n.yellow>0?"gold":"")}
80
+ ${K("failed",String(n.red),n.red>0?"\u25BC needs attention":"all clear",n.red>0?"red":"",n.red>0?"red":"green")}
81
+ ${K("ai calls",String(n.aiCalls),`${ge(o)} in+out tokens`,n.aiCalls>0?"":"green")}
82
+ ${K("cache traffic",ge(n.cacheReadTokens+n.cacheCreationTokens),n.cacheReadTokens+n.cacheCreationTokens>0?`${ge(n.cacheReadTokens)} read \xB7 ${ge(n.cacheCreationTokens)} written`:"zero (fully cached run)","",n.cacheReadTokens+n.cacheCreationTokens>0?"":"green")}
83
+ ${K("ai cost",`<span class="unit">$</span>${n.costUsd.toFixed(n.costUsd>=1?2:4)}`,d,"","",un(r?.series.costUsd??[],"var(--gold)"))}
84
+ </section>`}function Yr(t){let e=t.trends;if(!e)return"";let n=[];return e.chronic.length>0&&n.push(`<div class="panel accent-gold"><div class="panel-title gold">chronic scenarios: stop paying for heals</div><ul>${e.chronic.map(r=>`<li>${P(r.feature)} \u203A ${P(r.scenario)}: ${r.heals} heal(s), ${r.reds} red(s) in the last ${r.runs} run(s). Re-record it or fix the feature text.</li>`).join("")}</ul></div>`),e.divergentSteps>0&&n.push(`<div class="panel"><div class="panel-title">step divergence (level-2 signal)</div><p>${e.divergentSteps} step text(s) currently have divergent recordings across caches.</p></div>`),e.topIssues.length>0&&n.push(`<div class="panel accent-red"><div class="panel-title red">recurring failure themes (last 20 runs)</div><ul>${e.topIssues.map(r=>`<li>${r.count}\xD7: ${P(r.message)}</li>`).join("")}</ul></div>`),n.length>0?`<section class="trends">${n.join(`
85
+ `)}</section>`:""}function Jr(t){return`<ol class="steps">${t.steps.map(n=>{let r=n.status==="passed"?'<span class="dot green"></span>':n.status==="failed"?'<span class="dot red"></span>':'<span class="dot idle"></span>';return`<li class="step ${n.status}">
82
86
  ${r}
83
87
  <div class="step-body">
84
- <span class="step-text">${C(n.gherkin)}</span>
88
+ <span class="step-text">${P(n.gherkin)}</span>
85
89
  ${n.kind==="assertion"?'<span class="tag">assert</span>':""}
86
- ${n.fromStepSet?`<span class="tag indigo" title="inlined from a StepSet definition: edit once, every invoking scenario follows">from StepSet: ${C(n.fromStepSet)}</span>`:""}
90
+ ${n.fromStepSet?`<span class="tag indigo" title="inlined from a StepSet definition: edit once, every invoking scenario follows">from StepSet: ${P(n.fromStepSet)}</span>`:""}
87
91
  ${n.drift?'<span class="tag gold" title="page fingerprint no longer matches the recording">drift</span>':""}
88
92
  ${n.retries?`<span class="tag gold" title="an action failed and was re-attempted with backoff before the step settled">retried \xD7${n.retries}</span>`:""}
89
- ${n.error?`<div class="step-error">${C(n.error)}</div>`:""}
93
+ ${n.error?`<div class="step-error">${P(n.error)}</div>`:""}
90
94
  </div>
91
95
  </li>`}).join(`
92
- `)}</ol>`}function Hr(t){return t.featureEdits&&t.featureEdits.length>0?`<div class="panel">
96
+ `)}</ol>`}function Kr(t){return t.featureEdits&&t.featureEdits.length>0?`<div class="panel">
93
97
  <div class="panel-title gold">suggested .feature edit</div>
94
- <div class="diff">${t.featureEdits.map(n=>{let r=t.steps[n.index]?.gherkin??`step ${n.index}`;return`<div class="diff-line del">\u2212 ${C(r)}</div><div class="diff-line add">+ ${C(n.text)}</div>`}).join("")}</div>
98
+ <div class="diff">${t.featureEdits.map(n=>{let r=t.steps[n.index]?.gherkin??`step ${n.index}`;return`<div class="diff-line del">\u2212 ${P(r)}</div><div class="diff-line add">+ ${P(n.text)}</div>`}).join("")}</div>
95
99
  <div class="panel-hint">apply with <code>saffron accept --with-feature-edit</code></div>
96
- </div>`:t.suggestedFeatureEdit?`<div class="panel"><div class="panel-title gold">suggested .feature edit</div><pre>${C(t.suggestedFeatureEdit)}</pre></div>`:""}function Gr(t){let e=t.usage.inputTokens+t.usage.outputTokens;if(t.usage.aiCalls===0)return'<span class="pill green">0 tokens</span>';let n=t.usage.costUsd?` \xB7 $${t.usage.costUsd.toFixed(2)}`:"";return`<span class="pill gold">${t.usage.aiCalls} ai \xB7 ${de(e)} tok${n}</span>`}function Yr(t){return`<details class="card" ${t.status!=="green"?"open":""}>
100
+ </div>`:t.suggestedFeatureEdit?`<div class="panel"><div class="panel-title gold">suggested .feature edit</div><pre>${P(t.suggestedFeatureEdit)}</pre></div>`:""}function Qr(t){let e=t.usage.inputTokens+t.usage.outputTokens;if(t.usage.aiCalls===0)return'<span class="pill green">0 tokens</span>';let n=t.usage.costUsd?` \xB7 $${t.usage.costUsd.toFixed(2)}`:"";return`<span class="pill gold">${t.usage.aiCalls} ai \xB7 ${ge(e)} tok${n}</span>`}function Xr(t){return`<details class="card" ${t.status!=="green"?"open":""}>
97
101
  <summary>
98
- <span class="pill ${t.status==="green"?"green":t.status==="yellow"?"gold":"red"}">${Vr[t.status]}</span>
99
- <span class="card-title">${C(t.scenario)}</span>
102
+ <span class="pill ${t.status==="green"?"green":t.status==="yellow"?"gold":"red"}">${Hr[t.status]}</span>
103
+ <span class="card-title">${P(t.scenario)}</span>
100
104
  <span class="card-meta">
101
- <span class="m">${C(t.feature)}</span>
105
+ <span class="m">${P(t.feature)}</span>
102
106
  <span class="m-sep">\xB7</span>
103
- <span class="m">${C(t.source)}</span>
107
+ <span class="m">${P(t.source)}</span>
104
108
  <span class="m-sep">\xB7</span>
105
109
  <span class="m">${Pe(t.durationMs)}</span>
106
- ${Gr(t)}
110
+ ${Qr(t)}
107
111
  </span>
108
112
  </summary>
109
113
  <div class="card-body">
110
- ${Wr(t)}
111
- ${t.narrative?`<div class="panel"><div class="panel-title">agent narrative</div><p>${C(t.narrative)}</p></div>`:""}
112
- ${t.adaptations.length>0?`<div class="panel accent-gold"><div class="panel-title gold">adaptations</div><ul>${t.adaptations.map(e=>`<li>${C(e)}</li>`).join("")}</ul></div>`:""}
113
- ${Hr(t)}
114
- ${t.proposalFile?`<div class="panel"><div class="panel-title">cache proposal pending${t.verified===!0?' <span class="pill green">verified</span>':t.verified===!1?' <span class="pill red">unverified</span>':""}</div><p class="mono">${C(t.proposalFile)}</p>${t.verified===!1&&t.proofError?`<p class="mono" style="color:var(--red)">proof replay failed: ${C(t.proofError.split(`
114
+ ${Jr(t)}
115
+ ${t.narrative?`<div class="panel"><div class="panel-title">agent narrative</div><p>${P(t.narrative)}</p></div>`:""}
116
+ ${t.adaptations.length>0?`<div class="panel accent-gold"><div class="panel-title gold">adaptations</div><ul>${t.adaptations.map(e=>`<li>${P(e)}</li>`).join("")}</ul></div>`:""}
117
+ ${Kr(t)}
118
+ ${t.proposalFile?`<div class="panel"><div class="panel-title">cache proposal pending${t.verified===!0?' <span class="pill green">verified</span>':t.verified===!1?' <span class="pill red">unverified</span>':""}</div><p class="mono">${P(t.proposalFile)}</p>${t.verified===!1&&t.proofError?`<p class="mono" style="color:var(--red)">proof replay failed: ${P(t.proofError.split(`
115
119
  `)[0])}</p>`:""}<div class="panel-hint">review with <code>saffron accept</code> / <code>saffron reject</code></div></div>`:""}
116
- ${t.error&&t.status==="red"?`<div class="panel accent-red"><div class="panel-title red">failure</div><p>${C(t.error)}</p></div>`:""}
120
+ ${t.error&&t.status==="red"?`<div class="panel accent-red"><div class="panel-title red">failure</div><p>${P(t.error)}</p></div>`:""}
117
121
  </div>
118
- </details>`}function dn(t){let e=t.totals,n=new Date(t.startedAt),r=new Date(t.finishedAt).getTime()-n.getTime(),s=n.toLocaleString("en-GB",{day:"2-digit",month:"short",year:"numeric",hour:"2-digit",minute:"2-digit"});return`<!doctype html>
122
+ </details>`}function mn(t){let e=t.totals,n=new Date(t.startedAt),r=new Date(t.finishedAt).getTime()-n.getTime(),s=n.toLocaleString("en-GB",{day:"2-digit",month:"short",year:"numeric",hour:"2-digit",minute:"2-digit"});return`<!doctype html>
119
123
  <html lang="en">
120
124
  <head>
121
125
  <meta charset="utf-8"/>
@@ -235,61 +239,61 @@ ${t.completedSteps.map(i=>` \u2713 ${i}`).join(`
235
239
  <div class="wrap">
236
240
  <header class="top">
237
241
  <div class="brand">
238
- ${Ur(38)}
242
+ ${qr(38)}
239
243
  <div>
240
244
  <div class="brand-name">saffron</div>
241
245
  <div class="brand-sub">test run report</div>
242
246
  </div>
243
247
  </div>
244
248
  <div class="run-meta">
245
- <span>${C(s)}</span>
249
+ <span>${P(s)}</span>
246
250
  <span>\xB7</span>
247
251
  <span>${Pe(r)}</span>
248
- ${t.baseURL?`<span class="chip base">${C(t.baseURL)}</span>`:""}
252
+ ${t.baseURL?`<span class="chip base">${P(t.baseURL)}</span>`:""}
249
253
  </div>
250
254
  </header>
251
255
 
252
- ${zr(t,r)}
253
- ${qr(t)}
256
+ ${Gr(t,r)}
257
+ ${Yr(t)}
254
258
 
255
259
  <div class="section-head">
256
260
  <span class="section-title">scenarios \xB7 ${e.scenarios}</span>
257
- <span class="section-title">saffron v${C(t.version)}</span>
261
+ <span class="section-title">saffron v${P(t.version)}</span>
258
262
  </div>
259
- ${t.scenarios.map(Yr).join(`
263
+ ${t.scenarios.map(Xr).join(`
260
264
  `)}
261
265
 
262
- <footer>${Br(11)} generated by saffron v${C(t.version)} \xB7 ${C(new Date(t.finishedAt).toLocaleString("en-GB",{dateStyle:"medium",timeStyle:"medium"}))}</footer>
266
+ <footer>${Wr(11)} generated by saffron v${P(t.version)} \xB7 ${P(new Date(t.finishedAt).toLocaleString("en-GB",{dateStyle:"medium",timeStyle:"medium"}))}</footer>
263
267
  </div>
264
268
  </body>
265
269
  </html>
266
- `}function pn(t,e,n){let r={scenarios:t.length,green:0,yellow:0,red:0,aiCalls:0,inputTokens:0,outputTokens:0,cacheReadTokens:0,cacheCreationTokens:0,costUsd:0};for(let s of t)r[s.status]+=1,r.aiCalls+=s.usage.aiCalls,r.inputTokens+=s.usage.inputTokens,r.outputTokens+=s.usage.outputTokens,r.cacheReadTokens+=s.usage.cacheReadTokens,r.cacheCreationTokens+=s.usage.cacheCreationTokens??0,r.costUsd+=s.usage.costUsd??0;return{tool:"saffron",version:Ce(),startedAt:e.toISOString(),finishedAt:new Date().toISOString(),baseURL:n,totals:r,scenarios:t.map(s=>({feature:s.scenario.featurePath,scenario:s.scenario.displayName,tags:[...s.scenario.tags],status:s.status,source:s.source,durationMs:s.durationMs,usage:s.usage,steps:s.stepResults,narrative:s.narrative,adaptations:s.adaptations,suggestedFeatureEdit:s.suggestedFeatureEdit,featureEdits:s.featureEdits,verified:s.verified,proofError:s.proofError,proposalFile:s.proposalFile,error:s.error}))}}function un(t,e){let n=nt.join(t,".saffron","reports");tt.mkdirSync(n,{recursive:!0});let r=nt.join(n,"latest.json"),s=nt.join(n,"latest.html");return tt.writeFileSync(r,`${JSON.stringify(e,null,2)}
267
- `),tt.writeFileSync(s,dn(e)),{json:r,html:s}}function fn(t){let e=t===void 0?[]:Array.isArray(t)?t:[t],n=new Set;for(let r of e)for(let s of r.split(/[\s,|]+/)){let o=s.trim();o&&n.add(o.startsWith("@")?o:`@${o}`)}return[...n]}function gn(t,e){return e.length===0?t:t.filter(n=>n.tags.some(r=>e.includes(r)))}function mn(t,e){return[...e??[],t]}import Fe from"node:fs";import hn from"node:path";function yn(t){return hn.join(t,".saffron","history.jsonl")}function Sn(t,e,n,r){let s=t.map(o=>({feature:o.scenario.featurePath,scenario:o.scenario.displayName,tags:[...o.scenario.tags],status:o.status,source:o.source,durationMs:o.durationMs,verified:o.verified,seededSteps:o.seededSteps,adaptations:o.adaptations.length,driftSteps:o.stepResults.filter(i=>i.drift).length,aiCalls:o.usage.aiCalls,tokensInOut:o.usage.inputTokens+o.usage.outputTokens,cacheRead:o.usage.cacheReadTokens,cacheWrite:o.usage.cacheCreationTokens,costUsd:o.usage.costUsd??0,error:o.error?.split(`
268
- `)[0]}));return{runId:e.toISOString(),startedAt:e.toISOString(),finishedAt:new Date().toISOString(),baseURL:r,green:s.filter(o=>o.status==="green").length,yellow:s.filter(o=>o.status==="yellow").length,red:s.filter(o=>o.status==="red").length,aiCalls:s.reduce((o,i)=>o+i.aiCalls,0),costUsd:s.reduce((o,i)=>o+i.costUsd,0),divergentSteps:n,scenarios:s}}function xn(t,e){let n=yn(t);Fe.mkdirSync(hn.dirname(n),{recursive:!0}),Fe.appendFileSync(n,`${JSON.stringify(e)}
269
- `)}function bn(t,e=50){let n=yn(t);if(!Fe.existsSync(n))return[];let r=Fe.readFileSync(n,"utf8").trim().split(`
270
- `).filter(Boolean),s=[];for(let o of r.slice(-e))try{s.push(JSON.parse(o))}catch{}return s}var rt=t=>{let e=t.green+t.yellow+t.red;return e===0?0:Math.round((t.green+t.yellow)/e*100)};function vn(t,e){let n=[...t,e],r=n.slice(-20),s=n.slice(-10),o=t.at(-1),i=o?{passRatePp:rt(e)-rt(o),costUsd:e.costUsd-o.costUsd,aiCalls:e.aiCalls-o.aiCalls,red:e.red-o.red}:void 0,a=new Map;for(let l of s)for(let c of l.scenarios){let g=`${c.feature}::${c.scenario}`,h=a.get(g)??{feature:c.feature,scenario:c.scenario,heals:0,reds:0,runs:0};h.runs++,c.source==="agent-heal"&&c.status==="yellow"&&h.heals++,c.status==="red"&&h.reds++,a.set(g,h)}let d=[...a.values()].filter(l=>l.heals>=2||l.reds>=3).sort((l,c)=>c.heals+c.reds-(l.heals+l.reds)),p=new Map;for(let l of r)for(let c of l.scenarios)c.status==="red"&&c.error&&p.set(c.error,(p.get(c.error)??0)+1);let m=[...p.entries()].sort((l,c)=>c[1]-l[1]).slice(0,3).map(([l,c])=>({message:l,count:c}));return{prev:i,series:{passRate:r.map(rt),costUsd:r.map(l=>Number(l.costUsd.toFixed(4))),aiCalls:r.map(l=>l.aiCalls)},chronic:d,divergentSteps:e.divergentSteps,topIssues:m}}import $ from"node:fs";import A from"node:path";var pe={claude:".claude/skills",agents:".agents/skills",copilot:".github/skills",cursor:".cursor/skills"},Jr=["claude","agents"],$n="<!-- saffron:start -->",ot="<!-- saffron:end -->";function Qr(){return[$n,"## Saffron end-to-end tests","","UI tests are plain-Gherkin `.feature` / `.saffron` files under `features/`,","run by Saffron (`npx saffron run`). No step definitions exist: an AI agent","records each scenario once; later runs replay at zero tokens.","","- Load the `saffron` skill before writing or editing scenarios.","- Exact step text is the cache identity: run `npx saffron steps` and reuse"," recorded wordings instead of inventing synonyms.","- `Then` steps are never healed: write them as the verdict, last.","- Never edit `.saffron/cache/` or `.saffron/proposals/` by hand; change the"," scenario text and re-run. Review proposals with `npx saffron accept`.","- Secrets go in `{env:VAR}` tokens, never in files.",ot,""].join(`
271
- `)}function wn(t,e){if(!$.existsSync(t))return $.writeFileSync(t,e),"created";let n=$.readFileSync(t,"utf8"),r=n.indexOf($n),s=n.indexOf(ot);if(r!==-1&&s!==-1&&s>r){let i=n.slice(0,r)+e.trimEnd()+n.slice(s+ot.length);return i===n?"unchanged":($.writeFileSync(t,i),"updated")}let o=n.endsWith(`
270
+ `}function hn(t,e,n){let r={scenarios:t.length,green:0,yellow:0,red:0,aiCalls:0,inputTokens:0,outputTokens:0,cacheReadTokens:0,cacheCreationTokens:0,costUsd:0};for(let s of t)r[s.status]+=1,r.aiCalls+=s.usage.aiCalls,r.inputTokens+=s.usage.inputTokens,r.outputTokens+=s.usage.outputTokens,r.cacheReadTokens+=s.usage.cacheReadTokens,r.cacheCreationTokens+=s.usage.cacheCreationTokens??0,r.costUsd+=s.usage.costUsd??0;return{tool:"saffron",version:Ce(),startedAt:e.toISOString(),finishedAt:new Date().toISOString(),baseURL:n,totals:r,scenarios:t.map(s=>({feature:s.scenario.featurePath,scenario:s.scenario.displayName,tags:[...s.scenario.tags],status:s.status,source:s.source,durationMs:s.durationMs,usage:s.usage,steps:s.stepResults,narrative:s.narrative,adaptations:s.adaptations,suggestedFeatureEdit:s.suggestedFeatureEdit,featureEdits:s.featureEdits,verified:s.verified,proofError:s.proofError,proposalFile:s.proposalFile,error:s.error}))}}function yn(t,e){let n=rt.join(t,".saffron","reports");nt.mkdirSync(n,{recursive:!0});let r=rt.join(n,"latest.json"),s=rt.join(n,"latest.html");return nt.writeFileSync(r,`${JSON.stringify(e,null,2)}
271
+ `),nt.writeFileSync(s,mn(e)),{json:r,html:s}}function xn(t){let e=t===void 0?[]:Array.isArray(t)?t:[t],n=new Set;for(let r of e)for(let s of r.split(/[\s,|]+/)){let i=s.trim();i&&n.add(i.startsWith("@")?i:`@${i}`)}return[...n]}function Sn(t,e){return e.length===0?t:t.filter(n=>n.tags.some(r=>e.includes(r)))}function bn(t,e){return[...e??[],t]}import Fe from"node:fs";import vn from"node:path";function wn(t){return vn.join(t,".saffron","history.jsonl")}function kn(t,e,n,r){let s=t.map(i=>({feature:i.scenario.featurePath,scenario:i.scenario.displayName,tags:[...i.scenario.tags],status:i.status,source:i.source,durationMs:i.durationMs,verified:i.verified,seededSteps:i.seededSteps,adaptations:i.adaptations.length,driftSteps:i.stepResults.filter(o=>o.drift).length,aiCalls:i.usage.aiCalls,tokensInOut:i.usage.inputTokens+i.usage.outputTokens,cacheRead:i.usage.cacheReadTokens,cacheWrite:i.usage.cacheCreationTokens,costUsd:i.usage.costUsd??0,error:i.error?.split(`
272
+ `)[0]}));return{runId:e.toISOString(),startedAt:e.toISOString(),finishedAt:new Date().toISOString(),baseURL:r,green:s.filter(i=>i.status==="green").length,yellow:s.filter(i=>i.status==="yellow").length,red:s.filter(i=>i.status==="red").length,aiCalls:s.reduce((i,o)=>i+o.aiCalls,0),costUsd:s.reduce((i,o)=>i+o.costUsd,0),divergentSteps:n,scenarios:s}}function $n(t,e){let n=wn(t);Fe.mkdirSync(vn.dirname(n),{recursive:!0}),Fe.appendFileSync(n,`${JSON.stringify(e)}
273
+ `)}function Rn(t,e=50){let n=wn(t);if(!Fe.existsSync(n))return[];let r=Fe.readFileSync(n,"utf8").trim().split(`
274
+ `).filter(Boolean),s=[];for(let i of r.slice(-e))try{s.push(JSON.parse(i))}catch{}return s}var st=t=>{let e=t.green+t.yellow+t.red;return e===0?0:Math.round((t.green+t.yellow)/e*100)};function Tn(t,e){let n=[...t,e],r=n.slice(-20),s=n.slice(-10),i=t.at(-1),o=i?{passRatePp:st(e)-st(i),costUsd:e.costUsd-i.costUsd,aiCalls:e.aiCalls-i.aiCalls,red:e.red-i.red}:void 0,a=new Map;for(let c of s)for(let l of c.scenarios){let u=`${l.feature}::${l.scenario}`,h=a.get(u)??{feature:l.feature,scenario:l.scenario,heals:0,reds:0,runs:0};h.runs++,l.source==="agent-heal"&&l.status==="yellow"&&h.heals++,l.status==="red"&&h.reds++,a.set(u,h)}let d=[...a.values()].filter(c=>c.heals>=2||c.reds>=3).sort((c,l)=>l.heals+l.reds-(c.heals+c.reds)),p=new Map;for(let c of r)for(let l of c.scenarios)l.status==="red"&&l.error&&p.set(l.error,(p.get(l.error)??0)+1);let m=[...p.entries()].sort((c,l)=>l[1]-c[1]).slice(0,3).map(([c,l])=>({message:c,count:l}));return{prev:o,series:{passRate:r.map(st),costUsd:r.map(c=>Number(c.costUsd.toFixed(4))),aiCalls:r.map(c=>c.aiCalls)},chronic:d,divergentSteps:e.divergentSteps,topIssues:m}}import $ from"node:fs";import C from"node:path";var me={claude:".claude/skills",agents:".agents/skills",copilot:".github/skills",cursor:".cursor/skills"},Zr=["claude","agents"],Cn="<!-- saffron:start -->",it="<!-- saffron:end -->";function es(){return[Cn,"## Saffron end-to-end tests","","UI tests are plain-Gherkin `.feature` / `.saffron` files under `features/`,","run by Saffron (`npx saffron run`). No step definitions exist: an AI agent","records each scenario once; later runs replay at zero tokens.","","- Load the `saffron` skill before writing or editing scenarios.","- Exact step text is the cache identity: run `npx saffron steps` and reuse"," recorded wordings instead of inventing synonyms.","- `Then` steps are never healed: write them as the verdict, last.","- Never edit `.saffron/cache/` or `.saffron/proposals/` by hand; change the"," scenario text and re-run. Review proposals with `npx saffron accept`.","- Secrets go in `{env:VAR}` tokens, never in files.",it,""].join(`
275
+ `)}function En(t,e){if(!$.existsSync(t))return $.writeFileSync(t,e),"created";let n=$.readFileSync(t,"utf8"),r=n.indexOf(Cn),s=n.indexOf(it);if(r!==-1&&s!==-1&&s>r){let o=n.slice(0,r)+e.trimEnd()+n.slice(s+it.length);return o===n?"unchanged":($.writeFileSync(t,o),"updated")}let i=n.endsWith(`
272
276
  `)?`
273
277
  `:`
274
278
 
275
- `;return $.writeFileSync(t,n+o+e),"updated"}var st={command:"npx",args:["saffron","mcp"]},Kr={claude:{file:".mcp.json",key:"mcpServers",entry:st},cursor:{file:".cursor/mcp.json",key:"mcpServers",entry:st},copilot:{file:".vscode/mcp.json",key:"servers",entry:{type:"stdio",...st}}},kn={agents:"codex mcp add saffron -- npx saffron mcp (Codex; other hosts: see their MCP settings)"};function Xr(t,e){let n=A.join(t,e.file),r={},s=$.existsSync(n);if(s)try{r=JSON.parse($.readFileSync(n,"utf8"))}catch{throw new Error(`${e.file} is not valid JSON: fix it or remove it, then re-run`)}let o=r[e.key]??{};return JSON.stringify(o.saffron)===JSON.stringify(e.entry)?"unchanged":(o.saffron=e.entry,r[e.key]=o,$.mkdirSync(A.dirname(n),{recursive:!0}),$.writeFileSync(n,JSON.stringify(r,null,2)+`
276
- `),s?"updated":"created")}function Rn(t,e){$.mkdirSync(e,{recursive:!0});for(let n of $.readdirSync(t,{withFileTypes:!0})){let r=A.join(t,n.name),s=A.join(e,n.name);n.isDirectory()?Rn(r,s):$.copyFileSync(r,s)}}function Tn(t){let e=A.join(t.packageRoot,"skills","saffron");if(!$.existsSync(A.join(e,"SKILL.md")))throw new Error(`bundled skill not found at ${e}`);let n={skillDirs:[],instructionFiles:[],scaffolded:[],mcpFiles:[],mcpHints:[]},r=t.targets??Jr;for(let s of r){let o=A.join(t.projectRoot,pe[s],"saffron");$.existsSync(o)&&$.rmSync(o,{recursive:!0,force:!0}),Rn(e,o),n.skillDirs.push(A.relative(t.projectRoot,o))}if(t.mcp!==!1)for(let s of r){let o=Kr[s];o?n.mcpFiles.push({file:o.file,outcome:Xr(t.projectRoot,o)}):kn[s]&&n.mcpHints.push(kn[s])}if(t.instructions!==!1){let s=Qr(),o=A.join(t.projectRoot,"AGENTS.md");n.instructionFiles.push({file:"AGENTS.md",outcome:wn(o,s)});let i=A.join(t.projectRoot,"CLAUDE.md");$.existsSync(i)&&n.instructionFiles.push({file:"CLAUDE.md",outcome:wn(i,s)})}if(t.examples){n.examples=Zr(t.projectRoot,t.packageRoot);for(let s of n.examples.files)n.scaffolded.push(s)}if(t.scaffold!==!1){let s=A.join(t.projectRoot,"saffron.config.json");$.existsSync(s)||($.writeFileSync(s,JSON.stringify({baseURL:"http://localhost:3000",features:"features"},null,2)+`
277
- `),n.scaffolded.push("saffron.config.json"));let o=A.join(t.projectRoot,"features");$.existsSync(o)||($.mkdirSync(o,{recursive:!0}),n.scaffolded.push("features/"));let i=A.join(t.projectRoot,".gitignore"),a=t.examples?[".saffron/reports/",".env"]:[".saffron/reports/"],d=$.existsSync(i)?$.readFileSync(i,"utf8"):"",p=[];for(let m of a)d.split(`
278
- `).some(l=>l.trim()===m)||(d+=(d&&!d.endsWith(`
279
+ `;return $.writeFileSync(t,n+i+e),"updated"}var ot={command:"npx",args:["saffron","mcp"]},ts={claude:{file:".mcp.json",key:"mcpServers",entry:ot},cursor:{file:".cursor/mcp.json",key:"mcpServers",entry:ot},copilot:{file:".vscode/mcp.json",key:"servers",entry:{type:"stdio",...ot}}},An={agents:"codex mcp add saffron -- npx saffron mcp (Codex; other hosts: see their MCP settings)"};function ns(t,e){let n=C.join(t,e.file),r={},s=$.existsSync(n);if(s)try{r=JSON.parse($.readFileSync(n,"utf8"))}catch{throw new Error(`${e.file} is not valid JSON: fix it or remove it, then re-run`)}let i=r[e.key]??{};return JSON.stringify(i.saffron)===JSON.stringify(e.entry)?"unchanged":(i.saffron=e.entry,r[e.key]=i,$.mkdirSync(C.dirname(n),{recursive:!0}),$.writeFileSync(n,JSON.stringify(r,null,2)+`
280
+ `),s?"updated":"created")}function Pn(t,e){$.mkdirSync(e,{recursive:!0});for(let n of $.readdirSync(t,{withFileTypes:!0})){let r=C.join(t,n.name),s=C.join(e,n.name);n.isDirectory()?Pn(r,s):$.copyFileSync(r,s)}}function Fn(t){let e=C.join(t.packageRoot,"skills","saffron");if(!$.existsSync(C.join(e,"SKILL.md")))throw new Error(`bundled skill not found at ${e}`);let n={skillDirs:[],instructionFiles:[],scaffolded:[],mcpFiles:[],mcpHints:[]},r=t.targets??Zr;for(let s of r){let i=C.join(t.projectRoot,me[s],"saffron");$.existsSync(i)&&$.rmSync(i,{recursive:!0,force:!0}),Pn(e,i),n.skillDirs.push(C.relative(t.projectRoot,i))}if(t.mcp!==!1)for(let s of r){let i=ts[s];i?n.mcpFiles.push({file:i.file,outcome:ns(t.projectRoot,i)}):An[s]&&n.mcpHints.push(An[s])}if(t.instructions!==!1){let s=es(),i=C.join(t.projectRoot,"AGENTS.md");n.instructionFiles.push({file:"AGENTS.md",outcome:En(i,s)});let o=C.join(t.projectRoot,"CLAUDE.md");$.existsSync(o)&&n.instructionFiles.push({file:"CLAUDE.md",outcome:En(o,s)})}if(t.examples){n.examples=rs(t.projectRoot,t.packageRoot);for(let s of n.examples.files)n.scaffolded.push(s)}if(t.scaffold!==!1){let s=C.join(t.projectRoot,"saffron.config.json");$.existsSync(s)||($.writeFileSync(s,JSON.stringify({baseURL:"http://localhost:3000",features:"features"},null,2)+`
281
+ `),n.scaffolded.push("saffron.config.json"));let i=C.join(t.projectRoot,"features");$.existsSync(i)||($.mkdirSync(i,{recursive:!0}),n.scaffolded.push("features/"));let o=C.join(t.projectRoot,".gitignore"),a=t.examples?[".saffron/reports/",".env"]:[".saffron/reports/"],d=$.existsSync(o)?$.readFileSync(o,"utf8"):"",p=[];for(let m of a)d.split(`
282
+ `).some(c=>c.trim()===m)||(d+=(d&&!d.endsWith(`
279
283
  `)?`
280
284
  `:"")+m+`
281
- `,p.push(m));p.length>0&&($.writeFileSync(i,d),n.scaffolded.push(`.gitignore (+ ${p.join(", ")})`))}return n}function Zr(t,e){let n=A.join(e,"templates","saucedemo");if(!$.existsSync(A.join(n,"features")))return{installed:!1,files:[],reason:`bundled examples not found at ${n}`};let r=A.join(t,"features");if($.existsSync(r)&&$.readdirSync(r).length>0)return{installed:!1,files:[],reason:"features/ is not empty; examples are only installed into an empty features directory"};let s=[];$.mkdirSync(r,{recursive:!0});for(let a of $.readdirSync(A.join(n,"features")))$.copyFileSync(A.join(n,"features",a),A.join(r,a)),s.push(`features/${a}`);let o=A.join(t,"saffron.config.json");$.existsSync(o)||($.copyFileSync(A.join(n,"saffron.config.json"),o),s.push("saffron.config.json (baseURL https://www.saucedemo.com, retries 1)"));let i=A.join(t,".env.example");return $.existsSync(i)||($.copyFileSync(A.join(n,".env.example"),i),s.push(".env.example")),{installed:!0,files:s}}import es from"node:path";function En(t){return["saffron lsp is a language server: it speaks LSP over stdio and is meant","to be launched by your editor, not run by hand (nothing happens here).","","JetBrains (IntelliJ, WebStorm, PyCharm, Rider, incl. Community):"," 1. Completion, diagnostics, hover, go-to-definition: install the free"," LSP4IJ plugin, then Settings \u2192 Languages & Frameworks \u2192 Language"," Servers \u2192 +: command `npx saffron lsp`, working dir = project root,"," file patterns *.saffron and *.feature."," 2. Syntax highlighting comes from a TextMate bundle, not the LSP:"," Settings \u2192 Editor \u2192 TextMate Bundles \u2192 + and pick this folder:",` ${t?es.join(t,"textmate","saffron"):"node_modules/saffron-ai/textmate/saffron"}`,"","Neovim / other LSP editors: cmd = { 'npx', 'saffron', 'lsp' },","filetypes = { 'saffron', 'feature' }.","","VS Code: install the extension instead:"," code --install-extension ChathurangaJayasinghe.saffron-vscode"].join(`
282
- `)}function re(t){At(t);let e=T.join(t,"saffron.config.json");return I.existsSync(e)?JSON.parse(I.readFileSync(e,"utf8")):{}}function ss(t,e){let n=e.length>0?e:["features"],r=[];for(let s of n){let o=T.isAbsolute(s)?s:T.join(t,s);if(I.existsSync(o))if(I.statSync(o).isDirectory())for(let i of I.readdirSync(o,{recursive:!0})){let a=String(i);se(a)&&r.push(T.join(o,a))}else se(o)&&r.push(o)}return r.sort()}function An(t,e,n){let r=T.isAbsolute(e.features??"features")?e.features:T.join(t,e.features??"features"),s=new Set(ue(r));for(let o of n)o.endsWith(".saffron")&&s.add(o);return X([...s].sort(),t)}function os(){let t=process.env.ANTHROPIC_API_KEY||process.env.CLAUDE_CODE_OAUTH_TOKEN||process.env.CLAUDE_CODE_USE_BEDROCK||process.env.CLAUDE_CODE_USE_VERTEX,e=process.env.HOME??"",n=e&&(I.existsSync(T.join(e,".claude",".credentials.json"))||I.existsSync(T.join(e,".claude.json")));t||n||console.error(["note: no Claude credentials detected. Cached scenarios replay fine","without AI, but recording and healing need one of:"," \xB7 ANTHROPIC_API_KEY=sk-ant-... (console.anthropic.com \u2192 API keys)"," \xB7 a Claude Code login on this machine","Replay-only runs: add --no-agent to silence this note.",""].join(`
283
- `))}async function is(t){let e=ns.createInterface({input:process.stdin,output:process.stdout});try{let n=await new Promise(r=>e.question(t,r));return/^y(es)?$/i.test(n.trim())}finally{e.close()}}function je(t){console.error(`saffron: ${t.message}`),process.exit(2)}function it(t){return t>=1e6?`${(t/1e6).toFixed(1)}M`:t>=1e4?`${(t/1e3).toFixed(1)}k`:t.toLocaleString()}var as={green:"\x1B[32m",yellow:"\x1B[33m",red:"\x1B[31m"},cs="\x1B[0m",P=new rs().name("saffron").description("Gherkin-native AI-fallback test runner: zero-token cached replay, runtime AI healing.").version(Ce()).option("-p, --project-root <dir>","project root",process.cwd());P.command("run").description("Run feature files (cached replay; AI records/heals on demand)").argument("[paths...]","feature files or directories (default: features/)").option("--base-url <url>","base URL of the app under test").option("--headed","run the browser headed").option("--filter <tags>",'only run scenarios carrying any of these @tags: comma-separated ("@smoke,@WA-TC1") or repeat the flag',mn).option("--no-agent","disable AI fallback (cache misses/failures go red)").option("--rerecord","discard the committed caches of the selected scenarios and let the agent record them fresh (the honest fix for a wrong recording)").option("--model <model>","model for the agent").option("--storage-state <file>","Playwright storageState JSON for authenticated sessions").option("--strict","treat passed-with-adaptation (yellow) as failure until its proposal is reviewed").option("--no-verify","skip the zero-AI proof replay of agent recordings before filing proposals").option("--no-reuse","disable Level-1 step reuse (seeding new recordings from existing step recordings)").option("--browser <name>",'replay browser: "chromium" (default), "firefox", or "webkit", recording/healing always use Chromium').option("--heal-model <model>","cheaper model for heal sessions").option("--workers <n>","parallel replay workers (agent recording/healing stays sequential)").option("--assertion-policy <policy>",'assertion adaptability: "strict" (default) or "adaptable-mid" (mid-scenario assertions may be adapted; the final assertion block never is)').action(async(t,e)=>{let n=T.resolve(P.opts().projectRoot),r=re(n),s=e.baseUrl??r.baseURL,o=ss(n,t.length>0?t:r.features?[r.features]:[]);o.length===0&&(console.error("No .feature/.saffron files found."),process.exit(2)),e.agent!==!1&&os();let i;try{let S=An(n,r,o);i=o.flatMap(R=>Z(R,n,S))}catch(S){throw S instanceof M&&je(S),S}let a=fn(e.filter);if(a.length>0&&(i=gn(i,a),i.length===0&&(console.error(`No scenarios match --filter ${a.join(",")} in ${o.length} feature file(s).`),process.exit(2))),e.rerecord){e.agent===!1&&(console.error("saffron: --rerecord needs the agent; drop --no-agent"),process.exit(2));let S=0;for(let R of i){let E=z(n,R.featurePath,R.name);I.existsSync(E)&&(I.rmSync(E),S++)}console.log(`rerecord: removed ${S} cache file(s) for ${i.length} scenario(s); the agent records them fresh (seeded from the other recordings). Restore with git if needed.`)}{let S=new Map;for(let R of i){let E=ze(R),F=U(z(n,R.featurePath,R.name));F&&E.push(JSON.stringify(F.steps));for(let D of Ve(E))process.env[D]===void 0&&!S.has(D)&&S.set(D,R.displayName)}if(S.size>0){for(let[R,E]of S)console.error(`missing environment variable ${R} (referenced as {env:${R}} by "${E}")`);console.error("set the variable(s), or add them to a git-ignored .env in the project root"),process.exit(2)}}let d=new ke({projectRoot:n,baseURL:s,headed:e.headed,actionTimeoutMs:r.actionTimeoutMs,retries:r.retries,storageState:e.storageState??r.storageState,browser:(()=>{let S=e.browser??r.browser??"chromium";return S!=="chromium"&&S!=="firefox"&&S!=="webkit"&&(console.error(`invalid --browser "${S}": use "chromium", "firefox", or "webkit"`),process.exit(2)),S})(),healModel:e.healModel??r.healModel,verifyProposals:e.verify===!1?!1:r.verifyProposals,reuseSteps:e.reuse===!1?!1:r.reuseSteps,assertionPolicy:(()=>{let S=e.assertionPolicy??r.assertionPolicy??"strict";return S!=="strict"&&S!=="adaptable-mid"&&(console.error(`invalid --assertion-policy "${S}": use "strict" or "adaptable-mid"`),process.exit(2)),S})(),agent:e.agent?new $e({model:e.model??r.model,maxTurns:r.maxTurns,snapshotMode:r.snapshotMode}):void 0}),p=new Date,m=Math.max(1,Number.parseInt(String(e.workers??r.workers??1),10)||1),l=new Array(i.length),c=S=>{let R=S.scenario,E=as[S.status],F=S.usage.inputTokens+S.usage.outputTokens,D=S.usage.cacheReadTokens+S.usage.cacheCreationTokens,Pn=D>0?`, ${it(D)} cache traffic`:"";console.log(`${E}${S.status.toUpperCase().padEnd(7)}${cs}${R.displayName} (${S.source}, ${S.durationMs}ms, ${S.usage.aiCalls} AI calls, ${F} tokens${Pn})`);for(let _e of S.adaptations)console.log(` \u26A0 ${_e}`);S.seededSteps&&console.log(` \u26A1 ${S.seededSteps}/${S.stepResults.length} steps seeded from existing recordings (zero AI)`);let Ie=S.stepResults.reduce((_e,Fn)=>_e+(Fn.retries??0),0);Ie&&console.log(` \u21BB ${Ie} action ${Ie===1?"retry":"retries"} absorbed before settling (retries: ${r.retries??1} per action)`),S.verified===!0?console.log(" \u2713 proposal verified by zero-AI proof replay"):S.verified===!1&&console.log(` \u2717 proposal UNVERIFIED, proof replay failed: ${S.proofError?.split(`
284
- `)[0]}`),S.error&&console.log(` ${S.error}`)};await d.start();try{if(m>1&&i.length>1){let S=i.map((E,F)=>({s:E,i:F})),R=[];await Promise.all(Array.from({length:Math.min(m,S.length)},async()=>{for(;;){let E=S.shift();if(!E)return;let F=await d.runScenario(E.s,{agentDisabled:!0});F.status==="red"?R.push(E):(l[E.i]=F,c(F))}}));for(let E of R.sort((F,D)=>F.i-D.i)){let F=await d.runScenario(E.s);l[E.i]=F,c(F)}}else for(let S=0;S<i.length;S++){let R=await d.runScenario(i[S]);l[S]=R,c(R)}}finally{await d.stop()}let g=pn(l,p,s),h=H(n).divergent.length,u=Sn(l,p,h,s),f=bn(n);g.trends=vn(f,u),xn(n,u);let{html:y,json:x}=un(n,g),w=g.totals,j=w.cacheReadTokens+w.cacheCreationTokens;console.log(`
285
- ${w.green} passed, ${w.yellow} adapted, ${w.red} failed \xB7 ${w.aiCalls} AI calls \xB7 ${(w.inputTokens+w.outputTokens).toLocaleString()} tokens in+out${j>0?` \xB7 ${it(w.cacheReadTokens)} cache read \xB7 ${it(w.cacheCreationTokens)} cache written`:""} \xB7 $${w.costUsd.toFixed(4)}`);let v=g.trends;if(v?.prev){let S=v.prev.passRatePp,R=v.prev.costUsd;console.log(`vs previous run: pass rate ${S>=0?"+":""}${S}pp \xB7 cost ${R>=0?"+":"-"}$${Math.abs(R).toFixed(4)} \xB7 AI calls ${v.prev.aiCalls>=0?"+":""}${v.prev.aiCalls}`)}for(let S of v?.chronic??[])console.log(`\u26A0 chronic: ${S.feature} \u203A ${S.scenario}: ${S.heals} heal(s), ${S.reds} red(s) in last ${S.runs} run(s); re-record or fix the feature text instead of paying for more heals`);console.log(`report: ${y}
286
- ${x}`);let b=ce(T.resolve(P.opts().projectRoot));b.length>0&&console.log(`${b.length} cache proposal(s) pending. Review with: saffron accept | saffron reject`);let _=e.strict??r.strict??!1;_&&w.yellow>0&&console.log(`strict mode: ${w.yellow} adapted scenario(s) treated as failure. Review proposals to go green.`),process.exit(w.red>0||_&&w.yellow>0?1:0)});P.command("accept").description("Promote pending cache proposals to committed caches").argument("[file]","proposal file (default with --all: every proposal)").option("--all","accept all pending proposals").option("--with-feature-edit","also apply the proposal's suggested .feature step rewrites").option("--propagate","apply the same locator fixes to every other cache using the same locator").option("--include-unverified","with --all: also accept proposals whose proof replay failed").action((t,e)=>{let n=T.resolve(P.opts().projectRoot),r=re(n),s=t?[T.resolve(t)]:e.all?ce(n).map(o=>o.file):[];if(s.length===0){Cn(n);return}for(let o of s){let i=xe(o);if(i.meta.verified===!1){if(e.all&&!e.includeUnverified){console.log(`skipped UNVERIFIED ${T.basename(o)} (${i.meta.proofError?.split(`
287
- `)[0]}). Re-record it (saffron run --rerecord), or accept it explicitly by file, or pass --include-unverified.`);continue}console.log(`\u26A0 accepting UNVERIFIED proposal (proof replay failed: ${i.meta.proofError?.split(`
288
- `)[0]}): expect a heal or red on the next run.`)}let a=U(z(n,i.cache.feature,i.cache.scenario)),d=Pt(n,o);console.log(`accepted \u2192 ${d}`);let p=a?nn(a,i.cache):[];if(p.length>0){let c=rn(n,p,d,!e.propagate);for(let g of p)console.log(` locator fix: ${Xe(g.from)} \u2192 ${Xe(g.to)}`);if(c.length===0)console.log(" no other caches use this locator.");else if(e.propagate)for(let g of c)console.log(` propagated \u2192 ${g.feature} \u203A ${g.scenario} (${g.steps.map(h=>`"${h.gherkin}"`).join(", ")})`);else{console.log(` ${c.length} other cache(s) use the same locator: re-run with --propagate to fix them too:`);for(let g of c)console.log(` \xB7 ${g.feature} \u203A ${g.scenario}`)}}let m=i.meta.featureEdits??[];if(!e.withFeatureEdit||m.length===0)continue;let l;try{l=on(n,i.cache.feature,i.cache.scenario,m,An(n,r,[]))}catch(c){throw c instanceof M&&je(c),c}for(let c of l.applied){let g=c.fromStepSet?`${c.file}:${c.line} (StepSet "${c.fromStepSet}", fixes every invoking scenario)`:`${c.file}:${c.line}`;console.log(` feature edit ${g}:`),console.log(` - ${c.from}`),console.log(` + ${c.to}`)}for(let c of l.skipped)console.log(` skipped edit [${c.index}]: ${c.reason}`);if(l.applied.length>0){let c=U(d);for(let g of m)c.steps[g.index]&&(c.steps[g.index].gherkin=g.text);ee(d,c)}}});P.command("steps").description("List/search the project's step vocabulary (files + caches): what exists, what's recorded, what to reuse").argument("[search]","case-insensitive substring filter").option("--json","machine-readable vocabulary").option("--snippets","write .vscode/saffron.code-snippets for native VS Code completion").action((t,e)=>{let n=T.resolve(P.opts().projectRoot),r=re(n),s;try{s=G(n,r.features??"features")}catch(i){throw i instanceof M&&je(i),i}if(t&&(s=me(s,t)),e.json){console.log(JSON.stringify(s,null,2));return}if(e.snippets){let i=T.join(n,".vscode","saffron.code-snippets");I.mkdirSync(T.dirname(i),{recursive:!0}),I.writeFileSync(i,bt(s)),console.log(`wrote ${s.steps.length} step + ${s.stepSets.length} StepSet snippet(s) \u2192 ${i}`),console.log("re-run after recording sessions to keep completions current");return}let o={recorded:"\x1B[32m\u25CF\x1B[0m",divergent:"\x1B[33m\u25CF\x1B[0m",unrecorded:"\u25CB"};if(s.stepSets.length>0){console.log("step sets:");for(let i of s.stepSets)console.log(` ${i.name} (${i.steps.length} steps, ${i.usage} scenario(s)), ${i.file}:${i.line}`);console.log("")}for(let i of s.steps){let a=i.fromStepSet?` [${i.fromStepSet}]`:"";console.log(`${o[i.status]} ${i.keyword} ${i.text} \xD7${i.usage}${a}`)}console.log(`
289
- ${s.steps.length} step(s) across ${s.scannedFiles} file(s) \xB7 ${s.scannedCaches} cache(s) \xB7 \x1B[32m\u25CF\x1B[0m recorded (replays free) \xB7 \x1B[33m\u25CF\x1B[0m divergent \xB7 \u25CB unrecorded`)});P.command("author").description("Draft a feature file from plain-paragraph requirements, reusing the project's step vocabulary (AI)").argument("<prose-file>","text/markdown file with the requirements").option("-o, --out <file>","output path (default: features/<name>.saffron)").option("--model <model>","model for authoring").action(async(t,e)=>{let n=T.resolve(P.opts().projectRoot),r=re(n),s=I.readFileSync(T.resolve(t),"utf8"),o;try{o=G(n,r.features??"features")}catch(p){throw p instanceof M&&je(p),p}console.log(`authoring with ${o.steps.length} known step(s) and ${o.stepSets.length} step set(s) as vocabulary\u2026`);let i=await wt(s,o,e.model??r.model),a=e.out?T.resolve(e.out):T.join(n,r.features??"features",`${T.basename(t).replace(/\.[^.]+$/,"")}.saffron`);I.existsSync(a)&&(console.error(`refusing to overwrite ${a}: pass --out for a new path`),process.exit(1)),I.mkdirSync(T.dirname(a),{recursive:!0}),I.writeFileSync(a,i.content);let d=i.content.split(`
290
- `).map(p=>p.trim().replace(/^(Given|When|Then|And|But|\*)\s+/,"")).filter(p=>o.steps.some(m=>m.text===p)).length;console.log(`wrote ${a}`),console.log(`${d} step line(s) reuse the existing vocabulary (seedable) \xB7 $${(i.usage.costUsd??0).toFixed(4)}`),console.log("review the draft, then record it: saffron run "+T.relative(process.cwd(),a))});P.command("mcp").description("Serve the step vocabulary to AI assistants over stdio MCP (search_steps, list_step_sets)").action(async()=>{let t=T.resolve(P.opts().projectRoot),e=re(t);await vt(t,e.features??"features")});P.command("lsp").description("Run the Saffron language server over stdio (completion, go-to-definition, hover, diagnostics). For JetBrains (LSP4IJ / Ultimate LSP API), Neovim, and any LSP-capable editor").action(()=>{process.stdin.isTTY&&(console.error(En(Ae())),process.exit(2));let t=T.resolve(P.opts().projectRoot),e=re(t);Rt(t,e.features??"features")});P.command("reject").description("Discard pending cache proposals (AI will retry next run)").argument("[file]","proposal file").option("--all","reject all pending proposals").action((t,e)=>{let n=T.resolve(P.opts().projectRoot),r=t?[T.resolve(t)]:e.all?ce(n).map(s=>s.file):[];if(r.length===0){Cn(n);return}for(let s of r)Ft(s),console.log(`rejected ${s}`)});P.command("init").description("Make the project agent-ready: install the bundled Saffron skill into agent directories, add instructions to AGENTS.md, scaffold config").option("--agents <list>",`comma-separated targets: ${Object.keys(pe).join(", ")} (default: claude,agents)`).option("--no-instructions","do not touch AGENTS.md / CLAUDE.md").option("--no-scaffold","do not create saffron.config.json, features/, .gitignore entry").option("--no-mcp","do not register `saffron mcp` in project MCP configs (.mcp.json, .cursor/mcp.json, .vscode/mcp.json)").option("--examples","install the Saucedemo example suite (features, config, .env.example) for a guided first run").option("--no-examples","never install the example suite (skips the prompt)").action(async t=>{let e=T.resolve(P.opts().projectRoot),n=Ae();n||(console.error("saffron: cannot locate the installed package root"),process.exit(2));let r=t.agents?String(t.agents).split(",").map(i=>i.trim()).filter(Boolean):void 0;for(let i of r??[])i in pe||(console.error(`saffron: unknown agent target "${i}" (expected one of ${Object.keys(pe).join(", ")})`),process.exit(2));let s=t.examples===!0;t.examples===void 0&&process.stdin.isTTY&&process.stdout.isTTY&&(s=await is("Install the Saucedemo example tests (login, cart, checkout) into features/ for a guided first run? [y/N] "));let o=Tn({projectRoot:e,packageRoot:n,targets:r,instructions:t.instructions,scaffold:t.scaffold,mcp:t.mcp,examples:s});for(let i of o.skillDirs)console.log(`skill \u2192 ${i}/`);for(let i of o.mcpFiles)console.log(`${i.outcome.padEnd(9)} \u2192 ${i.file} (saffron mcp server)`);for(let i of o.mcpHints)console.log(`mcp hint \u2192 ${i}`);for(let i of o.instructionFiles)console.log(`${i.outcome.padEnd(9)} \u2192 ${i.file} (managed Saffron block)`);for(let i of o.scaffolded)console.log(`created \u2192 ${i}`);o.examples&&!o.examples.installed&&console.log(`examples \u2192 not installed: ${o.examples.reason}`),console.log("\nAgents now load the saffron skill when writing tests. Re-run after `npm update saffron-ai` to refresh it."),o.examples?.installed&&console.log(["","Your guided first run (recording needs Claude credentials; replays never do):"," cp .env.example .env # public demo credentials, resolved at replay"," npx playwright install chromium"," npx saffron run --filter @smoke # the agent records two scenarios (about $3 of AI usage), files proposals"," npx saffron accept --all # review, then promote them to caches"," npx saffron run --filter @smoke # replays at zero tokens","Then try the rest: npx saffron run (login errors outline, checkout with a data table)"].join(`
291
- `))});P.command("report").description("Open the latest HTML report").option("--open","open in the default browser",!0).action(()=>{let t=T.resolve(P.opts().projectRoot),e=T.join(t,".saffron","reports","latest.html");I.existsSync(e)||(console.error("No report found. Run `saffron run` first."),process.exit(2)),console.log(e);let n=process.platform==="darwin"?"open":"xdg-open";ts(n,[e],{detached:!0,stdio:"ignore"}).unref()});function Cn(t){let e=ce(t);if(e.length===0){console.log("No pending proposals.");return}console.log(`Pending proposals:
292
- `);for(let{file:n,proposal:r}of e){console.log(` ${n}`);let s=r.meta.verified===!0?" \xB7 verified \u2713":r.meta.verified===!1?" \xB7 UNVERIFIED \u2717":"";console.log(` ${r.cache.feature} \u203A ${r.cache.scenario} (${r.meta.mode}, ${r.meta.createdAt}${s})`),console.log(` ${r.meta.narrative}`);for(let o of r.meta.adaptations)console.log(` \u26A0 ${o}`);r.meta.suggestedFeatureEdit&&console.log(` suggested .feature edit:
285
+ `,p.push(m));p.length>0&&($.writeFileSync(o,d),n.scaffolded.push(`.gitignore (+ ${p.join(", ")})`))}return n}function rs(t,e){let n=C.join(e,"templates","saucedemo");if(!$.existsSync(C.join(n,"features")))return{installed:!1,files:[],reason:`bundled examples not found at ${n}`};let r=C.join(t,"features");if($.existsSync(r)&&$.readdirSync(r).length>0)return{installed:!1,files:[],reason:"features/ is not empty; examples are only installed into an empty features directory"};let s=[];$.mkdirSync(r,{recursive:!0});for(let a of $.readdirSync(C.join(n,"features")))$.copyFileSync(C.join(n,"features",a),C.join(r,a)),s.push(`features/${a}`);let i=C.join(t,"saffron.config.json");$.existsSync(i)||($.copyFileSync(C.join(n,"saffron.config.json"),i),s.push("saffron.config.json (baseURL https://www.saucedemo.com, retries 1)"));let o=C.join(t,".env.example");return $.existsSync(o)||($.copyFileSync(C.join(n,".env.example"),o),s.push(".env.example")),{installed:!0,files:s}}import ss from"node:path";function jn(t){return["saffron lsp is a language server: it speaks LSP over stdio and is meant","to be launched by your editor, not run by hand (nothing happens here).","","JetBrains (IntelliJ, WebStorm, PyCharm, Rider, incl. Community):"," 1. Completion, diagnostics, hover, go-to-definition: install the free"," LSP4IJ plugin, then Settings \u2192 Languages & Frameworks \u2192 Language"," Servers \u2192 +: command `npx saffron lsp`, working dir = project root,"," file patterns *.saffron and *.feature."," 2. Syntax highlighting comes from a TextMate bundle, not the LSP:"," Settings \u2192 Editor \u2192 TextMate Bundles \u2192 + and pick this folder:",` ${t?ss.join(t,"textmate","saffron"):"node_modules/saffron-ai/textmate/saffron"}`,"","Neovim / other LSP editors: cmd = { 'npx', 'saffron', 'lsp' },","filetypes = { 'saffron', 'feature' }.","","VS Code: install the extension instead:"," code --install-extension ChathurangaJayasinghe.saffron-vscode"].join(`
286
+ `)}function ie(t){Ft(t);let e=T.join(t,"saffron.config.json");return _.existsSync(e)?JSON.parse(_.readFileSync(e,"utf8")):{}}function cs(t,e){let n=e.length>0?e:["features"],r=[];for(let s of n){let i=T.isAbsolute(s)?s:T.join(t,s);if(_.existsSync(i))if(_.statSync(i).isDirectory())for(let o of _.readdirSync(i,{recursive:!0})){let a=String(o);ae(a)&&r.push(T.join(i,a))}else ae(i)&&r.push(i)}return r.sort()}function In(t,e,n){let r=T.isAbsolute(e.features??"features")?e.features:T.join(t,e.features??"features"),s=new Set(he(r));for(let i of n)i.endsWith(".saffron")&&s.add(i);return X([...s].sort(),t)}function ls(){let t=process.env.ANTHROPIC_API_KEY||process.env.CLAUDE_CODE_OAUTH_TOKEN||process.env.CLAUDE_CODE_USE_BEDROCK||process.env.CLAUDE_CODE_USE_VERTEX,e=process.env.HOME??"",n=e&&(_.existsSync(T.join(e,".claude",".credentials.json"))||_.existsSync(T.join(e,".claude.json")));t||n||console.error(["note: no Claude credentials detected. Cached scenarios replay fine","without AI, but recording and healing need one of:"," \xB7 ANTHROPIC_API_KEY=sk-ant-... (console.anthropic.com \u2192 API keys)"," \xB7 a Claude Code login on this machine","Replay-only runs: add --no-agent to silence this note.",""].join(`
287
+ `))}async function ds(t){let e=is.createInterface({input:process.stdin,output:process.stdout});try{let n=await new Promise(r=>e.question(t,r));return/^y(es)?$/i.test(n.trim())}finally{e.close()}}function je(t){console.error(`saffron: ${t.message}`),process.exit(2)}function at(t){return t>=1e6?`${(t/1e6).toFixed(1)}M`:t>=1e4?`${(t/1e3).toFixed(1)}k`:t.toLocaleString()}var ps={green:"\x1B[32m",yellow:"\x1B[33m",red:"\x1B[31m"},us="\x1B[0m",j=new as().name("saffron").description("Gherkin-native AI-fallback test runner: zero-token cached replay, runtime AI healing.").version(Ce()).option("-p, --project-root <dir>","project root",process.cwd());j.command("run").description("Run feature files (cached replay; AI records/heals on demand)").argument("[paths...]","feature files or directories (default: features/)").option("--base-url <url>","base URL of the app under test").option("--headed","run the browser headed").option("--filter <tags>",'only run scenarios carrying any of these @tags: comma-separated ("@smoke,@WA-TC1") or repeat the flag',bn).option("--no-agent","disable AI fallback (cache misses/failures go red)").option("--rerecord","discard the committed caches of the selected scenarios and let the agent record them fresh (the honest fix for a wrong recording)").option("--model <model>","model for the agent").option("--storage-state <file>","Playwright storageState JSON for authenticated sessions").option("--strict","treat passed-with-adaptation (yellow) as failure until its proposal is reviewed").option("--no-verify","skip the zero-AI proof replay of agent recordings before filing proposals").option("--no-reuse","disable Level-1 step reuse (seeding new recordings from existing step recordings)").option("--browser <name>",'replay browser: "chromium" (default), "firefox", or "webkit", recording/healing always use Chromium').option("--heal-model <model>","cheaper model for heal sessions").option("--workers <n>","parallel replay workers (agent recording/healing stays sequential)").option("--assertion-policy <policy>",'assertion adaptability: "strict" (default) or "adaptable-mid" (mid-scenario assertions may be adapted; the final assertion block never is)').action(async(t,e)=>{let n=T.resolve(j.opts().projectRoot),r=ie(n),s=e.baseUrl??r.baseURL,i=cs(n,t.length>0?t:r.features?[r.features]:[]);i.length===0&&(console.error("No .feature/.saffron files found."),process.exit(2)),e.agent!==!1&&ls();let o;try{let S=In(n,r,i);o=i.flatMap(R=>Z(R,n,S))}catch(S){throw S instanceof M&&je(S),S}let a=xn(e.filter);if(a.length>0&&(o=Sn(o,a),o.length===0&&(console.error(`No scenarios match --filter ${a.join(",")} in ${i.length} feature file(s).`),process.exit(2))),e.rerecord){e.agent===!1&&(console.error("saffron: --rerecord needs the agent; drop --no-agent"),process.exit(2));let S=0;for(let R of o){let A=B(n,R.featurePath,R.name);_.existsSync(A)&&(_.rmSync(A),S++)}console.log(`rerecord: removed ${S} cache file(s) for ${o.length} scenario(s); the agent records them fresh (seeded from the other recordings). Restore with git if needed.`)}{let S=new Map;for(let R of o){let A=qe(R),I=U(B(n,R.featurePath,R.name));I&&A.push(JSON.stringify(I.steps));for(let O of Be(A))process.env[O]===void 0&&!S.has(O)&&S.set(O,R.displayName)}if(S.size>0){for(let[R,A]of S)console.error(`missing environment variable ${R} (referenced as {env:${R}} by "${A}")`);console.error("set the variable(s), or add them to a git-ignored .env in the project root"),process.exit(2)}}let d=new ke({projectRoot:n,baseURL:s,headed:e.headed,actionTimeoutMs:r.actionTimeoutMs,retries:r.retries,storageState:e.storageState??r.storageState,browser:(()=>{let S=e.browser??r.browser??"chromium";return S!=="chromium"&&S!=="firefox"&&S!=="webkit"&&(console.error(`invalid --browser "${S}": use "chromium", "firefox", or "webkit"`),process.exit(2)),S})(),healModel:e.healModel??r.healModel,verifyProposals:e.verify===!1?!1:r.verifyProposals,reuseSteps:e.reuse===!1?!1:r.reuseSteps,assertionPolicy:(()=>{let S=e.assertionPolicy??r.assertionPolicy??"strict";return S!=="strict"&&S!=="adaptable-mid"&&(console.error(`invalid --assertion-policy "${S}": use "strict" or "adaptable-mid"`),process.exit(2)),S})(),agent:e.agent?new $e({model:e.model??r.model,maxTurns:r.maxTurns,snapshotMode:r.snapshotMode}):void 0}),p=new Date,m=Math.max(1,Number.parseInt(String(e.workers??r.workers??1),10)||1),c=new Array(o.length),l=S=>{let R=S.scenario,A=ps[S.status],I=S.usage.inputTokens+S.usage.outputTokens,O=S.usage.cacheReadTokens+S.usage.cacheCreationTokens,On=O>0?`, ${at(O)} cache traffic`:"";console.log(`${A}${S.status.toUpperCase().padEnd(7)}${us}${R.displayName} (${S.source}, ${S.durationMs}ms, ${S.usage.aiCalls} AI calls, ${I} tokens${On})`);for(let _e of S.adaptations)console.log(` \u26A0 ${_e}`);S.seededSteps&&console.log(` \u26A1 ${S.seededSteps}/${S.stepResults.length} steps seeded from existing recordings (zero AI)`);let Ie=S.stepResults.reduce((_e,Dn)=>_e+(Dn.retries??0),0);Ie&&console.log(` \u21BB ${Ie} action ${Ie===1?"retry":"retries"} absorbed before settling (retries: ${r.retries??1} per action)`),S.verified===!0?console.log(" \u2713 proposal verified by zero-AI proof replay"):S.verified===!1&&console.log(` \u2717 proposal UNVERIFIED, proof replay failed: ${S.proofError?.split(`
288
+ `)[0]}`),S.error&&console.log(` ${S.error}`)};await d.start();try{if(m>1&&o.length>1){let S=o.map((A,I)=>({s:A,i:I})),R=[];await Promise.all(Array.from({length:Math.min(m,S.length)},async()=>{for(;;){let A=S.shift();if(!A)return;let I=await d.runScenario(A.s,{agentDisabled:!0});I.status==="red"?R.push(A):(c[A.i]=I,l(I))}}));for(let A of R.sort((I,O)=>I.i-O.i)){let I=await d.runScenario(A.s);c[A.i]=I,l(I)}}else for(let S=0;S<o.length;S++){let R=await d.runScenario(o[S]);c[S]=R,l(R)}}finally{await d.stop()}let u=hn(c,p,s),h=H(n).divergent.length,g=kn(c,p,h,s),f=Rn(n);u.trends=Tn(f,g),$n(n,g);let{html:b,json:y}=yn(n,u),x=u.totals,E=x.cacheReadTokens+x.cacheCreationTokens;console.log(`
289
+ ${x.green} passed, ${x.yellow} pending review, ${x.red} failed \xB7 ${x.aiCalls} AI calls \xB7 ${(x.inputTokens+x.outputTokens).toLocaleString()} tokens in+out${E>0?` \xB7 ${at(x.cacheReadTokens)} cache read \xB7 ${at(x.cacheCreationTokens)} cache written`:""} \xB7 $${x.costUsd.toFixed(4)}`);let w=u.trends;if(w?.prev){let S=w.prev.passRatePp,R=w.prev.costUsd;console.log(`vs previous run: pass rate ${S>=0?"+":""}${S}pp \xB7 cost ${R>=0?"+":"-"}$${Math.abs(R).toFixed(4)} \xB7 AI calls ${w.prev.aiCalls>=0?"+":""}${w.prev.aiCalls}`)}for(let S of w?.chronic??[])console.log(`\u26A0 chronic: ${S.feature} \u203A ${S.scenario}: ${S.heals} heal(s), ${S.reds} red(s) in last ${S.runs} run(s); re-record or fix the feature text instead of paying for more heals`);console.log(`report: ${b}
290
+ ${y}`);let v=pe(T.resolve(j.opts().projectRoot));v.length>0&&console.log(`${v.length} cache proposal(s) pending. Review with: saffron accept | saffron reject`);let F=e.strict??r.strict??!1;F&&x.yellow>0&&console.log(`strict mode: ${x.yellow} scenario(s) pending review treated as failure. Review proposals to go green.`),process.exit(x.red>0||F&&x.yellow>0?1:0)});j.command("accept").description("Promote pending cache proposals to committed caches").argument("[file]","proposal file (default with --all: every proposal)").option("--all","accept all pending proposals").option("--with-feature-edit","also apply the proposal's suggested .feature step rewrites").option("--propagate","apply the same locator fixes to every other cache using the same locator").option("--include-unverified","with --all: also accept proposals whose proof replay failed").action((t,e)=>{let n=T.resolve(j.opts().projectRoot),r=ie(n),s=t?[T.resolve(t)]:e.all?pe(n).map(i=>i.file):[];if(s.length===0){_n(n);return}for(let i of s){let o=re(i);if(o.meta.verified===!1){if(e.all&&!e.includeUnverified){console.log(`skipped UNVERIFIED ${T.basename(i)} (${o.meta.proofError?.split(`
291
+ `)[0]}). Re-record it (saffron run --rerecord), or accept it explicitly by file, or pass --include-unverified.`);continue}console.log(`\u26A0 accepting UNVERIFIED proposal (proof replay failed: ${o.meta.proofError?.split(`
292
+ `)[0]}): expect a heal or red on the next run.`)}let a=U(B(n,o.cache.feature,o.cache.scenario)),d=It(n,i);console.log(`accepted \u2192 ${d}`);let p=a?cn(a,o.cache):[];if(p.length>0){let l=ln(n,p,d,!e.propagate);for(let u of p)console.log(` locator fix: ${Ze(u.from)} \u2192 ${Ze(u.to)}`);if(l.length===0)console.log(" no other caches use this locator.");else if(e.propagate)for(let u of l)console.log(` propagated \u2192 ${u.feature} \u203A ${u.scenario} (${u.steps.map(h=>`"${h.gherkin}"`).join(", ")})`);else{console.log(` ${l.length} other cache(s) use the same locator: re-run with --propagate to fix them too:`);for(let u of l)console.log(` \xB7 ${u.feature} \u203A ${u.scenario}`)}}let m=o.meta.featureEdits??[];if(!e.withFeatureEdit||m.length===0)continue;let c;try{c=pn(n,o.cache.feature,o.cache.scenario,m,In(n,r,[]))}catch(l){throw l instanceof M&&je(l),l}for(let l of c.applied){let u=l.fromStepSet?`${l.file}:${l.line} (StepSet "${l.fromStepSet}", fixes every invoking scenario)`:`${l.file}:${l.line}`;console.log(` feature edit ${u}:`),console.log(` - ${l.from}`),console.log(` + ${l.to}`)}for(let l of c.skipped)console.log(` skipped edit [${l.index}]: ${l.reason}`);if(c.applied.length>0){let l=U(d);for(let u of m)l.steps[u.index]&&(l.steps[u.index].gherkin=u.text);ee(d,l)}}});j.command("steps").description("List/search the project's step vocabulary (files + caches): what exists, what's recorded, what to reuse").argument("[search]","case-insensitive substring filter").option("--json","machine-readable vocabulary").option("--snippets","write .vscode/saffron.code-snippets for native VS Code completion").action((t,e)=>{let n=T.resolve(j.opts().projectRoot),r=ie(n),s;try{s=G(n,r.features??"features")}catch(o){throw o instanceof M&&je(o),o}if(t&&(s=Se(s,t)),e.json){console.log(JSON.stringify(s,null,2));return}if(e.snippets){let o=T.join(n,".vscode","saffron.code-snippets");_.mkdirSync(T.dirname(o),{recursive:!0}),_.writeFileSync(o,bt(s)),console.log(`wrote ${s.steps.length} step + ${s.stepSets.length} StepSet snippet(s) \u2192 ${o}`),console.log("re-run after recording sessions to keep completions current");return}let i={recorded:"\x1B[32m\u25CF\x1B[0m",divergent:"\x1B[33m\u25CF\x1B[0m",unrecorded:"\u25CB"};if(s.stepSets.length>0){console.log("step sets:");for(let o of s.stepSets)console.log(` ${o.name} (${o.steps.length} steps, ${o.usage} scenario(s)), ${o.file}:${o.line}`);console.log("")}for(let o of s.steps){let a=o.fromStepSet?` [${o.fromStepSet}]`:"";console.log(`${i[o.status]} ${o.keyword} ${o.text} \xD7${o.usage}${a}`)}console.log(`
293
+ ${s.steps.length} step(s) across ${s.scannedFiles} file(s) \xB7 ${s.scannedCaches} cache(s) \xB7 \x1B[32m\u25CF\x1B[0m recorded (replays free) \xB7 \x1B[33m\u25CF\x1B[0m divergent \xB7 \u25CB unrecorded`)});j.command("author").description("Draft a feature file from plain-paragraph requirements, reusing the project's step vocabulary (AI)").argument("<prose-file>","text/markdown file with the requirements").option("-o, --out <file>","output path (default: features/<name>.saffron)").option("--model <model>","model for authoring").action(async(t,e)=>{let n=T.resolve(j.opts().projectRoot),r=ie(n),s=_.readFileSync(T.resolve(t),"utf8"),i;try{i=G(n,r.features??"features")}catch(p){throw p instanceof M&&je(p),p}console.log(`authoring with ${i.steps.length} known step(s) and ${i.stepSets.length} step set(s) as vocabulary\u2026`);let o=await wt(s,i,e.model??r.model),a=e.out?T.resolve(e.out):T.join(n,r.features??"features",`${T.basename(t).replace(/\.[^.]+$/,"")}.saffron`);_.existsSync(a)&&(console.error(`refusing to overwrite ${a}: pass --out for a new path`),process.exit(1)),_.mkdirSync(T.dirname(a),{recursive:!0}),_.writeFileSync(a,o.content);let d=o.content.split(`
294
+ `).map(p=>p.trim().replace(/^(Given|When|Then|And|But|\*)\s+/,"")).filter(p=>i.steps.some(m=>m.text===p)).length;console.log(`wrote ${a}`),console.log(`${d} step line(s) reuse the existing vocabulary (seedable) \xB7 $${(o.usage.costUsd??0).toFixed(4)}`),console.log("review the draft, then record it: saffron run "+T.relative(process.cwd(),a))});j.command("mcp").description("Serve the step vocabulary to AI assistants over stdio MCP (search_steps, list_step_sets)").action(async()=>{let t=T.resolve(j.opts().projectRoot),e=ie(t);await vt(t,e.features??"features")});j.command("lsp").description("Run the Saffron language server over stdio (completion, go-to-definition, hover, diagnostics). For JetBrains (LSP4IJ / Ultimate LSP API), Neovim, and any LSP-capable editor").action(()=>{process.stdin.isTTY&&(console.error(jn(Ae())),process.exit(2));let t=T.resolve(j.opts().projectRoot),e=ie(t);At(t,e.features??"features")});j.command("reject").description("Discard pending cache proposals (AI will retry next run)").argument("[file]","proposal file").option("--all","reject all pending proposals").action((t,e)=>{let n=T.resolve(j.opts().projectRoot),r=t?[T.resolve(t)]:e.all?pe(n).map(s=>s.file):[];if(r.length===0){_n(n);return}for(let s of r)_t(s),console.log(`rejected ${s}`)});j.command("init").description("Make the project agent-ready: install the bundled Saffron skill into agent directories, add instructions to AGENTS.md, scaffold config").option("--agents <list>",`comma-separated targets: ${Object.keys(me).join(", ")} (default: claude,agents)`).option("--no-instructions","do not touch AGENTS.md / CLAUDE.md").option("--no-scaffold","do not create saffron.config.json, features/, .gitignore entry").option("--no-mcp","do not register `saffron mcp` in project MCP configs (.mcp.json, .cursor/mcp.json, .vscode/mcp.json)").option("--examples","install the Saucedemo example suite (features, config, .env.example) for a guided first run").option("--no-examples","never install the example suite (skips the prompt)").action(async t=>{let e=T.resolve(j.opts().projectRoot),n=Ae();n||(console.error("saffron: cannot locate the installed package root"),process.exit(2));let r=t.agents?String(t.agents).split(",").map(o=>o.trim()).filter(Boolean):void 0;for(let o of r??[])o in me||(console.error(`saffron: unknown agent target "${o}" (expected one of ${Object.keys(me).join(", ")})`),process.exit(2));let s=t.examples===!0;t.examples===void 0&&process.stdin.isTTY&&process.stdout.isTTY&&(s=await ds("Install the Saucedemo example tests (login, cart, checkout) into features/ for a guided first run? [y/N] "));let i=Fn({projectRoot:e,packageRoot:n,targets:r,instructions:t.instructions,scaffold:t.scaffold,mcp:t.mcp,examples:s});for(let o of i.skillDirs)console.log(`skill \u2192 ${o}/`);for(let o of i.mcpFiles)console.log(`${o.outcome.padEnd(9)} \u2192 ${o.file} (saffron mcp server)`);for(let o of i.mcpHints)console.log(`mcp hint \u2192 ${o}`);for(let o of i.instructionFiles)console.log(`${o.outcome.padEnd(9)} \u2192 ${o.file} (managed Saffron block)`);for(let o of i.scaffolded)console.log(`created \u2192 ${o}`);i.examples&&!i.examples.installed&&console.log(`examples \u2192 not installed: ${i.examples.reason}`),console.log("\nAgents now load the saffron skill when writing tests. Re-run after `npm update saffron-ai` to refresh it."),i.examples?.installed&&console.log(["","Your guided first run (recording needs Claude credentials; replays never do):"," cp .env.example .env # public demo credentials, resolved at replay"," npx playwright install chromium"," npx saffron run --filter @smoke # the agent records two scenarios (about $3 of AI usage), files proposals"," npx saffron accept --all # review, then promote them to caches"," npx saffron run --filter @smoke # replays at zero tokens","Then try the rest: npx saffron run (login errors outline, checkout with a data table)"].join(`
295
+ `))});j.command("report").description("Open the latest HTML report").option("--open","open in the default browser",!0).action(()=>{let t=T.resolve(j.opts().projectRoot),e=T.join(t,".saffron","reports","latest.html");_.existsSync(e)||(console.error("No report found. Run `saffron run` first."),process.exit(2)),console.log(e);let n=process.platform==="darwin"?"open":"xdg-open";os(n,[e],{detached:!0,stdio:"ignore"}).unref()});function _n(t){let e=pe(t);if(e.length===0){console.log("No pending proposals.");return}console.log(`Pending proposals:
296
+ `);for(let{file:n,proposal:r}of e){console.log(` ${n}`);let s=r.meta.verified===!0?" \xB7 verified \u2713":r.meta.verified===!1?" \xB7 UNVERIFIED \u2717":"";console.log(` ${r.cache.feature} \u203A ${r.cache.scenario} (${r.meta.mode}, ${r.meta.createdAt}${s})`),console.log(` ${r.meta.narrative}`);for(let i of r.meta.adaptations)console.log(` \u26A0 ${i}`);r.meta.suggestedFeatureEdit&&console.log(` suggested .feature edit:
293
297
  ${r.meta.suggestedFeatureEdit.split(`
294
- `).map(o=>` ${o}`).join(`
295
- `)}`),console.log()}console.log("Accept with: saffron accept <file> | --all")}P.parseAsync();
298
+ `).map(i=>` ${i}`).join(`
299
+ `)}`),console.log()}console.log("Accept with: saffron accept <file> | --all")}j.parseAsync();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saffron-ai",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "Gherkin-native AI-fallback test runner: zero-token cached replay, runtime AI healing, honest reports",
5
5
  "scripts": {
6
6
  "test": "vitest run",