f1-test-drive

f1-test-drive is a skill for Claude Code, Codex from cyrusagents/cyrus. It costs 33 tokens per session (1,230 once invoked), scanned A, original, Apache-2.0.

A procedure for testing the Cyrus agent system from start to finish. It checks issue tracking, agent work sessions, server-side execution, and the activity shown to users.

In plain words
What is it for?
Use it to create a test repository and issue, start an agent session, verify the server, and inspect the resulting activities and output.
Why use it?
It helps reveal failures between connected parts of the system instead of checking each part in isolation.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; mentions Codex; mentions OpenCode.

Good fit Use it to create a test repository and issue, start an agent session, verify the server, and inspect the resulting activities and output.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cyrusagents/cyrus/f1-test-drive
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 cyrusagents/cyrus --skill f1-test-drive
Clone the repo
git clone --depth 1 https://github.com/cyrusagents/cyrus

Made for: Claude Code, 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 f1-test-drive

README.md
[![agentmods](https://agentmods.dev/badge/skills/cyrusagents/cyrus/f1-test-drive/github.svg)](https://agentmods.dev/skills/cyrusagents/cyrus/f1-test-drive)
Your own site
<a href="https://agentmods.dev/skills/cyrusagents/cyrus/f1-test-drive"><img src="https://agentmods.dev/badge/skills/cyrusagents/cyrus/f1-test-drive/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 f1-test-drive

Your own site · 80×15
<a href="https://agentmods.dev/skills/cyrusagents/cyrus/f1-test-drive"><img src="https://agentmods.dev/badge/skills/cyrusagents/cyrus/f1-test-drive.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,230 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
  • Socket pass 13 May 2026
  • Snyk pass 13 May 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
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.00033 $0.01230
Opus 5 $0.00016 $0.00615
Sonnet 5 $0.00007 $0.00246
Haiku 4.5 $0.00003 $0.00123

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

Security

Grade A, and why

f1-test-drive 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/f1-test-drive/SKILL.md · 185 lines

How it starts

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

F1 Test Drive

Run comprehensive F1 test drives that validate the full pipeline:

  • Issue-tracker behavior
  • EdgeWorker execution flow
  • Activity rendering/output quality

Mission

Execute test drives that verify:

  1. Issue-tracker correctness
  2. EdgeWorker worktree/session behavior
  3. Activity output visibility and formatting

Test Drive Protocol

Phase 1: Setup

  1. Create a fresh test repository (if needed):

    cd apps/f1
    ./f1 init-test-repo --path /tmp/f1-test-drive-<timestamp>
    
  2. Start F1 server:

    CYRUS_PORT=3600 CYRUS_REPO_PATH=/tmp/f1-test-drive-<timestamp> bun run apps/f1/server.ts &
    
  3. Verify server health:

    CYRUS_PORT=3600 ./f1 ping
    CYRUS_PORT=3600 ./f1 status
    

Phase 2: Issue-Tracker Verification

  1. Create test issue:

    CYRUS_PORT=3600 ./f1 create-issue \
      --title "<issue title>" \
      --description "<issue description>"
    
  2. Verify issue ID and issue creation response.

Phase 3: EdgeWorker Verification

  1. Start agent session:

    CYRUS_PORT=3600 ./f1 start-session --issue-id <issue-id>
    
  2. Monitor activities:

    CYRUS_PORT=3600 ./f1 view-session --session-id <session-id>
    
  3. Verify:

    • session started
    • activities appear
    • agent is processing issue

Phase 3.5: Slack Chat Session Verification (optional)

Use when validating the Slack → ChatSessionHandler → ClaudeRunner path. F1 exposes a test-only endpoint /cli/dispatch-chat that injects a synthetic app_mention event without going through Slack signature verification (SlackChatAdapter no-ops Slack API calls when slackBotToken is undefined).

  1. Dispatch a synthetic chat event:
    CYRUS_PORT=3600 ./f1 start-chat-session \
      --channel C_TEST_CHAN \
      --user U_TEST_USER \
      --text "hello"
    
    The response contains a threadKey of the form <channel>:<ts>. Reuse the same --thread-ts to address the same chat thread on subsequent dispatches.

Read the full file on GitHub · 185 lines

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 · 185 lines · 33 tokens per session scan A 3b1a7e01ece3

Subscribe to this mod's changes

f1-test-drive is a skill published in the GitHub repository cyrusagents/cyrus (798 stars, last pushed yesterday), licensed Apache-2.0. It adds 33 tokens to every session and 1,230 once invoked, about $0.0002 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

test-reporting

Run the Level 2 dummy agent integration test suite and produce a detailed HTML report with per-test input → outcome analysis.

aden-hive/hive · 0 tokens

develop-web-game

Use when Codex is building or iterating on a web game (HTML/JS) and needs a reliable development + testing loop: implement small changes, run a Playwright-based test script with short input bursts and intentional pauses, inspect screenshots/text, and review console errors with rendergametotext.

netease-youdao/LobsterAI · 64 tokens

langbot-testing

Test LangBot WebUI and core product flows with an automated browser and backend logs. Use when validating the configured LangBot frontend, pipeline Debug Chat, model provider setup and test buttons, bot and knowledge-base UI flows, or troubleshooting failed LangBot end-to-end tests.

langbot-app/LangBot · 58 tokens

pod-e2e

ONLY for developing Kiro Crew itself -- if the project you are working on is anything else, ignore this skill: it drives Kiro Crew's own pod tooling, which does not exist in another repository. Runs end-to-end tests (backend API + frontend Playwright) for a Kiro Crew feature worktree against an ISOLATED throwaway pod…

kirodotdev/KiroCrew · 147 tokens

mobile-automation

Control Android and iOS devices, emulators and simulators — launch apps, tap, swipe, type, take screenshots, read the accessibility tree. Use when a task involves a mobile device or app, mobile UI testing, or reproducing a bug on a phone.

mobile-next/mobile-mcp · 58 tokens

baguette

Drive iOS simulators programmatically via the baguette CLI — taps, swipes, multi-finger gestures, hardware buttons (Home / Lock / Volume / Action / Power), ASCII keyboard text, and frame capture, all without opening Xcode. Use when: (1) an agent needs to drive a booted iOS simulator from a script — tap a coordinate…

tddworks/baguette · 249 tokens