- Replace fj CLI with tea CLI across all commands - Create new gitea skill, remove forgejo skill - Update all agents to use gitea skill - Update commands to use skill-based approach (reference skills instead of embedding CLI commands) - Update all documentation (README, ARCHITECTURE, VISION, writing guides) - Swap git remotes: origin now points to git.flowmade.one (Gitea) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
52 lines
1.4 KiB
Markdown
52 lines
1.4 KiB
Markdown
# Claude Code AI Workflow
|
|
|
|
This repository contains configurations, prompts, and tools to improve the Claude Code AI workflow.
|
|
|
|
## Setup
|
|
|
|
```bash
|
|
# Clone and install symlinks
|
|
git clone ssh://git@code.flowmade.one/flowmade-one/ai.git
|
|
cd ai
|
|
make install
|
|
```
|
|
|
|
## Project Structure
|
|
|
|
```
|
|
ai/
|
|
├── commands/ # Slash commands (/work-issue, /dashboard)
|
|
├── skills/ # Auto-triggered capabilities
|
|
├── agents/ # Subagents with isolated context
|
|
├── scripts/ # Hook scripts (pre-commit, token loading)
|
|
├── settings.json # Claude Code settings
|
|
└── Makefile # Install/uninstall symlinks
|
|
```
|
|
|
|
All files symlink to `~/.claude/` via `make install`.
|
|
|
|
## Gitea Integration
|
|
|
|
Uses `tea` CLI for issue/PR management:
|
|
|
|
```bash
|
|
# Setup (one-time)
|
|
brew install tea
|
|
tea logins add --name flowmade --url https://git.flowmade.one --token <your-token>
|
|
|
|
# Create token at: https://git.flowmade.one/user/settings/applications
|
|
```
|
|
|
|
### Available Commands
|
|
|
|
| Command | Description |
|
|
|---------|-------------|
|
|
| `/work-issue <n>` | Fetch issue, create branch, implement, create PR |
|
|
| `/dashboard` | Show open issues and PRs |
|
|
| `/review-pr <n>` | Review PR with diff and comments |
|
|
| `/create-issue` | Create single or batch issues |
|
|
|
|
## Usage
|
|
|
|
This project is meant to be used alongside Claude Code to enhance productivity and maintain consistent workflows.
|