Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Readme Maker

v2.0.0

Design beautiful GitHub profile READMEs with templates. Use when styling profiles, validating badges, generating stat widgets, formatting bio sections.

0· 172·1 current·1 all-time
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (README templating, linting, formatting) align with the included shell script and SKILL.md: commands, logging, export, preview, diff, and stats are implemented and expected for a devtool of this type.
Instruction Scope
SKILL.md and the script are focused on local README tooling and persistent local logs. The runtime instructions and script only read/write files under the user's home data dir and use standard Unix utilities; they do not access unrelated system paths or external endpoints.
Install Mechanism
No install spec is provided (instruction-only with an included script). There is no network download or package install; the script runs locally. This is the lowest-risk install pattern.
Credentials
The skill requires no environment variables, no credentials, and no config paths beyond creating ~/.local/share/readme-maker. Nothing requested appears disproportionate to a README devtool.
Persistence & Privilege
The script creates and writes persistent logs under ~/.local/share/readme-maker (history and per-command logs) which is consistent with its described behavior. It is not 'always: true' and does not modify other skills or global agent settings.
Assessment
This skill appears internally consistent and only stores data locally in ~/.local/share/readme-maker. Before installing or running it: (1) review the script if you plan to log sensitive content—entries are saved verbatim and exported without JSON escaping; avoid logging secrets or tokens; (2) confirm you are comfortable with a new directory and log files in your $HOME; (3) if you will run it in CI, ensure pipeline secrets are not passed to the tool (it has no sanitization); (4) verify the publisher (BytesAgain) via bytesagain.com or the provided contact if you need provenance. If you want extra caution, run the script in a sandboxed account/container to observe behavior first.

Like a lobster shell, security has layers — review code before you run it.

latestvk97e6wh2r5cq8znestx68ezfx98356rc
172downloads
0stars
1versions
Updated 3h ago
v2.0.0
MIT-0

Readme Maker

Developer tools CLI for checking, validating, generating, and formatting README files and documentation. Lint your markdown, generate templates, convert between formats, diff versions, preview output, fix common issues, and produce reports — all from the command line with persistent local logging.

Commands

Run readme-maker <command> [args] to use.

CommandDescription
checkCheck README files for completeness and common issues
validateValidate markdown structure and formatting rules
generateGenerate README content from project metadata
formatFormat and beautify markdown content
lintLint markdown for style and syntax issues
explainExplain markdown elements or README sections
convertConvert between documentation formats
templateApply or manage README templates
diffDiff two README versions or sections
previewPreview rendered markdown output
fixAuto-fix common README issues
reportGenerate documentation quality reports
statsShow summary statistics across all categories
export <fmt>Export data in json, csv, or txt format
search <term>Search across all logged entries
recentShow recent activity from history log
statusHealth check — version, data dir, disk usage
helpShow help and available commands
versionShow version (v2.0.0)

Each domain command (check, validate, generate, etc.) works in two modes:

  • Without arguments: displays the most recent 20 entries from that category
  • With arguments: logs the input with a timestamp and saves to the category log file

Data Storage

All data is stored locally in ~/.local/share/readme-maker/:

  • Each command creates its own log file (e.g., check.log, generate.log, lint.log)
  • A unified history.log tracks all activity across commands
  • Entries are stored in timestamp|value pipe-delimited format
  • Export supports JSON, CSV, and plain text formats

Requirements

  • Bash 4+ with set -euo pipefail strict mode
  • Standard Unix utilities: date, wc, du, tail, grep, sed, cat
  • No external dependencies or API keys required

When to Use

  1. Starting a new project — generate a README from a template, then lint and format it to ensure quality before committing
  2. Auditing existing documentation — check and validate your README for missing sections (license, contributing, install instructions) and auto-fix common issues
  3. Converting documentation formats — convert README content between markdown, reStructuredText, or other formats as part of a docs pipeline
  4. Comparing README changes — diff two versions of your README to review what changed across releases or branches
  5. CI/CD documentation quality gates — integrate lint and validate commands into your pipeline to enforce documentation standards on every PR

Examples

# Check a README for completeness
readme-maker check "missing: license section, contributing guide, badges"

# Validate markdown structure
readme-maker validate "## headers OK, links 3/3 valid, images 1/1 accessible"

# Generate README from project info
readme-maker generate "name=my-app lang=python license=MIT"

# Lint for style issues
readme-maker lint "line 42: trailing whitespace; line 58: no blank line before heading"

# Format markdown content
readme-maker format "normalized headings, fixed list indentation, wrapped at 80 cols"

# Apply a template
readme-maker template "minimal — added: title, description, install, usage, license"

# Preview rendered output
readme-maker preview "rendered 128 lines, 3 code blocks, 2 tables"

# View summary statistics
readme-maker stats

# Export all data as JSON
readme-maker export json

# Search for specific entries
readme-maker search "license"

Output

All commands output to stdout. Redirect to a file if needed:

readme-maker report "weekly audit" > report.txt
readme-maker export csv  # saves to ~/.local/share/readme-maker/export.csv

Configuration

Set DATA_DIR by modifying the script, or use the default: ~/.local/share/readme-maker/


Powered by BytesAgain | bytesagain.com | hello@bytesagain.com

Comments

Loading comments...