Skip to content
Development
Command

/notebook-status

Check the progress of a /agy:notebook sweep (for long document sets run with --background). Reports % complete, done/pending/failed counts, elapsed time and a rough ETA, and which documents are still pending — so you can resume. Read-only, no agy.

From plugin
marcosnahuel-antigravity-plugin-cc
2622 skills1 agent22 commands
Install
$ npx -y skills add MarcosNahuel/antigravity-plugin-cc --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/notebook-status

Context preview

What this command does when you run it.

Check the progress of a /agy:notebook sweep (for long document sets run with --background). Reports % complete, done/pending/failed counts, elapsed time and a rough ETA, and which documents are still pending — so you can resume. Read-only, no agy.

Command definition

notebook-status.md
description: Check the progress of a /agy:notebook sweep (for long document sets run with --background). Reports % complete, done/pending/failed counts, elapsed time and a rough ETA, and which documents are still pending — so you can resume. Read-only, no agy.
argument-hint: "<folder>"
context: fork
allowed-tools: Bash, Read

Report the status of a notebook sweep without re-running it. Useful for a long, `--background` sweep over a 200-page document set: the job record (`<OUTDIR>/.jobs/current.json`) tracks per-document progress derived from the manifest + the summary files on disk.

Raw user request: $ARGUMENTS

Phase 0 — Resolve + report (ONE Bash call)

Resolve `OUTDIR = docs/agy/notebook/<slug>` from the folder argument (same `slug()` the notebook uses). Then:

python "${CLAUDE_PLUGIN_ROOT:-$PWD}/plugins/antigravity/scripts/notebook_job.py" status "$OUTDIR"

It prints the progress line (`NOTEBOOK SWEEP — NN% (done/total …)`), elapsed/ETA, the objetivo, and the first pending documents. If it prints `NO_JOB`, no sweep has been recorded — the user can just run `/agy:notebook <folder> | <objetivo>` (the sweep is incremental, so it resumes automatically).

Phase 1 — Present

Relay the progress. If documents are **pending**, tell the user to re-run `/agy:notebook <folder> | <objetivo>` to resume — cached/done docs are skipped, so only the pending ones are processed. If **failed > 0**, note those are `no_procesado` docs (timeout/rate-limit) that will retry on the next run. If **COMPLETE**, point them to `/agy:notebook-query` / `/agy:notebook-audit`.

Notes

  • Read-only; it only reads the manifest + summary files and refreshes the job record's counts.
  • "Background" here is cooperative: the sweep persists state every wave, so it is always safe to

interrupt and resume — there is no daemon. ETA is a rough extrapolation from the average per-doc rate.

Read more
Ships withmarcosnahuel-antigravity-plugin-cc

A local NotebookLM, multi-agent deep research, and 21 more commands — for Claude Code, powered by Google Antigravity (agy / Gemini 3.x), the official CLI that replaces the now-deprecated gemini-cli.

Get the whole plugin, auto-invoked
Stats
26
Stars
0
Views
6
Forks
Active
Maintenance
Python
Language
MIT
License
7d ago
Last commit
2mo ago
Created

Repo: MarcosNahuel/antigravity-plugin-cc