keystone-cli 2.1.3 → 2.1.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keystone-cli",
3
- "version": "2.1.3",
3
+ "version": "2.1.4",
4
4
  "description": "A local-first, declarative, agentic workflow orchestrator built on Bun",
5
5
  "type": "module",
6
6
  "bin": {
@@ -97,11 +97,11 @@ Prompt`;
97
97
  });
98
98
 
99
99
  it('should parse the real keystone-architect.md template', () => {
100
- const filePath = join(process.cwd(), 'src/templates/agents/keystone-architect.md');
101
- const agent = parseAgent(filePath);
102
- expect(agent.name).toBe('keystone-architect');
103
- // Ensure the problematic expression is escaped/spaced
104
- expect(agent.systemPrompt).toContain('${ { args.paramName } }');
100
+ const filePath = join(process.cwd(), 'src/templates/agents/keystone-architect.md');
101
+ const agent = parseAgent(filePath);
102
+ expect(agent.name).toBe('keystone-architect');
103
+ // Ensure the problematic expression is escaped/spaced
104
+ expect(agent.systemPrompt).toContain('${ { args.paramName } }');
105
105
  });
106
106
  });
107
107
 
@@ -28,7 +28,6 @@ steps:
28
28
  tester: "tester"
29
29
  summarizer: "summarizer"
30
30
  maxSteps: 15
31
- concurrency: "${{ inputs.concurrency }}"
32
31
  confirmPlan: true
33
32
  maxReplans: 3
34
33
  allowStepFailure: false