Install
$ agentstack add skill-sexymonk-agent-capability-core-local-file-links ✓ 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 No
- ✓ 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
Local File Links
Overview
Use this skill when returning local files, folders, generated outputs, logs, reports, images, or code paths that the user may click in the Codex desktop app.
The goal is simple: never leave a useful local path as plain text when a clickable absolute link would let the user open it directly.
Rules
- Format every local file or directory reference as a Markdown link, not plain text.
- Use an absolute filesystem path as the link target.
- In Codex desktop, the link target should be path-style, not URI-style.
- On Windows, use a leading slash before the drive letter:
/C:/path/to/file. - Do not use bare
C:/path/to/fileas the link target. - Use one path per link. Do not combine multiple paths into one link.
- For files, link to the file itself.
- For directories, link to the directory itself.
- When handing off a newly created file, prefer giving both links when helpful:
Folder: [folder](/C:/absolute/folder) File: [name.ext](/C:/absolute/folder/name.ext)
- Keep labels short and readable. Do not use the full long path as the visible label unless that clarity is needed.
- Do not wrap the visible link label in backticks.
Output Pattern
Use patterns like these:
Result file: [report.md](/absolute/path/report.md)
Folder: [exports](/absolute/path/exports)
File: [summary.pdf](/absolute/path/exports/summary.pdf)
Code: [main.cpp](/absolute/path/project/src/main.cpp)
Avoid
- Plain paths like
C:\tmp\out.txtwith no link. - Relative paths when an absolute path is available.
- Bare Markdown targets like
(C:/tmp/out.txt)that may be treated as a URI instead of a local file path. - Bundling a file and its folder into one unreadable sentence when separate links would scan better.
Learning maintenance
Maintain references/learning-log.md for this skill.
Update it when:
- a user gives a reusable correction about this skill's trigger, scope, workflow, output, validation, or routing
- a novel multi-step workflow using this skill is approved for reuse
- a failed or brittle path reveals an avoided path worth preserving
Keep entries concise and generalizable. Record:
- durable rules
- approved workflow promotions
- avoided paths
Do not store full transcripts, transient facts, or one-off preferences.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: sexymonk
- Source: sexymonk/agent-capability-core
- License: MIT
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.