arkaos 2.25.0 → 2.28.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.
Files changed (27) hide show
  1. package/VERSION +1 -1
  2. package/arka/skills/bootstrap-agent/SKILL.md +76 -0
  3. package/arka/skills/design-ops/SKILL.md +68 -0
  4. package/arka/skills/design-ops/scripts/extract-colors.py +86 -0
  5. package/arka/skills/design-ops/scripts/shadcn-tokens.py +59 -0
  6. package/arka/skills/design-ops/scripts/wcag-contrast.py +92 -0
  7. package/arka/skills/research/SKILL.md +117 -0
  8. package/config/constitution.yaml +4 -0
  9. package/config/hooks/post-tool-use.sh +17 -0
  10. package/config/hooks/user-prompt-submit.sh +16 -0
  11. package/core/agents/__pycache__/loader.cpython-313.pyc +0 -0
  12. package/core/agents/__pycache__/schema.cpython-313.pyc +0 -0
  13. package/core/agents/loader.py +4 -1
  14. package/core/agents/schema.py +29 -0
  15. package/core/cognition/__pycache__/retrieval.cpython-313.pyc +0 -0
  16. package/core/cognition/capture/__pycache__/collector.cpython-313.pyc +0 -0
  17. package/core/cognition/retrieval.py +383 -0
  18. package/core/cognition/scheduler/__pycache__/daemon.cpython-313.pyc +0 -0
  19. package/core/obsidian/__pycache__/writer.cpython-313.pyc +0 -0
  20. package/core/runtime/__pycache__/path_resolver.cpython-313.pyc +0 -0
  21. package/departments/brand/agents/design-ops/design-ops-lead.yaml +78 -0
  22. package/departments/brand/agents/design-ops/extraction-script-writer.yaml +74 -0
  23. package/departments/brand/agents/design-ops/shadcn-padronizer.yaml +76 -0
  24. package/departments/brand/agents/design-ops/wcag-auditor.yaml +76 -0
  25. package/departments/dev/skills/mcp/SKILL.md +16 -0
  26. package/package.json +1 -1
  27. package/pyproject.toml +1 -1
@@ -118,3 +118,19 @@ The user should set these in their shell profile or project `.env`, or run `bash
118
118
  - `DISCORD_TOKEN` — Discord bot integration
119
119
  - `WHATSAPP_API_TOKEN` / `WHATSAPP_PHONE_ID` — WhatsApp Business API
120
120
  - `TEAMS_APP_ID` / `TEAMS_APP_SECRET` — Microsoft Teams
121
+
122
+ ## Recommended baseline (Orgo 2026-05-13)
123
+
124
+ Three MCPs that the 2026-05-13 podcast pattern recommends for every
125
+ agent-business setup. They are *optional* in the registry but worth
126
+ adopting deliberately:
127
+
128
+ | MCP | Why | When to add |
129
+ | --- | --- | --- |
130
+ | **Composio** | One connector, thousands of apps (Gmail, Slack, Notion, GitHub). Handles auth + tool calling without per-tool wiring. | Any agent that needs broad SaaS integration. Cuts setup time on every new customer. |
131
+ | **Agent Mail** | Gives each agent a real email address that it can read and send from. Adds the "digital employee" feel that closes deals. | Customer-facing agents, executive assistants, follow-up workflows. |
132
+ | **XMCP** | Twitter / X's official MCP. Brings community wisdom into the agent's context — recent threads, hot takes, real-time discourse. | Research-heavy workflows, content / community / sales squads. |
133
+
134
+ These pair naturally with the existing `Firecrawl` (deep scrape),
135
+ `Context7` (official docs), and `Perplexity` (real-time web). The
136
+ `/arka research` skill fans out across all five.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkaos",
3
- "version": "2.25.0",
3
+ "version": "2.28.0",
4
4
  "description": "The Operating System for AI Agent Teams",
5
5
  "type": "module",
6
6
  "bin": {
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "arkaos-core"
3
- version = "2.25.0"
3
+ version = "2.28.0"
4
4
  description = "Core engine for ArkaOS — The Operating System for AI Agent Teams"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}