xiaohei-daily-query-vp

xiaohei-daily-query-vp is a skill for Codex from VectorPeak/vectorpeak-agent-skills. It costs 94 tokens per session (641 once invoked), scanned A, original, Apache-2.0.

A connector for a local Xiaohei Daily Assistant service, which stores work timelines, reports, activity by hour, and app-usage records.

In plain words
What is it for?
Retrieving daily work timelines, Markdown reports, hourly activity heat maps, and application-usage durations for chosen dates.
Why use it?
It lets an agent query those records using current service instructions instead of guessing how the local service works.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions Codex.

Good fit Retrieving daily work timelines, Markdown reports, hourly activity heat maps, and application-usage durations for chosen dates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vectorpeak/vectorpeak-agent-skills/xiaohei-daily-query-vp
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 VectorPeak/vectorpeak-agent-skills --skill xiaohei-daily-query-vp
Clone the repo
git clone --depth 1 https://github.com/VectorPeak/vectorpeak-agent-skills

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 xiaohei-daily-query-vp

README.md
[![agentmods](https://agentmods.dev/badge/skills/vectorpeak/vectorpeak-agent-skills/xiaohei-daily-query-vp/github.svg)](https://agentmods.dev/skills/vectorpeak/vectorpeak-agent-skills/xiaohei-daily-query-vp)
Your own site
<a href="https://agentmods.dev/skills/vectorpeak/vectorpeak-agent-skills/xiaohei-daily-query-vp"><img src="https://agentmods.dev/badge/skills/vectorpeak/vectorpeak-agent-skills/xiaohei-daily-query-vp/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 xiaohei-daily-query-vp

Your own site · 80×15
<a href="https://agentmods.dev/skills/vectorpeak/vectorpeak-agent-skills/xiaohei-daily-query-vp"><img src="https://agentmods.dev/badge/skills/vectorpeak/vectorpeak-agent-skills/xiaohei-daily-query-vp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 641 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.
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.00094 $0.00641
Opus 5 $0.00047 $0.00320
Sonnet 5 $0.00019 $0.00128
Haiku 4.5 $0.00009 $0.00064

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

Security

Grade A, and why

xiaohei-daily-query-vp 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/query_xiaohei.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

job-skills/xiaohei-daily-query-vp/SKILL.md · 66 lines

How it starts

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

Xiaohei Daily Query

Core Rule

Before every user request, fetch the latest API Markdown document from:

GET http://192.168.11.212:8088/

Do not rely on a memorized endpoint list. Read the live Markdown, parse the available endpoint paths, methods, parameters, request examples, and response shape, then choose the correct endpoint for the user's request.

Supported User Intents

Handle natural-language requests for:

  • Work timeline records for a date or date range.
  • Work reports for a date or date range, returned as Markdown content.
  • Hourly heat-map data for a date range.
  • App usage duration summaries for a date or date range.

If the user does not specify a date, omit startDate and endDate so the service uses its current default. For timeline, report, and app usage this normally means today; for heat-map this normally means the recent default window described in the live docs.

Use YYYY-MM-DD dates unless the user explicitly asks for a precise time range.

Use the bundled helper:

& "C:\Users\ZXY\.cache\codex-runtimes\codex-primary-runtime\dependencies\python\python.exe" `
  "C:\Users\ZXY\.codex\skills\xiaohei-daily-query-vp\scripts\query_xiaohei.py" `
  --intent report --start-date 2026-06-29 --end-date 2026-06-29

The script always fetches GET / first, extracts the live GET endpoints from the Markdown, maps the requested intent to the currently documented path, calls the selected endpoint, validates the unified JSON envelope, and prints a compact Markdown summary.

Intent values:

  • timeline
  • report
  • heat-map
  • app-usage

The script also accepts --query for lightweight natural-language intent detection:

& "<python>" "<skill>\scripts\query_xiaohei.py" --query "查一下今天应用使用时长"

Response Style

Summarize the returned data directly for the user:

  • For reports, preserve useful Markdown report content and mention report titles/date ranges.
  • For timelines, group records by time and category.
  • For heat maps, highlight focus minutes, active period, top category, and hourly distribution if relevant.
  • For app usage, convert seconds into readable hours/minutes and list apps in returned order.

Read the full file on GitHub · 66 lines

Files

What ships with it

2 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. 11d ago First seen · 66 lines · 94 tokens per session scan A c7192b150923

Subscribe to this mod's changes

xiaohei-daily-query-vp is a skill published in the GitHub repository VectorPeak/vectorpeak-agent-skills (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 94 tokens to every session and 641 once invoked, about $0.0005 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-31.

Related

Other skills, from other repositories

backfill

Reconstruct an OKF bundle by event-sourcing a repository's history (git log and Claude session transcripts). Use when creating an .okf/ bundle for an existing repository that predates this skill, or when resuming an interrupted backfill session. Triggers on: "reconstruct the OKF bundle", "backfill the knowledge…

scaccogatto/okf-skills · 80 tokens

okf

Author, maintain, and consume Open Knowledge Format (OKF) knowledge bundles — portable markdown + YAML frontmatter that both humans and agents read. Use when capturing project knowledge (services, APIs, schemas, metrics, runbooks, decisions) into an OKF bundle, when updating one after code or docs change, or when a…

scaccogatto/okf-skills · 127 tokens

validate

Check that an Open Knowledge Format (OKF) bundle is conformant with the v0.2 spec (§11). Use when asked to validate, lint, or check an OKF bundle, or before committing changes to one. Runs a deterministic Python checker — not an eyeball pass. Also migrates a v0.1 bundle to v0.2 in place with --migrate.

scaccogatto/okf-skills · 82 tokens

visualize

Render an Open Knowledge Format (OKF) bundle as a single self-contained, interactive HTML graph (viz.html) — concepts as nodes coloured by type and sized by body length, markdown links and bundle-internal sources as edges, a wiki-style detail panel with rendered markdown, v0.2 trust/lifecycle/provenance metadata, and…

scaccogatto/okf-skills · 111 tokens

remem

Use when the user asks Codex to recall prior project context, save durable decisions or bug fixes, inspect remem memory health, or activate remem automatic memory hooks from the Codex plugin.

majiayu000/remem · 42 tokens

steel-quench

All-angle verification meta-skill for near-complete artifacts. Turns vague design anxiety into structured challenger waves using fh-commons:quench-challenger, then drives defense and convergence until root weaknesses, residual risks, and added complexity are explicit. Covers standard attack/defense rounds, optional…

chrono-meta/forge-harness · 169 tokens