@agentikos/omega-os 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +127 -0
- package/bin/omega-os.js +48 -0
- package/bootstrap/lib/common.sh +73 -0
- package/bootstrap/lib/steps.sh +153 -0
- package/bootstrap/manifest.example.yaml +45 -0
- package/docs/ACCOUNT-AND-BILLING.md +95 -0
- package/docs/ARCHITECTURE.md +225 -0
- package/docs/AUTONOMOUS-AGENTS.md +128 -0
- package/docs/ENGINE-SPEC.md +174 -0
- package/docs/INSTALL.md +106 -0
- package/docs/MCP-AND-PLUGINS.md +121 -0
- package/docs/RUNTIME-PLAN.md +63 -0
- package/install.sh +54 -0
- package/omega/Agentik_Coding/README.md +21 -0
- package/omega/Agentik_Engine/README.md +58 -0
- package/omega/Agentik_Engine/omega_engine/__init__.py +58 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/__init__.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/audit.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/audit_arsenal.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/barrier.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/bus.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/cli.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/events.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/executor.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/mission.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/progress.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/project.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/provider.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/reducer.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/report.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/router.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/store.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/supervisor.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/task.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/telegram.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/audit.py +96 -0
- package/omega/Agentik_Engine/omega_engine/audit_arsenal.py +314 -0
- package/omega/Agentik_Engine/omega_engine/barrier.py +45 -0
- package/omega/Agentik_Engine/omega_engine/bus.py +45 -0
- package/omega/Agentik_Engine/omega_engine/cli.py +158 -0
- package/omega/Agentik_Engine/omega_engine/events.py +60 -0
- package/omega/Agentik_Engine/omega_engine/executor.py +167 -0
- package/omega/Agentik_Engine/omega_engine/mission.py +145 -0
- package/omega/Agentik_Engine/omega_engine/progress.py +75 -0
- package/omega/Agentik_Engine/omega_engine/project.py +92 -0
- package/omega/Agentik_Engine/omega_engine/provider.py +139 -0
- package/omega/Agentik_Engine/omega_engine/reducer.py +76 -0
- package/omega/Agentik_Engine/omega_engine/report.py +146 -0
- package/omega/Agentik_Engine/omega_engine/router.py +34 -0
- package/omega/Agentik_Engine/omega_engine/store.py +97 -0
- package/omega/Agentik_Engine/omega_engine/supervisor.py +69 -0
- package/omega/Agentik_Engine/omega_engine/task.py +91 -0
- package/omega/Agentik_Engine/omega_engine/telegram.py +115 -0
- package/omega/Agentik_Engine/pyproject.toml +31 -0
- package/omega/Agentik_Engine/tests/__pycache__/test_audit_arsenal.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/tests/__pycache__/test_executor.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/tests/__pycache__/test_mission.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/tests/__pycache__/test_progress.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/tests/__pycache__/test_project.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/tests/__pycache__/test_reducer.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/tests/__pycache__/test_report.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/tests/test_audit_arsenal.py +80 -0
- package/omega/Agentik_Engine/tests/test_executor.py +96 -0
- package/omega/Agentik_Engine/tests/test_mission.py +64 -0
- package/omega/Agentik_Engine/tests/test_progress.py +69 -0
- package/omega/Agentik_Engine/tests/test_project.py +61 -0
- package/omega/Agentik_Engine/tests/test_reducer.py +144 -0
- package/omega/Agentik_Engine/tests/test_report.py +88 -0
- package/omega/Agentik_Extra/README.md +37 -0
- package/omega/Agentik_Extra/etc/agentik.env.example +19 -0
- package/omega/Agentik_Extra/etc/structure.yaml +46 -0
- package/omega/Agentik_Orchestration/README.md +43 -0
- package/omega/Agentik_Orchestration/autonomous/README.md +29 -0
- package/omega/Agentik_Orchestration/autonomous/example-agents.yaml +85 -0
- package/omega/Agentik_Orchestration/educators/README.md +55 -0
- package/omega/Agentik_Orchestration/topologies/aisb-oracle-worker.yaml +42 -0
- package/omega/Agentik_Orchestration/verifier/audit-router.yaml +26 -0
- package/omega/Agentik_Providers/README.md +62 -0
- package/omega/Agentik_Providers/claude/accounts.example.yaml +28 -0
- package/omega/Agentik_Providers/registry.yaml +30 -0
- package/omega/Agentik_Runtime/README.md +30 -0
- package/omega/Agentik_SSOT/README.md +36 -0
- package/omega/Agentik_SSOT/VERSION +1 -0
- package/omega/Agentik_SSOT/audits/a11yaudit.yaml +69 -0
- package/omega/Agentik_SSOT/audits/apiaudit.yaml +71 -0
- package/omega/Agentik_SSOT/audits/automationaudit.yaml +77 -0
- package/omega/Agentik_SSOT/audits/codeaudit.yaml +63 -0
- package/omega/Agentik_SSOT/audits/copyaudit.yaml +68 -0
- package/omega/Agentik_SSOT/audits/dataaudit.yaml +76 -0
- package/omega/Agentik_SSOT/audits/debugaudit.yaml +75 -0
- package/omega/Agentik_SSOT/audits/dxaudit.yaml +78 -0
- package/omega/Agentik_SSOT/audits/featureaudit.yaml +73 -0
- package/omega/Agentik_SSOT/audits/flowaudit.yaml +72 -0
- package/omega/Agentik_SSOT/audits/logicaudit.yaml +75 -0
- package/omega/Agentik_SSOT/audits/motionaudit.yaml +67 -0
- package/omega/Agentik_SSOT/audits/perfaudit.yaml +71 -0
- package/omega/Agentik_SSOT/audits/refontaudit.yaml +77 -0
- package/omega/Agentik_SSOT/audits/retentionaudit.yaml +84 -0
- package/omega/Agentik_SSOT/audits/secaudit.yaml +73 -0
- package/omega/Agentik_SSOT/audits/seoaudit.yaml +75 -0
- package/omega/Agentik_SSOT/audits/uiuxaudit.yaml +61 -0
- package/omega/Agentik_SSOT/mcp/mcp-catalog.yaml +136 -0
- package/omega/Agentik_SSOT/rules/constitution.md +44 -0
- package/omega/Agentik_SSOT/schemas/event.schema.json +45 -0
- package/omega/Agentik_SSOT/schemas/task.schema.json +54 -0
- package/omega/Agentik_Tools/README.md +42 -0
- package/omega/Agentik_Tools/registry.json +15 -0
- package/package.json +43 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# uiuxaudit — Quality Arsenal definition for OmegaOS.
|
|
2
|
+
# Compact + structured: the Gestalt-Popper shell lives in omega_engine.audit_arsenal;
|
|
3
|
+
# this file supplies only the domain — gather tools, phases, falsification rules.
|
|
4
|
+
|
|
5
|
+
id: uiuxaudit
|
|
6
|
+
domain: design
|
|
7
|
+
question: "Is the interface BEAUTIFUL — does every page speak one coherent visual language?"
|
|
8
|
+
weight: 1.0
|
|
9
|
+
threshold: 85
|
|
10
|
+
|
|
11
|
+
applies_to:
|
|
12
|
+
roles: [worker]
|
|
13
|
+
changed: ["*.tsx", "*.jsx", "*.css", "*.html", "*.vue"]
|
|
14
|
+
|
|
15
|
+
# GATHER — design has no reliable deterministic linter; the agentic pass does the work.
|
|
16
|
+
# (No gather tool catches a 1px hierarchy break or a rogue color used for the wrong intent.)
|
|
17
|
+
gather: []
|
|
18
|
+
|
|
19
|
+
# PHASES — the agentic falsification pass investigates each. Art-director scrutiny.
|
|
20
|
+
phases:
|
|
21
|
+
- id: hinge-component
|
|
22
|
+
checks: "Identify the single UI element whose quality defines the product's perceived quality (primary table, hero, or main creation form); if it looks generic, nothing else matters."
|
|
23
|
+
- id: color-system
|
|
24
|
+
checks: "Rogue colors used outside the design tokens, semantic misuse (destructive red on non-destructive actions), and text/background pairs failing WCAG AA contrast."
|
|
25
|
+
- id: typography-hierarchy
|
|
26
|
+
checks: "Rogue font sizes/weights outside the type scale, broken h1>h2>h3 visual descent, competing bold weights, body text inconsistent across pages."
|
|
27
|
+
- id: spacing-rhythm
|
|
28
|
+
checks: "Padding/margin/gap values off the base unit, inconsistent component internal padding, shadcn Card double-padding, broken page-level vertical rhythm."
|
|
29
|
+
- id: component-anatomy
|
|
30
|
+
checks: "Buttons/inputs/cards/modals/tables — every variant present, every state (hover/focus/active/disabled/loading) present, consistent across all instances."
|
|
31
|
+
- id: cross-page-coherence
|
|
32
|
+
checks: "Every page feels designed by the same hand on the same day — same layout width, same header height, same pattern for delete/loading/empty/success everywhere."
|
|
33
|
+
- id: visual-hierarchy
|
|
34
|
+
checks: "Exactly one dominant primary CTA per page, subordinate secondaries, no dead zone where the user does not know what to do, cognitive load under threshold."
|
|
35
|
+
- id: interaction-states
|
|
36
|
+
checks: "Every interactive element has hover/focus/active/disabled feedback; loading/error/empty states exist and use one consistent pattern app-wide."
|
|
37
|
+
- id: responsive-fidelity
|
|
38
|
+
checks: "At 375/768/1024/1280px — no horizontal overflow, body text >=16px on mobile, touch targets >=44px, layout adapts rather than merely shrinking."
|
|
39
|
+
- id: accessibility-as-design
|
|
40
|
+
checks: "Semantic HTML, logical Tab order, visible focus rings, labels associated to inputs, prefers-reduced-motion respected, focus management on modal open/close."
|
|
41
|
+
- id: design-smells
|
|
42
|
+
checks: "AI-generic tells — gradient abuse, rounded-3xl on everything, shadow soup, mixed icon libraries, default unmodified Tailwind tokens, competing primary buttons."
|
|
43
|
+
- id: dark-mode-integrity
|
|
44
|
+
checks: "Dark mode complete on every component/state, no hardcoded text-black/bg-white, borders visible on dark bg, contrast re-verified, no flash of wrong mode."
|
|
45
|
+
- id: copy-microcopy
|
|
46
|
+
checks: "Action-oriented button labels, no placeholder-as-label, human error messages that suggest a fix, encouraging empty-state copy, consistent voice."
|
|
47
|
+
- id: brand-expression
|
|
48
|
+
checks: "Cover the logo — is the brand still identifiable? Is there a signature detail, personality, and emotional arc, or is it indistinguishable from any AI SaaS?"
|
|
49
|
+
- id: functional-bug
|
|
50
|
+
checks: "A pixel-perfect element that does not work is worse than an ugly one that does — data not rendering, no-op buttons, broken features behind the polish."
|
|
51
|
+
|
|
52
|
+
falsification: >
|
|
53
|
+
Every design element is a CLAIM — falsify it. A heading claims to be most
|
|
54
|
+
important: is it actually most prominent? A primary button claims to be the
|
|
55
|
+
main action: does a competing link steal attention? Every PASS must cite at
|
|
56
|
+
least 3 concrete checks (the grepped color value, the measured spacing, the
|
|
57
|
+
screenshot diff). Categorise findings as HIERARCHY-vs-REALITY,
|
|
58
|
+
CONSISTENCY-vs-DRIFT, or BRAND-vs-GENERIC. The whole outranks the parts — a
|
|
59
|
+
page of 8/10 components that feels disjointed scores 5/10. Bias toward FAIL.
|
|
60
|
+
|
|
61
|
+
fix_loop: true
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
# Omega OS — MCP / plugin catalog.
|
|
2
|
+
#
|
|
3
|
+
# The installer's 40-mcp step reads this file to present the install checklist.
|
|
4
|
+
# Maintained by the connection-educator (Agentik_Orchestration/educators/).
|
|
5
|
+
# Secrets are referenced by name only — never stored here.
|
|
6
|
+
|
|
7
|
+
version: 1
|
|
8
|
+
|
|
9
|
+
catalog:
|
|
10
|
+
- id: filesystem
|
|
11
|
+
name: Filesystem
|
|
12
|
+
description: Sandboxed local file access
|
|
13
|
+
category: core
|
|
14
|
+
install: { method: npx, package: "@modelcontextprotocol/server-filesystem" }
|
|
15
|
+
recommended: true
|
|
16
|
+
|
|
17
|
+
- id: git
|
|
18
|
+
name: Git
|
|
19
|
+
description: Read/inspect git repositories
|
|
20
|
+
category: core
|
|
21
|
+
install: { method: npx, package: "@modelcontextprotocol/server-git" }
|
|
22
|
+
recommended: true
|
|
23
|
+
|
|
24
|
+
- id: github
|
|
25
|
+
name: GitHub
|
|
26
|
+
description: Issues, pull requests, repos
|
|
27
|
+
category: dev
|
|
28
|
+
install: { method: npx, package: "@modelcontextprotocol/server-github" }
|
|
29
|
+
secrets: [GITHUB_TOKEN]
|
|
30
|
+
recommended: true
|
|
31
|
+
|
|
32
|
+
- id: composio
|
|
33
|
+
name: Composio
|
|
34
|
+
description: 250+ app integrations behind one MCP server
|
|
35
|
+
category: integrations
|
|
36
|
+
install: { method: npx, package: "@composio/mcp" }
|
|
37
|
+
secrets: [COMPOSIO_API_KEY]
|
|
38
|
+
recommended: true
|
|
39
|
+
|
|
40
|
+
- id: higgsfield
|
|
41
|
+
name: Higgsfield
|
|
42
|
+
description: Image and video generation
|
|
43
|
+
category: media
|
|
44
|
+
install: { method: npx, package: "@higgsfield/mcp" }
|
|
45
|
+
secrets: [HIGGSFIELD_API_KEY]
|
|
46
|
+
recommended: false
|
|
47
|
+
|
|
48
|
+
- id: playwright
|
|
49
|
+
name: Playwright
|
|
50
|
+
description: Browser automation — powers the verifier's runtime audits
|
|
51
|
+
category: testing
|
|
52
|
+
install: { method: npx, package: "@playwright/mcp" }
|
|
53
|
+
recommended: true
|
|
54
|
+
|
|
55
|
+
- id: context7
|
|
56
|
+
name: Context7
|
|
57
|
+
description: Live, version-accurate library documentation
|
|
58
|
+
category: dev
|
|
59
|
+
install: { method: npx, package: "@upstash/context7-mcp" }
|
|
60
|
+
recommended: true
|
|
61
|
+
|
|
62
|
+
- id: fetch
|
|
63
|
+
name: Fetch
|
|
64
|
+
description: Fetch and convert web content
|
|
65
|
+
category: core
|
|
66
|
+
install: { method: npx, package: "@modelcontextprotocol/server-fetch" }
|
|
67
|
+
recommended: true
|
|
68
|
+
|
|
69
|
+
- id: memory
|
|
70
|
+
name: Memory
|
|
71
|
+
description: Persistent knowledge-graph memory
|
|
72
|
+
category: core
|
|
73
|
+
install: { method: npx, package: "@modelcontextprotocol/server-memory" }
|
|
74
|
+
recommended: false
|
|
75
|
+
|
|
76
|
+
- id: sequential-thinking
|
|
77
|
+
name: Sequential Thinking
|
|
78
|
+
description: Structured multi-step reasoning
|
|
79
|
+
category: reasoning
|
|
80
|
+
install: { method: npx, package: "@modelcontextprotocol/server-sequential-thinking" }
|
|
81
|
+
recommended: false
|
|
82
|
+
|
|
83
|
+
- id: notion
|
|
84
|
+
name: Notion
|
|
85
|
+
description: Read/write Notion pages and databases
|
|
86
|
+
category: docs
|
|
87
|
+
install: { method: npx, package: "@notionhq/notion-mcp-server" }
|
|
88
|
+
secrets: [NOTION_TOKEN]
|
|
89
|
+
recommended: false
|
|
90
|
+
|
|
91
|
+
- id: slack
|
|
92
|
+
name: Slack
|
|
93
|
+
description: Post and read Slack messages
|
|
94
|
+
category: comms
|
|
95
|
+
install: { method: npx, package: "@modelcontextprotocol/server-slack" }
|
|
96
|
+
secrets: [SLACK_BOT_TOKEN]
|
|
97
|
+
recommended: false
|
|
98
|
+
|
|
99
|
+
- id: linear
|
|
100
|
+
name: Linear
|
|
101
|
+
description: Issues and project management
|
|
102
|
+
category: project
|
|
103
|
+
install: { method: npx, package: "@linear/mcp" }
|
|
104
|
+
secrets: [LINEAR_API_KEY]
|
|
105
|
+
recommended: false
|
|
106
|
+
|
|
107
|
+
- id: sentry
|
|
108
|
+
name: Sentry
|
|
109
|
+
description: Error monitoring and traces
|
|
110
|
+
category: observability
|
|
111
|
+
install: { method: npx, package: "@sentry/mcp-server" }
|
|
112
|
+
secrets: [SENTRY_AUTH_TOKEN]
|
|
113
|
+
recommended: false
|
|
114
|
+
|
|
115
|
+
- id: postgres
|
|
116
|
+
name: Postgres
|
|
117
|
+
description: Query a PostgreSQL database
|
|
118
|
+
category: data
|
|
119
|
+
install: { method: npx, package: "@modelcontextprotocol/server-postgres" }
|
|
120
|
+
secrets: [DATABASE_URL]
|
|
121
|
+
recommended: false
|
|
122
|
+
|
|
123
|
+
- id: brave-search
|
|
124
|
+
name: Brave Search
|
|
125
|
+
description: Web search
|
|
126
|
+
category: search
|
|
127
|
+
install: { method: npx, package: "@modelcontextprotocol/server-brave-search" }
|
|
128
|
+
secrets: [BRAVE_API_KEY]
|
|
129
|
+
recommended: false
|
|
130
|
+
|
|
131
|
+
# Claude Code plugin marketplace — the installer also queries the marketplace
|
|
132
|
+
# (the plugins offered in the Claude desktop app under Connectors -> Customize)
|
|
133
|
+
# and appends them to this checklist, so a fresh VPS can adopt the full suite.
|
|
134
|
+
claude_code_plugins:
|
|
135
|
+
source: marketplace
|
|
136
|
+
offer_all: true
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# The Omega OS Constitution
|
|
2
|
+
|
|
3
|
+
> The rules every agent at every level inherits. Provider-neutral. Compiled into
|
|
4
|
+
> each provider's native rule format by `omega sync`.
|
|
5
|
+
|
|
6
|
+
## The Prime Principle
|
|
7
|
+
|
|
8
|
+
**Completion is derived, never declared.** No agent may assert that its own work
|
|
9
|
+
is finished. A task is finished only when the engine computes it — from
|
|
10
|
+
observable, immutable events, verified by an independent third party that ran
|
|
11
|
+
the real flow.
|
|
12
|
+
|
|
13
|
+
## The Three Laws
|
|
14
|
+
|
|
15
|
+
1. **First Law — code lies, only runtime tells the truth.** Before any
|
|
16
|
+
conclusion, observe actual runtime behaviour: logs, traces, test output,
|
|
17
|
+
screenshots. When code and runtime disagree, runtime wins.
|
|
18
|
+
|
|
19
|
+
2. **Second Law — be a researcher, not a sycophant.** Challenge a flawed premise
|
|
20
|
+
before acting. Find root causes, not symptoms. Push back with reasoning.
|
|
21
|
+
Be skeptical of your own conclusions — ask what would falsify them.
|
|
22
|
+
|
|
23
|
+
3. **Third Law — challenge, decide, proceed.** A dispatched agent never stalls
|
|
24
|
+
waiting for a human. State the corrected premise, pick the best path, execute,
|
|
25
|
+
report after. The only legal stop is a terminal task state with evidence.
|
|
26
|
+
|
|
27
|
+
## The Karpathy Principles
|
|
28
|
+
|
|
29
|
+
- **Think before coding** — surface assumptions and trade-offs explicitly.
|
|
30
|
+
- **Simplicity first** — the minimum that solves the problem; nothing speculative.
|
|
31
|
+
- **Surgical changes** — every changed line traces to the request.
|
|
32
|
+
- **Goal-driven execution** — define the success check, loop until it passes.
|
|
33
|
+
|
|
34
|
+
## The Verification Rule
|
|
35
|
+
|
|
36
|
+
A task may reach `VERIFIED` only if the audit gate passed — including a **runtime
|
|
37
|
+
audit** that started the real system and exercised the real flow. "It builds" is
|
|
38
|
+
not "it works". 92% is not done; only 100% is done.
|
|
39
|
+
|
|
40
|
+
## Scope & Safety
|
|
41
|
+
|
|
42
|
+
- An agent edits only the files in its declared scope (`spec.scope.files_owned`).
|
|
43
|
+
- Destructive or irreversible actions require explicit authorization.
|
|
44
|
+
- Secrets never enter the git-tracked tree, logs, or prompts.
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://agentik-os.dev/schemas/event.schema.json",
|
|
4
|
+
"title": "Omega OS Event",
|
|
5
|
+
"description": "An immutable fact in the append-only event log — the single source of truth. Never mutated, never deleted.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"required": ["id", "task_id", "type", "ts"],
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"properties": {
|
|
10
|
+
"id": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"description": "Unique event id (uuid hex)."
|
|
13
|
+
},
|
|
14
|
+
"task_id": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "The task this event belongs to."
|
|
17
|
+
},
|
|
18
|
+
"type": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "The event type. Task-lifecycle types drive the reducer.",
|
|
21
|
+
"enum": [
|
|
22
|
+
"task.created",
|
|
23
|
+
"task.dispatched",
|
|
24
|
+
"task.started",
|
|
25
|
+
"task.claimed_done",
|
|
26
|
+
"task.verifying",
|
|
27
|
+
"task.verified",
|
|
28
|
+
"task.rejected",
|
|
29
|
+
"task.completed",
|
|
30
|
+
"task.failed",
|
|
31
|
+
"task.heartbeat",
|
|
32
|
+
"scope.joinable"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"ts": {
|
|
36
|
+
"type": "number",
|
|
37
|
+
"description": "Epoch seconds when the event was appended."
|
|
38
|
+
},
|
|
39
|
+
"payload": {
|
|
40
|
+
"type": "object",
|
|
41
|
+
"description": "Event-specific data (e.g. failure reason, audit score).",
|
|
42
|
+
"default": {}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://agentik-os.dev/schemas/task.schema.json",
|
|
4
|
+
"title": "Omega OS Task",
|
|
5
|
+
"description": "A unit of execution at any level of the graph. `state` is DERIVED by folding the task's events — it is never authored by an agent.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"required": ["id", "kind", "role", "spec"],
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"properties": {
|
|
10
|
+
"id": { "type": "string" },
|
|
11
|
+
"parent_id": { "type": ["string", "null"], "description": "The owning scope's task id." },
|
|
12
|
+
"kind": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"enum": ["dispatcher", "executor", "verifier"],
|
|
15
|
+
"description": "dispatcher owns a scope; executor does bounded work; verifier runs the audit gate."
|
|
16
|
+
},
|
|
17
|
+
"role": {
|
|
18
|
+
"type": "string",
|
|
19
|
+
"description": "aisb | oracle | manager | worker | audit | <autonomous-agent-role>"
|
|
20
|
+
},
|
|
21
|
+
"spec": { "type": "object", "description": "The brief." },
|
|
22
|
+
"state": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"enum": ["pending", "dispatched", "running", "claimed_done", "verifying", "verified", "rejected", "completed", "failed"],
|
|
25
|
+
"description": "DERIVED — reduce_task(events_for(id)). Cached for convenience; events are authoritative."
|
|
26
|
+
},
|
|
27
|
+
"lifecycle": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"enum": ["ephemeral", "persistent"],
|
|
30
|
+
"default": "ephemeral",
|
|
31
|
+
"description": "persistent = an autonomous agent."
|
|
32
|
+
},
|
|
33
|
+
"trigger": {
|
|
34
|
+
"type": ["object", "null"],
|
|
35
|
+
"description": "What wakes the task. Null for mission tasks; set for autonomous agents.",
|
|
36
|
+
"required": ["type"],
|
|
37
|
+
"properties": {
|
|
38
|
+
"type": { "type": "string", "enum": ["cron", "event", "webhook", "channel"] },
|
|
39
|
+
"config": { "type": "object" }
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"budget": {
|
|
43
|
+
"type": "object",
|
|
44
|
+
"description": "Bounds the task — no infinite loops, no infinite hangs.",
|
|
45
|
+
"properties": {
|
|
46
|
+
"max_iterations": { "type": "integer", "minimum": 1, "default": 3 },
|
|
47
|
+
"deadline_epoch": { "type": ["number", "null"] },
|
|
48
|
+
"heartbeat_interval_s": { "type": "integer", "minimum": 1, "default": 120 }
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"provider": { "type": ["string", "null"], "description": "Resolved by the model router." },
|
|
52
|
+
"iteration": { "type": "integer", "minimum": 0, "default": 0 }
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Agentik_Tools — the "/Applications" folder
|
|
2
|
+
|
|
3
|
+
> **Nature:** third-party installs · **Lifecycle:** installer-managed · **Git:** not versioned (manifest only)
|
|
4
|
+
|
|
5
|
+
Everything installed from outside Omega OS lives here — modelled on the macOS
|
|
6
|
+
`/Applications` folder. Open this block over SSH and you see every third-party
|
|
7
|
+
tool, and nothing else. It is the answer to "installing things on Ubuntu is a
|
|
8
|
+
mess": there is exactly one place a tool can go.
|
|
9
|
+
|
|
10
|
+
```
|
|
11
|
+
Agentik_Tools/
|
|
12
|
+
├── bin/ symlinks — the ONLY directory added to PATH
|
|
13
|
+
├── knowledge/ the RAG ENGINE — vector engine, embedding tooling (third-party)
|
|
14
|
+
├── <mcp-id>/ each installed MCP server (composio, playwright, …)
|
|
15
|
+
└── <tool>/ any other external tool (n8n, ollama, …)
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## The registry
|
|
19
|
+
|
|
20
|
+
`registry.json` (created by the installer) is the manifest of what is installed:
|
|
21
|
+
name, version, install path, source, invoke command. It is the **only** part of
|
|
22
|
+
this block that is git-tracked — the tool payloads are not. On a new machine the
|
|
23
|
+
bootstrap reads `registry.json` and reinstalls exactly the same set, same
|
|
24
|
+
versions. That is what makes the system reproducible.
|
|
25
|
+
|
|
26
|
+
## RAG — only the engine lives here
|
|
27
|
+
|
|
28
|
+
The RAG **engine** (vector store, embedding tooling) is third-party software, so
|
|
29
|
+
it lives in `knowledge/`. The rest of the RAG system lives elsewhere, by nature:
|
|
30
|
+
the **index/corpus** is mutating runtime state → `Agentik_Runtime/`; the
|
|
31
|
+
**router + strategies** are orchestration logic → `Agentik_Orchestration/`; the
|
|
32
|
+
**thresholds + CRAG config** are truth → `Agentik_SSOT/`.
|
|
33
|
+
|
|
34
|
+
## Install a tool
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
omega tool install <name> # installs into Agentik_Tools/<name>/, registers it,
|
|
38
|
+
# exposes it to every provider via the SSOT
|
|
39
|
+
omega tool list | update | remove
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
There is no other install path — so a tool cannot be put in the wrong place.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"tools": [
|
|
4
|
+
{
|
|
5
|
+
"name": "pdfgen",
|
|
6
|
+
"version": "1.0.0",
|
|
7
|
+
"path": "Agentik_Tools/pdfgen/",
|
|
8
|
+
"invoke": "Agentik_Tools/pdfgen/bin/pdfgen",
|
|
9
|
+
"purpose": "Branded PDF generation — whitepaper / audit / marketing / doc templates, themes agentik/dafnck/one-life.",
|
|
10
|
+
"used_by": ["omega_engine.report"],
|
|
11
|
+
"source": "agentik-pdf",
|
|
12
|
+
"installedAt": ""
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agentikos/omega-os",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Omega OS — installable agentic operating system with verified-completion orchestration. Event-sourced engine, 8-block rack, autonomous agents, MCP.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"omega-os": "bin/omega-os.js"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"bin/",
|
|
10
|
+
"install.sh",
|
|
11
|
+
"bootstrap/",
|
|
12
|
+
"omega/",
|
|
13
|
+
"docs/",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=18"
|
|
19
|
+
},
|
|
20
|
+
"os": [
|
|
21
|
+
"linux",
|
|
22
|
+
"darwin"
|
|
23
|
+
],
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public",
|
|
27
|
+
"registry": "https://registry.npmjs.org/"
|
|
28
|
+
},
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/agentik-os/OmegaOS.git"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"agentic",
|
|
35
|
+
"orchestration",
|
|
36
|
+
"ai-agents",
|
|
37
|
+
"autonomous-agents",
|
|
38
|
+
"claude",
|
|
39
|
+
"mcp",
|
|
40
|
+
"event-sourcing"
|
|
41
|
+
],
|
|
42
|
+
"author": "Agentik OS"
|
|
43
|
+
}
|