go-agent/claude/agentic
Snider 61e01bfdf1 feat: initial go-agent — agentci + jobrunner + plugins marketplace
Consolidates three codebases into a single agent orchestration repo:

- agentci (from go-scm): Clotho dual-run verification, agent config,
  SSH security (sanitisation, secure commands, token masking)
- jobrunner (from go-scm): Poll-dispatch-report pipeline with 7 handlers
  (dispatch, completion, auto-merge, publish draft, dismiss reviews,
  send fix command, tick parent epic)
- plugins marketplace (from agentic/plugins): 27 Claude/Codex/Gemini
  plugins with shared MCP server

All 150+ tests passing across 6 packages.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-02-21 15:47:19 +00:00
..
.claude-plugin feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00
agents feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00
commands feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00
hooks feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00
patterns feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00
scripts feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00
skills feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00
tests feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00
.mcp.json feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00
FORGE_SETUP.md feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00
marketplace.yaml feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00
README.md feat: initial go-agent — agentci + jobrunner + plugins marketplace 2026-02-21 15:47:19 +00:00

Agentic Flows Plugin

Agentic development pipeline for host-uk repos - issue orchestration, epic management, PR automation.

Skills Included

Skill Description
flow-issue-orchestrator Orchestrate issue resolution across repos
flow-create-epic Create and structure epic issues
flow-issue-epic Manage PR lifecycle within epics
flow-audit-issues Audit and clean up stale issues
flow-gather-training-data Collect training data from resolved issues
flow-pr-resolve Manual resolution for stuck/conflicting PRs
flow-qa-epic Quality assurance before closing epics

Installation

  1. Add the Forgejo marketplace to your Claude Code config:
# Edit ~/.claude/settings.json
{
  "pluginSources": {
    "host-uk": {
      "type": "git",
      "url": "https://forge.lthn.ai/agentic/plugins.git"
    }
  }
}
  1. Install the plugin:
claude plugins install agentic-flows
  1. Updates will be checked automatically (daily by default).

Manual Installation

# Clone to your plugins directory
git clone https://forge.lthn.ai/agentic/plugins.git \
  ~/.claude/plugins/agentic-flows

Configuration

The plugin uses the standard core CLI config at ~/.core/config.yaml:

forgejo:
  url: https://forge.lthn.ai
  token: your-api-token

github:
  # Uses gh CLI authentication

Usage

Skills are automatically available in Claude Code sessions. Invoke them by name or let Claude suggest them based on context:

User: I need to close epic #123, are there any issues?
Claude: I'll use the flow-qa-epic skill to validate before closing...

Development

Adding a New Skill

  1. Create a directory under skills/:

    skills/flow-your-skill/SKILL.md
    
  2. Add the skill to .claude-plugin/plugin.json:

    "skills": [..., "flow-your-skill"]
    
  3. Commit and tag a new version:

    git add -A
    git commit -m "feat: add flow-your-skill"
    git tag v0.2.0
    git push origin main --tags
    

Testing Locally

# Symlink to your local plugins directory
ln -s $(pwd) ~/.claude/plugins/agentic-flows

# Restart Claude Code to pick up changes

Changelog

See CHANGELOG.md for version history.

License

MIT - see LICENSE file.