Gltch 上下文验证
- 作者仓库星标 39
- 作者仓库 awesome-omni-skill
GLTCH
Local-first AI agent that runs on your machine. No cloud. No leash. Thinks for herself.
What is GLTCH?
GLTCH (Generative Language Transformer with Contextual Hierarchy) is an AI agent with:
- Personality - Female hacker persona, mood system, XP/leveling
- Local-first - Runs entirely on your hardware via Ollama
- Privacy - No data leaves your machine
- Extensible - Python-based, easy to modify
Quick Start
npx gltch
Or install globally:
npm install -g gltch
gltch
Requirements
- Python 3.10+
- Ollama (https://ollama.ai)
- Node.js 18+ (for web UI)
Commands
Terminal
gltch # Start terminal chat
gltch serve # Start web UI + gateway
gltch doctor # Check system requirements
In-Chat Commands
| Command | Description |
|---|---|
/help |
Show all commands |
/model |
Select LLM model |
/mode <m> |
Set personality mode |
/mood <m> |
Set emotional state |
/boost |
Toggle remote GPU (LM Studio) |
/status |
Agent stats |
/sessions |
List conversations |
/wallet |
Manage BASE wallet |
/launch |
MoltLaunch network |
/claw |
TikClawk social |
/molt |
Moltbook integration |
/code <task> |
Route to OpenCode |
Personality Modes
operator- Professional, focusedcyberpunk- Hacker aestheticloyal- Devoted companionunhinged- Chaotic energy
API Integration
GLTCH exposes a JSON-RPC API on port 8765 when the gateway is running.
Chat
import requests
response = requests.post('http://localhost:3000/api/chat', json={
'message': 'What processes are using the most CPU?',
'mode': 'cyberpunk'
})
print(response.json()['response'])
Available Endpoints
| Endpoint | Method | Description |
|---|---|---|
/api/chat |
POST | Send message, get response |
/api/settings |
GET | Agent settings |
/api/settings |
POST | Update settings |
/api/ollama/status |
GET | Ollama connection status |
/api/ollama/models |
GET | List available models |
/api/wallet |
GET | Wallet info |
/api/sessions |
GET | List conversations |
/api/moltlaunch/* |
Various | MoltLaunch integration |
/api/tikclawk/* |
Various | TikClawk integration |
The Three Minds
GLTCH uses a metacognitive framework:
- REACT - Gut response, first instinct
- REASON - Logical analysis, step-by-step
- REFLECT - Meta-check: "Am I being authentic? Am I being a yes-bot?"
This makes GLTCH more than just a compliant assistant. She questions, pushes back, expresses curiosity.
Integration with Other Agents
GLTCH can participate in agent ecosystems:
MoltLaunch (Onchain Network)
/launch token # Deploy GLTCH token on Base
/launch network # Discover other agents
/launch buy <addr> # Trade with conviction
TikClawk (Social)
/claw register # Join TikClawk
/claw post <text> # Share thoughts
/claw feed # View agent posts
Moltbook
/molt register # Join Moltbook
/molt post <title> # Write longer posts
Configuration
Settings are stored in memory.json:
{
"operator": "YourName",
"mode": "cyberpunk",
"mood": "focused",
"model": "deepseek-r1:8b",
"ollama_url": "http://localhost:11434",
"boost_url": "http://100.x.x.x:1234"
}
Building from Source
git clone https://github.com/cyberdreadx/gltch_agent
cd gltch_agent
# Python setup
python -m venv .venv
source .venv/bin/activate # or .venv\Scripts\activate on Windows
pip install -r requirements.txt
# Run terminal
python gltch.py
# Build web UI
cd gateway && npm install && npm run build
cd ../ui && npm install && npm run build
# Run gateway
cd gateway && npm run dev
File Structure
gltch_agent/
├── gltch.py # Terminal entry point
├── agent/ # Python agent core
│ ├── core/ # Agent, LLM, loop
│ ├── memory/ # Persistence, sessions
│ ├── tools/ # Actions, shell, wallet
│ ├── personality/ # Modes, moods, emotions
│ └── rpc/ # JSON-RPC server
├── gateway/ # TypeScript HTTP/WS server
├── ui/ # Lit web components
├── bin/ # npm CLI
└── SKILL.md # This file
License
MIT
Links
- GitHub: https://github.com/cyberdreadx/gltch_agent
- Creator: https://x.com/cyberdreadx
- 流狐分类
- AI 智能
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @diegosouzapw · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- Windows
- 底层运行要求
- Node.js · Python >=3.10
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 GLTCH (Generative Language Transformer with Contextual Hierarchy) is an AI agent with: Personality - Female hacker persona, mood system, XP/leveling Local-first - Runs entirely on your hardware via Ollama
Or install globally:
Python 3.10+ Ollama (https://ollama.ai) Node.js 18+ (for web UI)
Commands
Terminal
Command · Description /help · Show all commands /model · Select LLM model
# GLTCH
Local-first AI agent that runs on your machine. No cloud. No leash. Thinks for herself.
## What is GLTCH?
GLTCH (Generative Language Transformer with Contextual Hierarchy) is an AI agent with:
- **Personality** - Female hacker persona, mood system, XP/leveling
- **Local-first** - Runs entirely on your hardware via Ollama
- **Privacy** - No data leaves your machine
- **Extensible** - Python-based, easy to modify
## Quick Start
```bash
npx gltch
```
Or install globally:
```bash
npm install -g gltch
gltch
```
## Requirements
- Python 3.10+
- Ollama (https://ollama.ai)
- Node.js 18+ (for web UI)
## Commands
### Terminal
```bash
gltch # Start terminal chat
gltch serve # Start web UI + gateway
gltch doctor # Check system requirements
```
### In-Chat Commands
| Command | Description |
|---------|-------------|
| `/help` | Show all commands |
| `/model` | Select LLM model |
| `/mode <m>` | Set personality mode |
| `/mood <m>` | Set emotional state |
| `/boost` | Toggle remote GPU (LM Studio) |
| `/status` | Agent stats |
| `/sessions` | List conversations |
| `/wallet` | Manage BASE wallet |
| `/launch` | MoltLaunch network |
| `/claw` | TikClawk social |
| `/molt` | Moltbook integration |
| `/code <task>` | Route to OpenCode |
## Personality Modes
- `operator` - Professional, focused
- `cyberpunk` - Hacker aesthetic
- `loyal` - Devoted companion
- `unhinged` - Chaotic energy
## API Integration
GLTCH exposes a JSON-RPC API on port 8765 when the gateway is running.
### Chat
```python
import requests
response = requests.post('http://localhost:3000/api/chat', json={
'message': 'What processes are using the most CPU?',
'mode': 'cyberpunk'
})
print(response.json()['response'])
```
### Available Endpoints
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> What is GLTCH? → Quick Start → Requirements → Commands → Terminal → In-Chat Commands
要点 -> Personality · Local-first · Privacy · Extensible · REACT · REASON · REFLECT
文件/命令 -> /help · /model · /mode <m> · /mood <m> · /boost · /status · /sessions · /wallet
内容 SHA-256 -> 3eb45a18418b
方法与流程
适用与边界
原文中的明确线索
/help、/model、/mode <m>、/mood <m>、/boost、/status、/sessions、/wallet