rel-ai-workflow

rel-ai-workflow is a skill for Codex from Kyne0328/rel-ai-local-coding-agent. It costs 56 tokens per session (943 once invoked), scanned A, original, Apache-2.0.

A workflow skill for using Rel.AI to inspect, change, test, build, debug, validate, review, or publish a configured repository. It keeps one work session open for a repository objective and adapts the next steps to the runtime's guidance.

In plain words
What is it for?
Use it for documentation changes, bug fixes, features, investigations, and other repository work carried out through Rel.AI.
Why use it?
It gives repository tasks a controlled work session, avoids redundant actions, and matches checks and review to the kind of work being done.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it for documentation changes, bug fixes, features, investigations, and other repository work carried out through Rel.AI.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kyne0328/rel-ai-local-coding-agent/rel-ai-workflow
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Kyne0328/rel-ai-local-coding-agent --skill rel-ai-workflow
Clone the repo
git clone --depth 1 https://github.com/Kyne0328/rel-ai-local-coding-agent

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for rel-ai-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/kyne0328/rel-ai-local-coding-agent/rel-ai-workflow/github.svg)](https://agentmods.dev/skills/kyne0328/rel-ai-local-coding-agent/rel-ai-workflow)
Your own site
<a href="https://agentmods.dev/skills/kyne0328/rel-ai-local-coding-agent/rel-ai-workflow"><img src="https://agentmods.dev/badge/skills/kyne0328/rel-ai-local-coding-agent/rel-ai-workflow/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for rel-ai-workflow

Your own site · 80×15
<a href="https://agentmods.dev/skills/kyne0328/rel-ai-local-coding-agent/rel-ai-workflow"><img src="https://agentmods.dev/badge/skills/kyne0328/rel-ai-local-coding-agent/rel-ai-workflow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 943 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 43
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00056 $0.00943
Opus 5 $0.00028 $0.00472
Sonnet 5 $0.00011 $0.00189
Haiku 4.5 $0.00006 $0.00094

Measured 9d ago against content hash 6d3d5d52e702, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

rel-ai-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/rel-ai-workflow/SKILL.md · 52 lines

How it starts

The opening of the file, as written. The whole thing — 52 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Rel.AI Workflow

This is the routing skill and the only work-session owner for a repository objective. Open one work_id and keep using it until that objective is completed or explicitly cancelled. Specialized Rel.AI skills reuse the same work session.

Runtime-calibrated workflow

Call relai_work with action: "begin" exactly once. After each successful work-scoped call, treat workflow.recommendedActions as the runtime-calibrated default for what is useful next and workflow.avoidActions as a guard against redundant or over-broad work. Hard runtime errors, authorization, containment, task integrity, and completion gates remain authoritative.

Do not mechanically execute every possible stage. Choose the shortest sufficient path that proves the user's objective:

  • Documentation: begin -> targeted read -> edit -> task-owned review if useful -> finish.
  • Bugfix: begin -> reproduce/inspect -> coherent fix -> directly affected check -> task-owned review -> finish.
  • Feature: begin -> inspect/design only as needed -> implement coherent slice -> risk-matched checks -> review -> finish.
  • Investigation: begin -> search/inspect -> targeted evidence -> report/finish; do not edit unless implementation is requested.
  • Release: begin -> inspect release boundary -> focused regression proof -> release-required checks/build/package gates -> review -> finish.

If fresh evidence already proves a recommendation, use the next distinct recommendation instead of repeating the same read, check, review, or process start.

Route only when needed

  • Simple localized change with a clear implementation path: stay in this workflow.
  • Non-trivial feature, refactor, migration, or dependent multi-stage work: use rel-ai-planning.
  • Architecture audit, feasibility study, dependency tracing, or evidence question: use rel-ai-investigation.
  • Reproducible error, crash, broken test, regression, or contract failure: use rel-ai-debugging.
  • Persistent service, watcher, preview runtime, or interactive CLI: use rel-ai-dev-process.
  • Completion proof, release readiness, or explicit final verification: use rel-ai-verification.

Read the full file on GitHub · 52 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 52 lines · 56 tokens per session scan A 6d3d5d52e702

Subscribe to this mod's changes

rel-ai-workflow is a skill published in the GitHub repository Kyne0328/rel-ai-local-coding-agent (19 stars, last pushed 5d ago), licensed Apache-2.0. It adds 56 tokens to every session and 943 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

codexless-browser-repair

Diagnose and temporarily repair Codexless Browser compatibility after a Codex, Chrome Skill, or Browser runtime update when Codexless Browser stopped working. Use for current-version Codexless Browser compatibility drift, not ordinary website bugs, general Browser operation, Codexless install/update work, or long-term…

liyana31811/Codexless · 70 tokens

install-shellby-mcp

Install and verify Shellby MCP on a Mac using terminal access only. Use when a user asks an agent to install, set up, configure, or finish a new Shellby MCP installation from this repository.

serbyte-development/shellby-mcp · 47 tokens

trueline-workflow

Use when editing, reading, searching, or exploring files with trueline MCP tools (truelineread, truelineedit, truelinesearch, truelineoutline, truelineverify, truelinechanges). Covers when to pick trueline over built-in Read/Edit/Grep, ref reuse, hash-verified edits, search-then-edit, insertafter semantics, workflows…

rjkaes/trueline-mcp · 95 tokens

spec-governance

A governance skill for managing the lifecycle of specifications: recording intent, routing records, and checking specification changes.

devcodex-labs/devcodex · 42 tokens

audit-common

A shared baseline audit check covering dimensions named G0G5 and a profile-freshness check. The available description does not explain what those dimensions measure.

devcodex-labs/devcodex · 32 tokens

cp-gate

A checkpoint workflow for confirming requirements, the proposed solution, and the implementation plan. It uses CP1, CP2, and CP3 in a defined order, with the third checkpoint depending on the type of work.

devcodex-labs/devcodex · 49 tokens