Skip to content

Releases: synerops/osprotocol

@osprotocol/schema@0.2.4

21 Feb 20:33
98f641b

Choose a tag to compare

Patch Changes

  • ac813b0: Simplify Run lifecycle: remove Run interface, align with ACP

    Breaking Change: Workflow.run() now returns Promise<Execution<Output>> directly instead of Promise<Run<Output>>.

    Before:

    const run = await workflow.run(prompt);
    const exec = await run.start();
    const result = await exec.result;

    After:

    const exec = await workflow.run(prompt);
    const result = await exec.result;

    Changes:

    • Remove Run interface from public exports
    • Workflow.run() returns Execution directly
    • Aligns with ACP Run Lifecycle

    Closes #60

@osprotocol/schema@0.2.3

21 Feb 07:19
bc251c9

Choose a tag to compare

Patch Changes

  • 76f5994: feat(checks): align AuditEntry with ISO 27001 / ISACA standards

    • Add AuditOpinion type for ISACA expression of opinion
    • Add AuditFindings for ISO 27001 severity counts
    • Add AuditQuery for filtering entries
    • Update Audit interface with parse/write/query operations

@osprotocol/schema@0.2.2

18 Feb 21:18
62da9ed

Choose a tag to compare

Patch Changes

  • 6e9d2dc: Fix release workflow to skip unnecessary build steps

v0.0.2

29 Oct 00:37
ecc0028

Choose a tag to compare

Full Changelog: v0.0.1...v0.0.2

v0.0.1

19 Oct 17:58
b49f2c4

Choose a tag to compare

What's Changed

  • Delete system/collaboration.ts by @rbadillap in #1
  • Swap mcp-client and mcp-server locations, rename mcp-server to mcp-servers by @Copilot in #2
  • Move reasoning.ts from checks to context folder by @Copilot in #4
  • Add workflows namespace with required files by @Copilot in #6
  • Move reasoning.ts and waiting-for-approval.ts to runtime folder by @Copilot in #9
  • Rename runtime and context files for better semantic clarity by @Copilot in #11
  • Rename runtime folder to loop and remove reasoning.ts by @Copilot in #13
  • Create fallback.ts in checks folder by @Copilot in #15
  • Rename loop folder to runs by @Copilot in #17
  • Rename context/dataset.ts to context/documents.ts by @Copilot in #19
  • [WIP] Delete subfolders in agents directory and rename to skills by @Copilot in #21

New Contributors

  • @rbadillap made their first contribution in #1
  • @Copilot made their first contribution in #2

Full Changelog: https://github.com/synerops/protocol/commits/v0.0.1