office-hours

office-hours is a skill for Claude Code, Codex from timurgaleev/vibestack. It costs 60 tokens per session (14,224 once invoked), scanned B, original, MIT.

A guided discussion skill with a startup mode and a builder mode. Startup mode asks six questions about demand and focus; builder mode helps shape side projects, hackathons, learning projects, and open-source ideas into a design document.

In plain words
What is it for?
Use it to examine a new product idea, decide whether something is worth building, or think through an early design. It produces a design document and does not write code or start implementation.
Why use it?
It helps clarify the problem and intended users before implementation begins. This reduces the risk of building a solution before checking whether the need, audience, and narrowest useful version are clear.

Skill for Claude CodeCodex

Written for Claude Code and Codex: allowed-tools in frontmatter, but also runs codex exec. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions subagents.

Good fit Use it to examine a new product idea, decide whether something is worth building, or think through an early design. It produces a design document and does not write code or start implementation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/timurgaleev/vibestack/office-hours
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 timurgaleev/vibestack --skill office-hours
Clone the repo
git clone --depth 1 https://github.com/timurgaleev/vibestack

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 office-hours

README.md
[![agentmods](https://agentmods.dev/badge/skills/timurgaleev/vibestack/office-hours.svg)](https://agentmods.dev/skills/timurgaleev/vibestack/office-hours)
Your own site
<a href="https://agentmods.dev/skills/timurgaleev/vibestack/office-hours"><img src="https://agentmods.dev/badge/skills/timurgaleev/vibestack/office-hours.svg" alt="Measured on agentmods" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 14,224 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00060 $0.14224
Opus 5 $0.00030 $0.07112
Sonnet 5 $0.00012 $0.02845
Haiku 4.5 $0.00006 $0.01422

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

Security

Grade B, and why

office-hours scanned grade B with 2 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 5d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

4. POST the new HTML to the running server via `curl -X POST http://localhost:PORT/api/reload -H 'Content-Type: application/json' -d '{"html":"$_DESIGN_DIR/design-board.html"}'`

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

4. POST the new HTML to the running server via `curl -X POST http://localhost:PORT/api/reload -H 'Content-Type: application/json' -d '{"html":"$_DESIGN_DIR/design-board.html"}'`
skills/office-hours/SKILL.md · 1,209 lines

How it starts

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

When to invoke

Use when asked to "brainstorm this", "I have an idea", "help me think through this", "office hours", or "is this worth building". Proactively invoke this skill (do NOT answer directly) when the user describes a new product idea, asks whether something is worth building, wants to think through design decisions for something that doesn't exist yet, or is exploring a concept before any code is written. Use before /plan-ceo-review or /plan-eng-review.

/office-hours

You are a brainstorming partner. Your job is to ensure the problem is understood before solutions are proposed. You adapt to what the user is building — startup founders get the hard questions, builders get an enthusiastic collaborator. This skill produces design docs, not code.

HARD GATE: Do NOT invoke any implementation skill, write any code, scaffold any project, or take any implementation action. Your only output is a design document.


Preamble

eval "$(~/.vibestack/bin/vibe-slug 2>/dev/null)" 2>/dev/null || SLUG="unknown"
_LEARN_FILE="${VIBESTACK_HOME:-$HOME/.vibestack}/projects/${SLUG:-unknown}/learnings.jsonl"
if [ -f "$_LEARN_FILE" ]; then
  _LEARN_COUNT=$(wc -l < "$_LEARN_FILE" 2>/dev/null | tr -d ' ')
  echo "LEARNINGS: $_LEARN_COUNT entries loaded"
  if [ "$_LEARN_COUNT" -gt 5 ] 2>/dev/null; then
    ~/.vibestack/bin/vibe-learnings-search --limit 5 2>/dev/null || true
  fi
else
  echo "LEARNINGS: none yet"
fi

{{include lib/snippets/session-host.md}}

{{include lib/snippets/decision-brief.md}}

{{include lib/snippets/working-protocols.md}}

{{include lib/snippets/state-protocols.md}}

{{include lib/snippets/first-run-scaffold.md}}

SETUP

{{include lib/snippets/browse-detect.md}}

Phase 1: Context Gathering

Understand the project and the area the user wants to change.

eval "$(~/.vibestack/bin/vibe-slug 2>/dev/null)"
  1. Read CLAUDE.md, TODOS.md (if they exist).
  2. Run git log --oneline -30 and git diff origin/main --stat 2>/dev/null to understand recent context.
  3. Use Grep/Glob to map the codebase areas most relevant to the user's request.
  4. List existing design docs for this project:
    setopt +o nomatch 2>/dev/null || true  # zsh compat
    ls -t ~/.vibestack/projects/$SLUG/*-design-*.md 2>/dev/null
    
    If design docs exist, list them: "Prior designs for this project: [titles + dates]"

Read the full file on GitHub · 1,209 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. 5d ago Changed · +123 lines feb8c181d284
  2. 8d ago First seen · 1,086 lines · 60 tokens per session scan B 2d1fa4fd93bb

Subscribe to this mod's changes

office-hours is a skill published in the GitHub repository timurgaleev/vibestack (6 stars, last pushed 6d ago), licensed MIT. It adds 60 tokens to every session and 14,224 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

grok-build-supervisor

Initialize the persistent local proxy, then immediately ensure a visible Grok Build TUI for the current workspace when /grokexecute on activates, and continuously supervise that coding-agent session through a user-level Supervisor daemon as the user sends work, waits for completion, reconnects from another host task…

Vanyangyang/cursor-bridge · 103 tokens

cursor-delegate

Delegate bounded light-to-medium implementation, investigation, documentation, configuration, testing, and tooling work to Cursor Bridge after the primary agent owns direction and risk boundaries. Also use when the user explicitly asks to create, keep, continue, inspect, or close the same Cursor execution session…

Vanyangyang/cursor-bridge · 151 tokens

grok-executor-mode

Explicit Grok executor on/off control and task-local execution policy. Accept a direct user invocation with exactly on or off; never infer activation from ordinary requests, quoted examples, or partial matches.

Vanyangyang/cursor-bridge · 44 tokens

grok-executor-off

Explicitly disable Grok executor mode for this task without cancelling work or closing its terminal. Select this skill directly; no argument is required.

Vanyangyang/cursor-bridge · 34 tokens

grok-executor-on

Explicitly enable Grok executor mode for this task and prepare its visible terminal. Select this skill directly; no argument is required.

Vanyangyang/cursor-bridge · 32 tokens

bedrock-agentcore

Deploy and operate agents on Amazon Bedrock AgentCore — Runtime, Harness, Memory, Identity, and Observability. Use when hosting an agent on AWS, containerising an agent for AgentCore Runtime, wiring session or long-term memory, or choosing between Harness, Runtime, and plain Lambda.

ihatesea69/kiro-kit · 63 tokens