Install
$ agentstack add skill-fmind-dot-dot-development ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ● Shell / process execution Used
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Develop Dot
Change the Python CLI while retaining its observable command, archive, and installation contracts. [dot-cli](../../../skills/dot-cli/SKILL.md) owns operating the installed tool; [python-stack](../../../skills/python-stack/references/foundation/GUIDE.md) and [cli-contracts](../../../skills/cli-development/references/cli-contracts.md) own generic implementation and interface design.
Workflow
- Find the owner: inspect
git status --short,git diff, andgit diff --cached, then follow the source/test map below. Read the current implementation before selecting a change boundary. - Define the observable change: preserve command names, aliases, help, JSON output, exit codes, stdout/stderr, and Fish completions unless the task explicitly changes them. Exercise configuration errors through the public CLI; repair commands must remain usable when ordinary config loading fails.
- Implement through existing boundaries: reuse
StateandRunnerfor configuration, streams, and external commands. Use temporary homes and fake runners in tests so a CLI regression cannot authenticate, publish, prune real data, or modify the workstation. - Select proof: run relevant existing tests with
uv run --frozen pytest -q dot/tests/.py; add behavioral cases for changed outcomes and realistic failures. Read [session compatibility](references/session-compatibility.md) before changing parser output, replacement rules, or stored formats. - Qualify the candidate: run affected static checks and reuse the focused test results above. Follow project
AGENTS.mdfor the full-gate boundary: shared behavior, dependencies, packaging, or explicit full qualification. Isolate write-formatting checks when unrelated work is present and compare the tested candidate with the intended source before transferring proof or edits. - Verify the right executable: use
uv run --frozen dotfor checkout behavior. When installation is in scope,mise run deploybuilds and selects the installed runtime; verifydot --versionand the changed installed command separately.mise run verifyis workstation health, not repository qualification.
Source and test map
cli.py,command_group.py,state.py, andconfig.py: command discovery, configuration, and public errors;test_cli.pyandtest_config.pyexercise the boundary.private_files.py: shared private-directory creation and atomic writes;test_private_files.pycovers permissions, failed publication, and temporary-file cleanup.secrets.py: explicit credential loading and PyPI publishing;test_secrets.pycovers precedence, private files, rejected overrides, child I/O, and native login preservation. Keep fixtures synthetic and never print credential values.auth.pyandworkstation.py: login, setup, cache inspection, and confirmed cleanup;test_workstation.pyuses synthetic provider probes. Never run real login/setup/prune as a validation gate.repository.py,process.py, andsystem.py: repository concurrency, subprocess cancellation, completions, and workstation checks; use their matching tests and temporary homes.archive/parsers.py,sync.py,store.py,usage.py,pricing.py, andstatistics.py: discovery, incremental capture, the session store, request accounting, subscription periods, and prompt statistics.test_archive_transaction.pycovers replacement, usage retention, and the retired v2 store refusal;test_usage_periods.pycovers deduplication, model changes, date boundaries, and legacy recapture;test_pricing.pycovers cache accounting and unknown rates.agent_doctor.pyandhooks.py: per-agent notify hooks, sync, and archive checks, plus notification payloads;test_agent_doctor.pyandtest_agent_hooks.pyexercise them.
Documentation
- [Project tasks](../../../mise.toml) and [package configuration](../../../dot/pyproject.toml) own the actual gate and dependency graph.
- Releases: fmind/dot · changelog
- Companion skills: [chezmoi](../chezmoi/SKILL.md) (managed configuration), [dot-release](../dot-release/SKILL.md) (release lifecycle), [systematic-debugging](../../../skills/systematic-debugging/SKILL.md) (unknown failures).
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.