Hub Protocol V1.0 - Standardized schemas for Hub ↔ Data Pod communication
npm install @synap-core/hub-protocolHub Protocol V1.0 - Standardized schemas for communication between Synap Intelligence Hub and Synap Core OS (Data Pod).
``bash`
pnpm add @synap/hub-protocolor
npm install @synap/hub-protocol
`typescript
import { validateHubInsight, type HubInsight } from "@synap/hub-protocol";
const insight: HubInsight = {
version: "1.0",
type: "action_plan",
correlationId: "123e4567-e89b-12d3-a456-426614174000",
actions: [
{
eventType: "project.creation.requested",
data: { title: "My Project" },
requiresConfirmation: false,
},
],
confidence: 0.95,
reasoning: "Based on user preferences",
};
// Validate the insight
const validated = validateHubInsight(insight);
`
`typescript
import { isActionPlan, isAnalysis } from "@synap/hub-protocol";
if (isActionPlan(insight)) {
// TypeScript knows actions is defined
insight.actions.forEach((action) => {
console.log(action.eventType);
});
}
if (isAnalysis(insight)) {
// TypeScript knows analysis is defined
console.log(insight.analysis.title);
}
`
`typescript
import {
HubInsightSchema,
ActionSchema,
AnalysisSchema,
} from "@synap/hub-protocol";
// Use with Zod for custom validation
const result = HubInsightSchema.safeParse(data);
if (result.success) {
// Valid insight
}
`
The main schema for insights returned by the Intelligence Hub.
- version: '1.0' (literal)type
- : 'action_plan' | 'suggestion' | 'analysis' | 'automation'correlationId
- : UUID stringactions
- : Array of Action (optional, for action_plan/automation)analysis
- : Analysis object (optional, for analysis/suggestion)confidence
- : Number between 0.0 and 1.0reasoning
- : String (optional)metadata
- : Record
Represents an action to be transformed into a SynapEvent.
- eventType: String (must match EventTypes)subjectId
- : UUID string (optional)data
- : RecordrequiresConfirmation
- : Boolean (default: false)priority
- : Number 0-100 (optional)metadata
- : Record
Contains textual analysis to display to the user.
- title: Stringcontent
- : String (markdown supported)keyPoints
- : Array of strings (optional)recommendations
- : Array of strings (optional)sources
- : Array of Source objects (optional)tags`: Array of strings (optional)
-
See Hub Protocol V1.0 Specification for complete documentation.
MIT