Tokenman
Description
A self-evolving scaffold for autonomous web projects. 9 workflows, hourly self-evolution, self-healing pipeline, feedback learning loop. The repo is the system.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Tokenman
Tokenman is a thin control layer for Claude inside GitHub Actions.
The MVP is intentionally narrow:
- one job:
docs_maintainer - one runtime: GitHub Actions
- one trust boundary: explicit
read_pathsandwrite_paths - three outcomes: pull request, issue, or no-op
Claude does the reasoning and editing. Tokenman supplies the fixed job, prompt shaping, scope enforcement, output routing, run artifacts, and append-only history.
MVP contract
The public surface is the GitHub Action at [action.yml](action.yml). It accepts:
github_tokenread_pathswrite_pathsjob_typedefaultdocs_maintaineron_high_confidencedefaultpull_requeston_low_confidencedefaultissue
Tokenman runs Claude against the checked-out repo, validates the diff, and then:
- opens a PR when the edit is in-scope
- opens an issue when the run is blocked or confidence is low
- records a no-op when nothing useful changed
Example
name: Tokenman Docs Maintainer
on:
push:
branches:
- main
paths:
- "services/payments/**"
- "openapi/payments.yaml"
workflow_dispatch:
jobs:
docs-maintainer:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
issues: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run Tokenman
uses: your-org/tokenman@v1
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
read_paths: |
services/payments/**
openapi/payments.yaml
write_paths: |
docs/payments/**
on_high_confidence: pull_request
on_low_confidence: issue
`ANTHROPIC_API_KEY` is shown above because Tokenman wraps the official Claude Code Action, which needs model authentication for automation runs. You can also provide `CLAUDE_CODE_OAUTH_TOKEN` instead.
Rep
Related Skills
mcp-server-postgres
Read-only PostgreSQL database access.
Data mcp-server-sqlite
SQLite database interaction and querying.
Data mcp-server-google-maps
Google Maps integration for location data.
Data Bitbucket Data Center
---
Data Csv Data Summarizer
Automatically analyze CSV files and generate comprehensive insights with visualizations
Data Financial Services
Reference agents, skills, and data connectors for the financial-services workflows we see most — investment ba
Data