An open API service indexing awesome lists of open source software.

https://github.com/epicsagas/epiccounty.com

Organization website for epicsagas — open-source Rust CLI tools for AI agent orchestration
https://github.com/epicsagas/epiccounty.com

firebase portfolio sveltekit typescript website

Last synced: 7 days ago
JSON representation

Organization website for epicsagas — open-source Rust CLI tools for AI agent orchestration

Awesome Lists containing this project

README

          

epiccounty

One command to install, update, and manage the entire epiccounty ecosystem.


Stars
Forks
Issues
Last commit



License
Version
Rust
Buy Me a Coffee

---

## Install

**macOS / Linux**

```bash
curl -fsSL https://github.com/epicsagas/epiccounty.com/releases/latest/download/epiccounty-installer.sh | sh
```

**Windows**

```powershell
irm https://github.com/epicsagas/epiccounty.com/releases/latest/download/epiccounty-installer.ps1 | iex
```

**Or install the CLI first**

```bash
cargo install --git https://github.com/epicsagas/epiccounty.com
epiccounty install all
```

## Usage

```bash
# Install all tools
epiccounty install all

# Install a specific tool
epiccounty install alcove

# Check what's installed and what's outdated
epiccounty status

# Update everything
epiccounty update
```

## Ecosystem

```mermaid
graph TD
CLI[epiccounty
installer] -->|installs| H[epic-harness
harness]
CLI -->|installs| A[alcove
docs]
CLI -->|installs| C[claudy
router]
CLI -->|installs| E[Episteme
knowledge]
CLI -->|installs| T[llm-transpile
transpiler]
CLI -->|installs| OF[obsidian-forge
vault]

H -->|uses| T
H -->|uses| A
E -->|integrates via| A
OF -->|writes vaults for| A
```

## Tools

### Platforms

| Tool | Description |
|------|-------------|
| [**epic-harness**](https://github.com/epicsagas/epic-harness) | Self-evolving AI agent harness for Claude Code. Replaces 30+ commands with 6, auto-triggers skills based on context, and evolves new skills from your failure patterns. |
| [**alcove**](https://github.com/epicsagas/alcove) | Private doc server with MCP tools. Stores authoritative docs, architecture decisions, and conventions so your AI agent always has the right project context. |
| [**Episteme**](https://github.com/epicsagas/Episteme) | Offline-first software engineering knowledge graph. Connects design patterns, refactoring techniques, and software laws through semantic relationships. Built for AI agents via MCP. |

### CLI Tools

| Tool | Description |
|------|-------------|
| [**claudy**](https://github.com/epicsagas/claudy) | Multi-provider AI launcher. Switch between Anthropic, Z.AI, OpenRouter, Ollama, and custom endpoints with a single command. Config isolation, usage analytics. |
| [**obsidian-forge**](https://github.com/epicsagas/obsidian-forge) | Obsidian vault automation. Generates notes, strengthens knowledge graphs, runs as a background daemon. Zero config to start. |

### Libraries

| Tool | Description |
|------|-------------|
| [**llm-transpile**](https://github.com/epicsagas/llm-transpile) | Token-optimized document transpiler. Converts Markdown, HTML, plain text into structured bridge format with adaptive compression that keeps you under token budget. Used as a PostToolUse hook by epic-harness. |

## Architecture

```
epiccounty.com/
├── src/ # SvelteKit website (deployed to Firebase)
├── static/ # install.sh, install.ps1
└── cli/ # Rust CLI (this repo)
├── bin/ # epiccounty binary
└── core/ # library (registry, installer, github, cache, path)
```

## Development

```bash
# Build CLI
cd cli && cargo build --release

# Install locally
cd cli && cargo install --path bin

# Run website dev server
npm install && npm run dev
```

## License

[Apache-2.0](LICENSE)