Releases: synerops/osprotocol
Releases · synerops/osprotocol
@osprotocol/schema@0.2.4
Patch Changes
-
ac813b0: Simplify Run lifecycle: remove
Runinterface, align with ACPBreaking Change:
Workflow.run()now returnsPromise<Execution<Output>>directly instead ofPromise<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
Runinterface from public exports Workflow.run()returnsExecutiondirectly- Aligns with ACP Run Lifecycle
Closes #60
- Remove
@osprotocol/schema@0.2.3
Patch Changes
-
76f5994: feat(checks): align AuditEntry with ISO 27001 / ISACA standards
- Add
AuditOpiniontype for ISACA expression of opinion - Add
AuditFindingsfor ISO 27001 severity counts - Add
AuditQueryfor filtering entries - Update
Auditinterface with parse/write/query operations
- Add
@osprotocol/schema@0.2.2
Patch Changes
- 6e9d2dc: Fix release workflow to skip unnecessary build steps
v0.0.2
Full Changelog: v0.0.1...v0.0.2
v0.0.1
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