Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tangle-network/agent-runtime",
"version": "0.96.0",
"version": "0.96.1",
"description": "Shared task-lifecycle skeleton for agents: a recursive loop kernel for chat turns, one-shot tasks, and multi-attempt loops, with trace capture and eval-gated self-improvement. Domain behavior lives in adapters; scoring and ship-gates in @tangle-network/agent-eval.",
"homepage": "https://github.com/tangle-network/agent-runtime#readme",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions tests/improvement-cycle.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ describe('agent improvement lifecycle', () => {
expect(activationResult.outcome.status).toBe('applied')
expect(profile.prompt?.systemPrompt).not.toBe('PROMOTED')
await result.improvement.dispose()
})
}, 15_000)

it('rejects an experiment that substitutes a different candidate', async () => {
const seed = createCandidateExperimentFixture()
Expand Down Expand Up @@ -502,7 +502,7 @@ describe('agent improvement lifecycle', () => {
expect(() =>
verifyAgentImprovementActivation({ proposal, review, activation: impossibleExpiry }),
).toThrow(/expiry must follow/)
})
}, 15_000)

it('keeps protected trace identities coherent after redaction', async () => {
const rig = createCandidateExperimentFixture({
Expand Down
Loading