Home Organizer

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears to provide local home-organization tips and simple local note storage, with no network access, credentials, or destructive behavior shown.

This looks safe for general home-organization advice. Before installing, confirm which `home-organizer` command will run, and remember that one included script can save local notes and command history under your home directory.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A user or agent may need to verify which local command is being run, especially if another `home-organizer` executable already exists on the system.

Why it was flagged

SKILL.md tells users to run a `home-organizer` command, but the registry provides no install spec or declared required binary, so the exact executable entrypoint is not clearly tied to the reviewed artifacts.

Skill content
No install spec — this is an instruction-only skill.
Recommendation

Install or invoke only the reviewed package entrypoint, and confirm the command path before using it in automation.

What this means

Using the skill may execute local helper scripts, but the reviewed code only prints home-organization guidance.

Why it was flagged

The skill includes a local shell helper that invokes Python to generate organization tips. This is purpose-aligned and local, with no network or privileged operations shown.

Skill content
#!/usr/bin/env bash
set -euo pipefail
CMD="${1:-help}"; shift 2>/dev/null || true; INPUT="$*"
python3 -c '
Recommendation

Treat it as a local CLI utility and review the script path before running it, especially in automated workflows.

What this means

Personal home-organization notes or command arguments may remain on disk until manually removed.

Why it was flagged

The script creates a local persistent data directory and writes command history and user-added entries there.

Skill content
DATA_DIR="${HOME_ORGANIZER_DIR:-${XDG_DATA_HOME:-$HOME/.local/share}/home-organizer}"
DB="$DATA_DIR/data.log"
mkdir -p "$DATA_DIR"
_log() { echo "$(date '+%m-%d %H:%M') $1: $2" >> "$DATA_DIR/history.log"; }
Recommendation

Avoid entering sensitive personal information unless you are comfortable storing it locally, and delete the data directory if you want to clear saved entries/history.