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.
- package/VERSION +1 -1
- package/arka/skills/bootstrap-agent/SKILL.md +76 -0
- package/arka/skills/design-ops/SKILL.md +68 -0
- package/arka/skills/design-ops/scripts/extract-colors.py +86 -0
- package/arka/skills/design-ops/scripts/shadcn-tokens.py +59 -0
- package/arka/skills/design-ops/scripts/wcag-contrast.py +92 -0
- package/arka/skills/research/SKILL.md +117 -0
- package/config/constitution.yaml +4 -0
- package/config/hooks/post-tool-use.sh +17 -0
- package/config/hooks/user-prompt-submit.sh +16 -0
- package/core/agents/__pycache__/loader.cpython-313.pyc +0 -0
- package/core/agents/__pycache__/schema.cpython-313.pyc +0 -0
- package/core/agents/loader.py +4 -1
- package/core/agents/schema.py +29 -0
- package/core/cognition/__pycache__/retrieval.cpython-313.pyc +0 -0
- package/core/cognition/capture/__pycache__/collector.cpython-313.pyc +0 -0
- package/core/cognition/retrieval.py +383 -0
- package/core/cognition/scheduler/__pycache__/daemon.cpython-313.pyc +0 -0
- package/core/obsidian/__pycache__/writer.cpython-313.pyc +0 -0
- package/core/runtime/__pycache__/path_resolver.cpython-313.pyc +0 -0
- package/departments/brand/agents/design-ops/design-ops-lead.yaml +78 -0
- package/departments/brand/agents/design-ops/extraction-script-writer.yaml +74 -0
- package/departments/brand/agents/design-ops/shadcn-padronizer.yaml +76 -0
- package/departments/brand/agents/design-ops/wcag-auditor.yaml +76 -0
- package/departments/dev/skills/mcp/SKILL.md +16 -0
- package/package.json +1 -1
- 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