ai-workspace-standards
Master configuration for Vibe Coding and Harness Engineering — workspace standards for Claude Code, Gemini CLI, and all AI tools
Install / Use
npx skills add 5throck/ai-workspace-standards --skill explain-meInstalls into whichever agent you are using.
Gemini Rules
Gemini CLI config
Quality Score
Category
Customer SupportSupported Platforms
Tags
Our assessment of ai-workspace-standards
ai-workspace-standards scores 72/100 on our quality scale, 143rd of 172 Customer Support skills we index.
Its Gemini Rules is 5.8 KB long, well organised into 10 sections with 1 code example: a solid amount of guidance for an agent.
It has no GitHub stars yet, so there is no community track record; judge it on its content.
Maintenance, license and trust
- The repository was last updated 3 days ago, so ai-workspace-standards is actively maintained.
- Our last check on 2026-09-24 found the source still online.
- No license is declared. By default that means all rights are reserved: you can read it, but reusing or redistributing it is not clearly permitted. Ask the author before building on it commercially.
- Its trust signals score 80/100, with 2 cautions from licensing, adoption, age or documentation. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful.
AI review by kimi-k2.7-code on 2026-09-27. Automated pattern scan on 2026-09-27. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
ai-workspace-standards compared with similar skills
All 4 of these similar skills score higher than ai-workspace-standards; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| ai-workspace-standards (this skill)by 5throck | 72 | 0 | 3d ago | Gemini Rules |
| gtarsby K-Dense-AI | 100 | 46.4k | 6d ago | SKILL.md |
| pufferlibby K-Dense-AI | 100 | 46.4k | 6d ago | SKILL.md |
| baoyu-cover-imageby JimLiu | 99 | 26.1k | 17d ago | SKILL.md |
| folklore-variant-evidenceby K-Dense-AI | 98 | 46.4k | 6d ago | SKILL.md |
Frequently asked questions
- How do I install ai-workspace-standards?
- Run
npx skills add 5throck/ai-workspace-standards. The install tabs above show the steps for each supported agent. - Which AI agents does ai-workspace-standards work with?
- It is written for Gemini CLI, as a Gemini Rules file. Other agents that read the same format can often use it too.
- Is ai-workspace-standards safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. An AI review of the same text found nothing harmful. It declares no license and scores 80/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is ai-workspace-standards still maintained?
- The repository was last updated 3 days ago, so ai-workspace-standards is actively maintained.
Skill content
View source on GitHubname: explain-me description: > Turn a topic or your own materials into a single self-contained, interactive HTML report — top tabs, clickable reference drawers, dense tables, comparison heatmaps, inline SVG, in-page search, a light/dark theme toggle, and multilingual support. Use when: user says "/explain-me", "/reportme", "make a report", "create report", "explain this topic". Inspired by beret21/reportme. version: 1.0.0 last_reviewed: 2026-08-03 status: experimental scope: common l2_propagate: true owner: pm prerequisites: Python 3 (for validate_report.py), git + gh (for optional publish) attribution: source: https://github.com/beret21/reportme license: MIT note: "Inspired by beret21/reportme. All code is self-authored." metadata: type: process triggers: - /explain-me - /reportme - make a report - create report - explain this topic
Skill: explain-me
Context
Generates a single self-contained interactive HTML report from a topic (research mode) or existing materials (render mode). The entire output is one HTML file with all CSS, JS, and data inlined — it opens directly from disk (file://) with no server or build process required.
Inspired by beret21/reportme v0.4.1 (MIT license). All code is self-authored. Supports all 4 workspace platforms: Claude CLI, Claude Desktop App, Antigravity (VS Code), and Antigravity CLI (Gemini CLI).
Subcommands
| Command | Description |
|---------|-------------|
| new (default) | Full end-to-end report creation from a topic |
| render | Turn existing local or remote data into report format (no research) |
| add | Append components (tabs, subtabs, sections, heatmaps, figures, references) to an existing report |
| update | Conversationally revise and re-verify an existing report |
| open | Launch the report in a browser for manual inspection |
| verify | Run structural consistency and content/language reviews |
| publish | Optional push to GitHub Pages (requires git + gh) |
| help | Show usage information |
Usage
/explain-me [subcommand] [options] "<topic or materials>"
Options
| Option | Description | Example |
|--------|-------------|---------|
| --lang | Output language (defaults to user's prompting language) | --lang en, --lang ko |
| --langs | Multilingual output (space-separated, max 5, recommended ≤3) | --langs ko en ja |
| --depth | Report depth: brief / standard (default) / deep | --depth deep |
| --source | Source mode: research (default) or data (auto-detected) | --source data |
| --tabs | Custom tab list (comma-separated) | --tabs "Overview,Analysis,References" |
| --out | Output file path | --out ./reports/market-2026.html |
| --no-verify | Skip verification (discouraged) | --no-verify |
| --no-svg | Skip inline SVG diagrams | --no-svg |
| --repo | Publish: repository slug | --repo ev-report-2026 |
| --owner | Publish: GitHub account | --owner beret21 |
| --private | Publish: private repository (requires GitHub Pro) | --private |
| --public | Publish: public repository | --public |
Safety Model
This skill only creates and edits — it never deletes your files or content.
- Network: Only used for read-only research (WebSearch/WebFetch). No outbound connections from the output HTML.
- Git/gh: Only invoked for the explicit
publishsubcommand, after a secret scan passes. - Temporary files: Confined to OS temp directory.
- Secrets: §11 of BUILD_GUIDE scans for API keys, tokens, passwords before delivery.
Workflow Summary
- Parameter confirmation — confirm TOPIC, LANG, DEPTH, TABS with user
- Content acquisition — research (WebSearch/WebFetch) or data (Read user files)
- Structure proposal — propose tab layout, get user approval
- Template copy + fill — copy
templates/report.html, replace placeholders - Content writing — fill tabs with verified facts using design system components
- Multi-agent verification — §6 content (4 personas + 4 lenses), §7 language proofreading, §7.5 SVG diagrams
- Structural validation —
scripts/validate_report.py(must return 0 errors) - Browser verification — test tabs, drawer, search, theme, mobile,
file://self-sufficiency - Delivery — output single HTML file; optional
publishto GitHub Pages
Bundled Assets
| Asset | Location | Purpose |
|-------|----------|---------|
| BUILD_GUIDE.md | references/BUILD_GUIDE.md | Complete report building engine (16 sections) |
| PLATFORM_HARNESS.md | references/PLATFORM_HARNESS.md | Platform-specific subagent dispatch patterns |
| loanword-refinements.json | references/loanword-refinements.json | Korean loanword refinement data for §7 proofreading |
| validate_report.py | scripts/validate_report.py | HTML structural validator (stdlib Python) |
| report.html | templates/report.html | Single-file interactive HTML template |
| .nojekyll | templates/publish/.nojekyll | GitHub Pages Jekyll bypass |
| dot-gitignore | templates/publish/dot-gitignore | Gitignore template for published repos |
Platform Support
All 4 workspace platforms are supported. Tool names differ per platform — see references/PLATFORM_HARNESS.md for platform-specific subagent dispatch patterns.
| Platform | Shell | Subagent | File I/O |
|----------|-------|----------|----------|
| Claude CLI | Bash | Agent() | Read/Write/Edit |
| Claude Desktop App | Bash | Agent() (limited Teams) | Read/Write/Edit |
| Antigravity (VS Code) | run_command | invoke_subagent | view_file/write_to_file |
| Antigravity CLI | run_command | invoke_subagent | view_file/write_to_file |
Kickoff
For new report generation, read references/BUILD_GUIDE.md in full first, then follow it exactly. Use references/PLATFORM_HARNESS.md for platform-specific subagent dispatch patterns.
Related Skills
gtars
46.4kUse Gtars for local genomic interval models and set algebra, overlaps and counts, consensus and coverage, tokenization, fragment processing, and refget/BEDbase planning across Python, Rust, and the CLI.
pufferlib
46.4kVersion-aware guidance for PufferLib reinforcement-learning environments, vectorization, policies, PuffeRL training, evaluation, and safe checkpoint review
baoyu-cover-image
26.1kGenerates article cover images with 5 dimensions (type, palette, rendering, text, mood) combining 11 color palettes and 7 rendering styles. Supports cinematic (2.35:1), widescreen (16:9), and square (1:1) aspects
folklore-variant-evidence
46.4kRetrieve ClinGen gene-disease validity assertions for a public gene or disease, and review source-linked public evidence and literature for one supported GRCh38 germline nuclear SNV or simple indel through Folklore Clinical Variant Interpretation MCP
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
