@tingrudeng/automation-gateway-core
v0.1.0-beta.2
Published
Shared final-report parsing and task-id validation helpers for ForgeFlow automation gateway runtimes.
Downloads
52
Maintainers
Readme
@tingrudeng/automation-gateway-core
Shared protocol helpers for ForgeFlow automation gateway runtimes.
Current scope:
- parse final report fields emitted by Trae automation tasks
- detect placeholder/template reports before they are accepted as real output
- validate whether a reported task id still matches the dispatcher task being processed
This package is intentionally small:
- pure parsing and validation helpers only
- no network client, DOM driver, or worker lifecycle logic
- suitable for reuse by both the packaged Trae runtime and any future gateway-side validation paths
Exports
import {
getLastReportFieldValue,
isEquivalentReportedTaskId,
isPlaceholderTaskId,
looksLikeTemplatePlaceholderReport,
} from "@tingrudeng/automation-gateway-core";Repository-local usage
pnpm --filter @tingrudeng/automation-gateway-core test
pnpm --filter @tingrudeng/automation-gateway-core typecheck
pnpm --filter @tingrudeng/automation-gateway-core buildNotes
- This is a library package, not a direct machine entrypoint.
- The current primary consumer is
@tingrudeng/trae-beta-runtime. - Release steps are documented in
PUBLISHING.md.
