Skip to content

Latest commit

 

History

History
145 lines (101 loc) · 4.92 KB

File metadata and controls

145 lines (101 loc) · 4.92 KB

CodeCora Skill Suites

AI agent skill suites for Uteke, Cora Code, Covecto, and more.

Clone a skill, drop it in your Hermes skills folder, done.

Suites

Product Skills

Suite Description
uteke Offline-first semantic memory engine, persistent, searchable AI memory with ~30ms recall
uteke-coordination Room-based inter-agent coordination, shared memory rooms for multi-agent task routing, alerts, discussions
cora-code Code intelligence platform, symbol extraction, hybrid search, brain mode (BYOK)
covecto Raster-to-SVG vectorization, convert bitmap images to clean vector graphics in Rust
titen Self-hosted Threads API manager, post scheduling, multi-account management, analytics, MCP server

Workflow Skills

Suite Description
humanizer Remove AI-generated writing patterns from text, 30+ detection rules
copywriting Copywriting frameworks and persuasion principles for natural text
hybrid-memory SQLite + Uteke hybrid memory with 4-tier lifecycle and frequency-based promotion

Plugins

Plugin Description
uteke-tool Hermes agent plugin for Uteke API, remember, recall, rooms, documents, tags

Prerequisites

Product skills require their respective binary installed. Download from GitHub Releases:

Product Latest Download
Uteke v0.11.0 Releases (Linux, macOS, Windows)
Cora Code v0.12.0 Releases (Linux, macOS, Windows)
Covecto v0.1.1 Releases (Linux, macOS, Windows)

Each release ships binaries for x86_64 and aarch64 on Linux/macOS, plus x86_64 on Windows.

Quick Install (Linux/macOS)

# Uteke
curl -fsSL https://github.com/codecoradev/uteke/releases/latest/download/uteke-x86_64-unknown-linux-gnu.tar.gz | tar xz

# Cora Code
curl -fsSL https://github.com/codecoradev/cora-code/releases/latest/download/cora-x86_64-unknown-linux-gnu.tar.gz | tar xz

# Covecto
curl -fsSL https://github.com/codecoradev/covecto/releases/latest/download/covecto-x86_64-unknown-linux-gnu.tar.gz | tar xz

Workflow skills (humanizer, copywriting, hybrid-memory) have no external dependencies.

Installation

# Clone the repo
git clone https://github.com/codecoradev/skill-suites.git

# Copy desired skill to your Hermes skills directory
cp -r skill-suites/src/uteke ~/.hermes/skills/
cp -r skill-suites/src/cora-code ~/.hermes/skills/
cp -r skill-suites/src/covecto ~/.hermes/skills/
cp -r skill-suites/src/titen ~/.hermes/skills/
cp -r skill-suites/src/humanizer ~/.hermes/skills/creative/
cp -r skill-suites/src/copywriting ~/.hermes/skills/

Plugin (uteke-tool)

# Copy plugin to your Hermes plugins directory
cp -r skill-suites/plugins/uteke-tool ~/.hermes/plugins/

# Configure environment variables
export UTEKE_BASE_URL=http://localhost:8767  # Your Uteke server URL
export UTEKE_TOKEN=your-token-here            # Your auth token
export UTEKE_NAMESPACE=default                # Your namespace

# Restart your Hermes gateway to load the plugin

Usage

Uteke (Semantic Memory)

uteke remember "Deployed v2.1 to staging" --tags deploy,staging --type decision
uteke recall "when did we deploy?" --namespace default

Cora Code (Code Intelligence)

cora init /path/to/project
cora index
cora search "authentication middleware"

Covecto (Image Vectorization)

covecto input.png -o output.svg
covecto input.jpeg --format svg --quality high

Configuration

Uteke

Env Var Default Description
UTEKE_BASE_URL http://localhost:8767 Uteke server URL
UTEKE_TOKEN (none) Bearer token for authentication
UTEKE_NAMESPACE default Default namespace for operations

Cora Code

Cora Code uses BYOK (Bring Your Own Key) model:

export CORA_LLM_PROVIDER=openai  # or anthropic, ollama
export CORA_LLM_API_KEY=your-key

Contributing

See CONTRIBUTING.md for branch strategy, validation checklist, and PR process.

Products

  • Uteke — Offline-first semantic memory engine
  • Cora Code — Code intelligence platform
  • Titen — Self-hosted Threads API manager
  • Covecto — Dual-engine image-to-SVG vectorization (Rust)

By CodeCoraDev