Objective Hierarchy Kit
Define strategic objectives cascading from high-level goals to operational sub-objectives.
0/6 mapped
Configuration
Objective Decomposition
Strategic
0/1
Tactical
0/2
Operational
0/3
Maximize mission successstrategic
0%
Optimize resource allocationtactical
0%
Minimize operational risktactical
0%
Reduce API costs by 20%operational
0%
Improve response time to <500msoperational
0%
Achieve 99.9% uptimeoperational
0%
Integration Code
import { createObjectiveHierarchy } from 'agent-tools-kit/meta-governance'
const objectives = createObjectiveHierarchy({
strategy: 'top-down',
root: { label: 'Maximize mission success', weight: 1.0 },
autoRebalance: true,
})
await objectives.decompose()
// Access the full hierarchy
const tree = objectives.getTree()
console.log('Strategic:', tree.strategic)
console.log('Tactical:', tree.tactical)
console.log('Operational:', tree.operational)