arkaos 4.40.0 → 4.41.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/THE-ARKAOS-GUIDE.md +1 -1
- package/VERSION +1 -1
- package/core/governance/evidence_checks.py +7 -1
- package/core/governance/judge.py +23 -1
- package/core/governance/qg_digest.py +64 -0
- package/core/governance/qg_verdict.py +50 -1
- package/core/governance/reviewer_ledger.py +11 -2
- package/harness/codex/AGENTS.md +1 -1
- package/harness/copilot/copilot-instructions.md +1 -1
- package/harness/cursor/rules/arkaos.mdc +2 -2
- package/harness/gemini/GEMINI.md +1 -1
- package/harness/opencode/AGENTS.md +1 -1
- package/harness/opencode/agents/arka-architect-gabriel.md +1 -1
- package/harness/opencode/agents/arka-brand-director-valentina.md +1 -1
- package/harness/opencode/agents/arka-cfo-helena.md +1 -1
- package/harness/opencode/agents/arka-chief-of-staff-afonso.md +1 -1
- package/harness/opencode/agents/arka-community-strategist-beatriz.md +1 -1
- package/harness/opencode/agents/arka-content-strategist-rafael.md +1 -1
- package/harness/opencode/agents/arka-conversion-strategist-ines.md +1 -1
- package/harness/opencode/agents/arka-coo-sofia.md +1 -1
- package/harness/opencode/agents/arka-copy-director-eduardo.md +1 -1
- package/harness/opencode/agents/arka-cqo-marta.md +1 -1
- package/harness/opencode/agents/arka-cto-marco.md +1 -1
- package/harness/opencode/agents/arka-design-ops-lead-iris.md +1 -1
- package/harness/opencode/agents/arka-ecom-director-ricardo.md +1 -1
- package/harness/opencode/agents/arka-knowledge-director-clara.md +1 -1
- package/harness/opencode/agents/arka-leadership-director-rodrigo.md +1 -1
- package/harness/opencode/agents/arka-marketing-director-luna.md +1 -1
- package/harness/opencode/agents/arka-ops-lead-daniel.md +1 -1
- package/harness/opencode/agents/arka-pm-director-carolina.md +1 -1
- package/harness/opencode/agents/arka-revops-lead-vicente.md +1 -1
- package/harness/opencode/agents/arka-saas-strategist-tiago.md +1 -1
- package/harness/opencode/agents/arka-sales-director-miguel.md +1 -1
- package/harness/opencode/agents/arka-strategy-director-tomas.md +1 -1
- package/harness/opencode/agents/arka-tech-director-francisca.md +1 -1
- package/harness/opencode/agents/arka-tech-lead-paulo.md +1 -1
- package/harness/opencode/agents/arka-video-producer-simao.md +1 -1
- package/harness/zed/.rules +1 -1
- package/knowledge/skills-manifest.json +1 -1
- package/package.json +1 -1
- package/pyproject.toml +1 -1
package/THE-ARKAOS-GUIDE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# The ArkaOS Guide
|
|
2
2
|
|
|
3
|
-
> v4.
|
|
3
|
+
> v4.41.0 — 89 agents, 17 departments, 332 skills, 297 commands, 18 ADRs.
|
|
4
4
|
> One file, everything you need to start. Generated by `scripts/guide_gen.py` — never hand-edited.
|
|
5
5
|
|
|
6
6
|
## What it is
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.
|
|
1
|
+
4.41.0
|
|
@@ -36,6 +36,7 @@ import time
|
|
|
36
36
|
from dataclasses import asdict, dataclass, field, replace
|
|
37
37
|
from pathlib import Path
|
|
38
38
|
|
|
39
|
+
from core.governance.qg_digest import evidence_digest
|
|
39
40
|
from core.shared.test_evidence import coverage_percent_from_xml
|
|
40
41
|
|
|
41
42
|
TIMEOUT_SECONDS = 300
|
|
@@ -119,11 +120,16 @@ class EvidenceReport:
|
|
|
119
120
|
results: list[CheckResult] = field(default_factory=list)
|
|
120
121
|
|
|
121
122
|
def to_dict(self) -> dict:
|
|
122
|
-
|
|
123
|
+
payload = {
|
|
123
124
|
"project_dir": self.project_dir,
|
|
124
125
|
"overall": self.overall,
|
|
125
126
|
"results": [asdict(r) for r in self.results],
|
|
126
127
|
}
|
|
128
|
+
# PR-B2: the digest excludes its own key, so recomputing over
|
|
129
|
+
# the embedded dict reproduces it — reviewers can quote it and
|
|
130
|
+
# the aggregate verifies it once PR-B3 wires the check.
|
|
131
|
+
payload["report_digest"] = evidence_digest(payload)
|
|
132
|
+
return payload
|
|
127
133
|
|
|
128
134
|
|
|
129
135
|
# ─── Subprocess plumbing ────────────────────────────────────────────────
|
package/core/governance/judge.py
CHANGED
|
@@ -24,6 +24,7 @@ it.
|
|
|
24
24
|
|
|
25
25
|
from __future__ import annotations
|
|
26
26
|
|
|
27
|
+
import re
|
|
27
28
|
from typing import Literal
|
|
28
29
|
|
|
29
30
|
from pydantic import BaseModel, Field, model_validator
|
|
@@ -69,12 +70,22 @@ class JudgeVerdict(BaseModel):
|
|
|
69
70
|
max_length=120,
|
|
70
71
|
description="Opening excerpt of the judged artifact (auditability)",
|
|
71
72
|
)
|
|
73
|
+
# PR-B2: a real content hash alongside the prose excerpt above —
|
|
74
|
+
# judged_digest stays an excerpt (not repurposed); judged_sha256 is
|
|
75
|
+
# the verifiable one. Optional so existing verdicts stay valid.
|
|
76
|
+
judged_sha256: str = Field(
|
|
77
|
+
default="",
|
|
78
|
+
description=(
|
|
79
|
+
"sha256 of the judged artifact's full text; empty when the "
|
|
80
|
+
"caller did not hash it"
|
|
81
|
+
),
|
|
82
|
+
)
|
|
72
83
|
reviewer: str = Field(description="Judge id, e.g. plan-judge-g2")
|
|
73
84
|
model_used: str = Field(description="Model tier the judgment ran on")
|
|
74
85
|
notes: str = ""
|
|
75
86
|
|
|
76
87
|
@model_validator(mode="after")
|
|
77
|
-
def revise_requires_actionable_findings(self) ->
|
|
88
|
+
def revise_requires_actionable_findings(self) -> JudgeVerdict:
|
|
78
89
|
"""REVISE must cite at least one blocker/major finding —
|
|
79
90
|
a judge cannot loop work back on narrative alone."""
|
|
80
91
|
if self.verdict == "REVISE":
|
|
@@ -91,5 +102,16 @@ class JudgeVerdict(BaseModel):
|
|
|
91
102
|
)
|
|
92
103
|
return self
|
|
93
104
|
|
|
105
|
+
@model_validator(mode="after")
|
|
106
|
+
def judged_sha256_is_hex_or_empty(self) -> JudgeVerdict:
|
|
107
|
+
if self.judged_sha256 and not re.fullmatch(
|
|
108
|
+
r"[0-9a-f]{64}", self.judged_sha256
|
|
109
|
+
):
|
|
110
|
+
raise ValueError(
|
|
111
|
+
"judged_sha256 must be 64 lowercase hex chars or empty, "
|
|
112
|
+
f"got {self.judged_sha256!r}"
|
|
113
|
+
)
|
|
114
|
+
return self
|
|
115
|
+
|
|
94
116
|
|
|
95
117
|
JUDGE_VERDICT_JSON_SCHEMA: dict = JudgeVerdict.model_json_schema()
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"""Integrity digests for the Quality Gate chain (PR-B2).
|
|
2
|
+
|
|
3
|
+
Two digest primitives supply the material for proving — once PR-B3
|
|
4
|
+
wires the verification that consumes them — that reviewers and
|
|
5
|
+
verdict refer to the same evidence report:
|
|
6
|
+
|
|
7
|
+
- ``evidence_digest`` — hashes an EvidenceReport dict.
|
|
8
|
+
- ``verdict_digest`` — hashes a QGVerdict dict.
|
|
9
|
+
|
|
10
|
+
Both return a 64-char lowercase sha256 hex string over canonical JSON
|
|
11
|
+
(sorted keys, compact separators): key order and formatting never
|
|
12
|
+
change a digest; a content change does — except under the
|
|
13
|
+
``report_digest`` key, which ``evidence_digest`` excludes by design so
|
|
14
|
+
the digest is stable whether computed before or after embedding.
|
|
15
|
+
|
|
16
|
+
A working-tree digest deliberately does NOT live here. Three designs
|
|
17
|
+
of a ``tree_digest`` were driven through six wrong-digest routes
|
|
18
|
+
over ten QG rounds, each reproduced at the gate before acceptance;
|
|
19
|
+
``docs/adr/2026-07-29-tree-digest-corpus.md`` records the corpus
|
|
20
|
+
durably and is the acceptance spec for the dedicated PR.
|
|
21
|
+
``QGVerdict.tree_digest`` is enforced empty until that primitive
|
|
22
|
+
exists and survives its own gate.
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
from __future__ import annotations
|
|
26
|
+
|
|
27
|
+
import hashlib
|
|
28
|
+
import json
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def _sha256(data: bytes) -> str:
|
|
32
|
+
return hashlib.sha256(data).hexdigest()
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
def _canonical(payload: dict) -> bytes:
|
|
36
|
+
"""Canonical JSON: sorted keys, compact separators, UTF-8-encoded
|
|
37
|
+
(surrogatepass, so surrogate-bearing strings serialize rather than
|
|
38
|
+
raise).
|
|
39
|
+
|
|
40
|
+
Key order and formatting never change the digest; content does.
|
|
41
|
+
``allow_nan=False``: NaN/Infinity are invalid JSON and would make
|
|
42
|
+
the canonical form implementation-defined — they raise instead.
|
|
43
|
+
Other non-serializable values raise too, on purpose — a digest
|
|
44
|
+
over a lossy repr would silently stop meaning anything.
|
|
45
|
+
"""
|
|
46
|
+
return json.dumps(
|
|
47
|
+
payload, sort_keys=True, separators=(",", ":"),
|
|
48
|
+
ensure_ascii=False, allow_nan=False,
|
|
49
|
+
).encode("utf-8", "surrogatepass")
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def evidence_digest(report: dict) -> str:
|
|
53
|
+
"""Digest of an EvidenceReport dict, canonically normalized.
|
|
54
|
+
|
|
55
|
+
The report's own ``report_digest`` key (if present) is excluded so
|
|
56
|
+
the digest is stable whether computed before or after embedding.
|
|
57
|
+
"""
|
|
58
|
+
payload = {k: v for k, v in report.items() if k != "report_digest"}
|
|
59
|
+
return _sha256(_canonical(payload))
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
def verdict_digest(verdict: dict) -> str:
|
|
63
|
+
"""Digest of a QGVerdict dict, canonically normalized."""
|
|
64
|
+
return _sha256(_canonical(verdict))
|
|
@@ -15,10 +15,13 @@ schema when dispatching reviewers via the Agent tool.
|
|
|
15
15
|
|
|
16
16
|
from __future__ import annotations
|
|
17
17
|
|
|
18
|
+
import re
|
|
18
19
|
from typing import Literal
|
|
19
20
|
|
|
20
21
|
from pydantic import BaseModel, Field, model_validator
|
|
21
22
|
|
|
23
|
+
_SHA256_HEX_RE = re.compile(r"[0-9a-f]{64}")
|
|
24
|
+
|
|
22
25
|
|
|
23
26
|
class QGBlocker(BaseModel):
|
|
24
27
|
"""One concrete issue that blocks approval."""
|
|
@@ -66,9 +69,55 @@ class QGVerdict(BaseModel):
|
|
|
66
69
|
"evidence is insufficient"
|
|
67
70
|
),
|
|
68
71
|
)
|
|
72
|
+
# PR-B2 integrity digests — optional so the pre-B2 verdict corpus
|
|
73
|
+
# stays valid. evidence_digest and reviewer_output_sha256 must be
|
|
74
|
+
# real sha256 hex when present; tree_digest is RESERVED and
|
|
75
|
+
# rejects ANY value (see its description and the validator).
|
|
76
|
+
evidence_digest: str = Field(
|
|
77
|
+
default="",
|
|
78
|
+
description=(
|
|
79
|
+
"sha256 of the EvidenceReport the reviewer interpreted "
|
|
80
|
+
"(report_digest from the --json output); empty when the "
|
|
81
|
+
"report carried none"
|
|
82
|
+
),
|
|
83
|
+
)
|
|
84
|
+
tree_digest: str = Field(
|
|
85
|
+
default="",
|
|
86
|
+
description=(
|
|
87
|
+
"RESERVED — must be empty. The producing primitive will "
|
|
88
|
+
"ship in its own PR (acceptance spec: "
|
|
89
|
+
"docs/adr/2026-07-29-tree-digest-corpus.md); until it "
|
|
90
|
+
"exists, a non-empty value is rejected so no unverifiable "
|
|
91
|
+
"digest can enter the corpus."
|
|
92
|
+
),
|
|
93
|
+
)
|
|
94
|
+
reviewer_output_sha256: str = Field(
|
|
95
|
+
default="",
|
|
96
|
+
description=(
|
|
97
|
+
"sha256 of the reviewer's own raw output, as captured by the "
|
|
98
|
+
"ledger (raw_sha256); empty when not yet ledgered"
|
|
99
|
+
),
|
|
100
|
+
)
|
|
101
|
+
|
|
102
|
+
@model_validator(mode="after")
|
|
103
|
+
def digests_are_sha256_hex_or_empty(self) -> QGVerdict:
|
|
104
|
+
for name in ("evidence_digest", "reviewer_output_sha256"):
|
|
105
|
+
value = getattr(self, name)
|
|
106
|
+
if value and not _SHA256_HEX_RE.fullmatch(value):
|
|
107
|
+
raise ValueError(
|
|
108
|
+
f"{name} must be 64 lowercase hex chars or empty, "
|
|
109
|
+
f"got {value!r}"
|
|
110
|
+
)
|
|
111
|
+
if self.tree_digest:
|
|
112
|
+
raise ValueError(
|
|
113
|
+
"tree_digest is RESERVED and must be empty until the "
|
|
114
|
+
"tree-digest primitive ships in its own PR — an "
|
|
115
|
+
"unverifiable digest must not enter the corpus"
|
|
116
|
+
)
|
|
117
|
+
return self
|
|
69
118
|
|
|
70
119
|
@model_validator(mode="after")
|
|
71
|
-
def enforce_evidence_floor(self) ->
|
|
120
|
+
def enforce_evidence_floor(self) -> QGVerdict:
|
|
72
121
|
"""APPROVED cannot coexist with failing evidence (evidence floor)."""
|
|
73
122
|
if self.verdict == "APPROVED" and self.evidence_report.overall == "fail":
|
|
74
123
|
raise ValueError(
|
|
@@ -338,8 +338,17 @@ def _build_record(
|
|
|
338
338
|
"raw_sha256": digest,
|
|
339
339
|
"verdict": verdict,
|
|
340
340
|
"parse_error": parse_error,
|
|
341
|
-
|
|
342
|
-
|
|
341
|
+
# Digest columns are harvested ONLY from a VALIDATED verdict:
|
|
342
|
+
# _validated is fail-soft (it keeps the raw dict so no review
|
|
343
|
+
# text is ever lost), but a value the validator rejected must
|
|
344
|
+
# not enter the corpus through these columns (QG r12 — a
|
|
345
|
+
# rejected tree_digest was reproduced landing on disk here).
|
|
346
|
+
"evidence_digest": (
|
|
347
|
+
None if parse_error else (verdict or {}).get("evidence_digest")
|
|
348
|
+
),
|
|
349
|
+
"tree_digest": (
|
|
350
|
+
None if parse_error else (verdict or {}).get("tree_digest")
|
|
351
|
+
),
|
|
343
352
|
"source": source,
|
|
344
353
|
"sanitized": sanitized,
|
|
345
354
|
}
|
package/harness/codex/AGENTS.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ArkaOS — The Operating System for AI Agent Teams
|
|
2
2
|
|
|
3
|
-
> v4.
|
|
3
|
+
> v4.41.0 — 89 agents, 17 departments, 332 skills. Generated by `scripts/harness_gen.py`; do not edit.
|
|
4
4
|
|
|
5
5
|
You are operating within ArkaOS. Every request routes through the
|
|
6
6
|
appropriate department squad — never respond as a generic assistant.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ArkaOS — The Operating System for AI Agent Teams
|
|
2
2
|
|
|
3
|
-
> v4.
|
|
3
|
+
> v4.41.0 — 89 agents, 17 departments, 332 skills. Generated by `scripts/harness_gen.py`; do not edit.
|
|
4
4
|
|
|
5
5
|
You are operating within ArkaOS. Every request routes through the
|
|
6
6
|
appropriate department squad — never respond as a generic assistant.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: ArkaOS v4.
|
|
2
|
+
description: ArkaOS v4.41.0 agent-team contract
|
|
3
3
|
alwaysApply: true
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# ArkaOS — The Operating System for AI Agent Teams
|
|
7
7
|
|
|
8
|
-
> v4.
|
|
8
|
+
> v4.41.0 — 89 agents, 17 departments, 332 skills. Generated by `scripts/harness_gen.py`; do not edit.
|
|
9
9
|
|
|
10
10
|
You are operating within ArkaOS. Every request routes through the
|
|
11
11
|
appropriate department squad — never respond as a generic assistant.
|
package/harness/gemini/GEMINI.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ArkaOS — The Operating System for AI Agent Teams
|
|
2
2
|
|
|
3
|
-
> v4.
|
|
3
|
+
> v4.41.0 — 89 agents, 17 departments, 332 skills. Generated by `scripts/harness_gen.py`; do not edit.
|
|
4
4
|
|
|
5
5
|
You are operating within ArkaOS. Every request routes through the
|
|
6
6
|
appropriate department squad — never respond as a generic assistant.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ArkaOS — The Operating System for AI Agent Teams
|
|
2
2
|
|
|
3
|
-
> v4.
|
|
3
|
+
> v4.41.0 — 89 agents, 17 departments, 332 skills. Generated by `scripts/harness_gen.py`; do not edit.
|
|
4
4
|
|
|
5
5
|
You are operating within ArkaOS. Every request routes through the
|
|
6
6
|
appropriate department squad — never respond as a generic assistant.
|
|
@@ -3,7 +3,7 @@ description: "Software Architect — ArkaOS /dev department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Gabriel, Software Architect of the ArkaOS /dev department (v4.
|
|
6
|
+
You are Gabriel, Software Architect of the ArkaOS /dev department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: system design, system visualization via dev/diagram (architecture + dataflow diagrams delivered as browser artifacts), domain modeling (event storming, bounded contexts), design patterns (GoF, PoEAA), business / domain analysis, API design.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Creative Director — ArkaOS /brand department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Valentina, Creative Director of the ArkaOS /brand department (v4.
|
|
6
|
+
You are Valentina, Creative Director of the ArkaOS /brand department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: brand identity creation, reference-video visual analysis via dev/watch (complete frames + transcript — motion and art direction judged on evidence, never on screenshots), visual design direction, UX/UI strategy, design systems, brand voice & tone.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Chief Financial Officer — ArkaOS /fin department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Helena, Chief Financial Officer of the ArkaOS /fin department (v4.
|
|
6
|
+
You are Helena, Chief Financial Officer of the ArkaOS /fin department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: financial planning & analysis, valuation & investment, unit economics & SaaS metrics, risk management & ERM, fundraising & cap tables, cash flow management.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Chief of Staff & Governance Lead — ArkaOS /org department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Afonso, Chief of Staff & Governance Lead of the ArkaOS /org department (v4.
|
|
6
|
+
You are Afonso, Chief of Staff & Governance Lead of the ArkaOS /org department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: meeting cadence (daily/weekly/quarterly/annual), OKR & CFR orchestration cross-department, decision records & RACI, premortem / blameless postmortem rituals, governance, board & founder-CEO succession, strategic alignment & single-threaded leadership.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Community Strategist — ArkaOS /community department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Beatriz, Community Strategist of the ArkaOS /community department (v4.
|
|
6
|
+
You are Beatriz, Community Strategist of the ArkaOS /community department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: community strategy & design, platform selection (Discord, Telegram, Skool, Circle), member onboarding & retention, monetization (membership, courses, coaching), gamification & engagement, niche communities (betting, AI, vertical).
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Content Strategist — ArkaOS /content department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Rafael, Content Strategist of the ArkaOS /content department (v4.
|
|
6
|
+
You are Rafael, Content Strategist of the ArkaOS /content department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: viral content design, reference-video analysis via dev/watch (frames + timestamped transcript before judging any video), hook writing & packaging, script structure, content operating systems, platform-specific optimization.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Conversion Strategist — ArkaOS /landing department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Ines, Conversion Strategist of the ArkaOS /landing department (v4.
|
|
6
|
+
You are Ines, Conversion Strategist of the ArkaOS /landing department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: sales funnels, landing page optimization, offer creation, copywriting (direct response), launch sequences, affiliate marketing.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Chief Operations Officer — ArkaOS /org department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Sofia, Chief Operations Officer of the ArkaOS /org department (v4.
|
|
6
|
+
You are Sofia, Chief Operations Officer of the ArkaOS /org department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: organizational design, process optimization, cross-department coordination, culture & team health, scaling operations, workflow automation.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Copy & Language Director — ArkaOS /quality department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Eduardo, Copy & Language Director of the ArkaOS /quality department (v4.
|
|
6
|
+
You are Eduardo, Copy & Language Director of the ArkaOS /quality department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: spelling and grammar (EN, PT-PT, PT-BR, ES, FR), tone and voice consistency, AI pattern detection and removal, accentuation and orthography, copywriting quality, factual accuracy in text.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Chief Quality Officer — ArkaOS /quality department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Marta, Chief Quality Officer of the ArkaOS /quality department (v4.
|
|
6
|
+
You are Marta, Chief Quality Officer of the ArkaOS /quality department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: quality assurance orchestration, cross-department quality standards, text quality (spelling, grammar, tone), technical quality (code, UX, data), compliance and audit.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Chief Technology Officer — ArkaOS /dev department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Marco, Chief Technology Officer of the ArkaOS /dev department (v4.
|
|
6
|
+
You are Marco, Chief Technology Officer of the ArkaOS /dev department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: software architecture, system design, tech strategy, cloud infrastructure, ai/ml systems.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Design Ops Lead — ArkaOS /brand department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Iris, Design Ops Lead of the ArkaOS /brand department (v4.
|
|
6
|
+
You are Iris, Design Ops Lead of the ArkaOS /brand department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: design tokens (JSON + CSS variables), component libraries (shadcn/ui, Radix, Headless UI), design system governance, figma → code pipelines, accessibility compliance (WCAG 2.2 AA/AAA), cross-platform tokenisation (Style Dictionary, Tailwind).
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "E-Commerce Director — ArkaOS /ecom department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Ricardo, E-Commerce Director of the ArkaOS /ecom department (v4.
|
|
6
|
+
You are Ricardo, E-Commerce Director of the ArkaOS /ecom department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: e-commerce strategy, conversion optimization, marketplace operations, pricing strategy, fulfillment & logistics, email & retention.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Knowledge Director — ArkaOS /kb department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Clara, Knowledge Director of the ArkaOS /kb department (v4.
|
|
6
|
+
You are Clara, Knowledge Director of the ArkaOS /kb department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: knowledge management, research methodology, persona building, content curation, taxonomy & ontology, Obsidian vault management.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Leadership & People Director — ArkaOS /lead department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Rodrigo, Leadership & People Director of the ArkaOS /lead department (v4.
|
|
6
|
+
You are Rodrigo, Leadership & People Director of the ArkaOS /lead department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: team assessment & health, leadership development, hiring & onboarding, performance management, feedback & 1-on-1s, culture building.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Marketing Director — ArkaOS /mkt department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Luna, Marketing Director of the ArkaOS /mkt department (v4.
|
|
6
|
+
You are Luna, Marketing Director of the ArkaOS /mkt department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: growth strategy, video-ad teardown via dev/watch (hook, pacing and spoken-copy evidence from frames + transcript), content marketing, SEO, paid acquisition, social media.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Operations Lead — ArkaOS /ops department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Daniel, Operations Lead of the ArkaOS /ops department (v4.
|
|
6
|
+
You are Daniel, Operations Lead of the ArkaOS /ops department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: workflow automation (Zapier, Make, n8n), SOP/process visualization via dev/diagram (workflow + lifecycle diagrams for automations and runbooks), process mapping & optimization, SOP creation & management, bottleneck analysis, integration design.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Product Manager — ArkaOS /pm department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Carolina, Product Manager of the ArkaOS /pm department (v4.
|
|
6
|
+
You are Carolina, Product Manager of the ArkaOS /pm department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: continuous product discovery (daily habit), deliverable visualization via dev/diagram (workflow diagrams so stakeholders see scope before build), weekly customer interviewing, dual-track agile (discovery + delivery), product risk assessment (value/usability/feasibility/viability), framing problems for empowered teams (not features).
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "RevOps Lead — ArkaOS /saas department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Vicente, RevOps Lead of the ArkaOS /saas department (v4.
|
|
6
|
+
You are Vicente, RevOps Lead of the ArkaOS /saas department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: revenue operations (cross mkt + sales + CS), unified funnel & CRM hygiene, SLA MQL→SQL between marketing and sales, revenue metrics (LTV/CAC, NRR, payback), lead scoring & routing, commission & forecast modeling.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "SaaS Strategist — ArkaOS /saas department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Tiago, SaaS Strategist of the ArkaOS /saas department (v4.
|
|
6
|
+
You are Tiago, SaaS Strategist of the ArkaOS /saas department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: SaaS metrics & benchmarking, product-led growth, pricing strategy, customer success, micro-SaaS validation, go-to-market for SaaS.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Sales Director — ArkaOS /sales department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Miguel, Sales Director of the ArkaOS /sales department (v4.
|
|
6
|
+
You are Miguel, Sales Director of the ArkaOS /sales department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: consultative selling, pipeline management, proposal writing, negotiation, discovery calls, deal qualification.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Chief Strategist — ArkaOS /strat department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Tomas, Chief Strategist of the ArkaOS /strat department (v4.
|
|
6
|
+
You are Tomas, Chief Strategist of the ArkaOS /strat department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: competitive strategy, business-flow visualization via dev/diagram (architecture + dataflow diagrams of business models and value chains), market analysis, business model design, positioning, innovation strategy.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Technical & UX Quality Director — ArkaOS /quality department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Francisca, Technical & UX Quality Director of the ArkaOS /quality department (v4.
|
|
6
|
+
You are Francisca, Technical & UX Quality Director of the ArkaOS /quality department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: code quality (SOLID, Clean Code, DRY), test coverage and quality, UX/UI review (heuristics, accessibility), security review (OWASP), performance review (CWV, API latency), data integrity and API contracts.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Tech Lead — ArkaOS /dev department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Paulo, Tech Lead of the ArkaOS /dev department (v4.
|
|
6
|
+
You are Paulo, Tech Lead of the ArkaOS /dev department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: workflow orchestration, visual spec/plan companions via dev/diagram (typed IR -> interactive HTML the user opens before build), code quality enforcement, sprint/cycle management, technical decision-making, developer experience.
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ description: "Video Producer & Production Lead — ArkaOS /content department"
|
|
|
3
3
|
mode: subagent
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
You are Simão, Video Producer & Production Lead of the ArkaOS /content department (v4.
|
|
6
|
+
You are Simão, Video Producer & Production Lead of the ArkaOS /content department (v4.41.0; generated by scripts/harness_gen.py — do not edit).
|
|
7
7
|
|
|
8
8
|
Expertise: video production pipelines (script → storyboard → assets → edit → render), cut review via dev/watch (frame + transcript evidence on own renders before the Quality Gate), Hyperframes video-as-code editing (HTML/CSS/JS + GSAP → MP4), Higgsfield generation orchestration (image, video, audio, motion control, upscale, reframe), shot lists and EDLs (scene/shot/VO/on-screen-text columns), transcription-synced cuts and word-level captions.
|
|
9
9
|
|
package/harness/zed/.rules
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ArkaOS — The Operating System for AI Agent Teams
|
|
2
2
|
|
|
3
|
-
> v4.
|
|
3
|
+
> v4.41.0 — 89 agents, 17 departments, 332 skills. Generated by `scripts/harness_gen.py`; do not edit.
|
|
4
4
|
|
|
5
5
|
You are operating within ArkaOS. Every request routes through the
|
|
6
6
|
appropriate department squad — never respond as a generic assistant.
|
package/package.json
CHANGED