Install
$ agentstack add skill-davila7-claude-with-skills-readme-generator ✓ 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.
About
Instructions
Step 1: Detect the project type
Check for language and framework indicators in this order:
package.json— Node.js / JavaScript / TypeScript projectpyproject.tomlorsetup.py— Python projectgo.mod— Go projectCargo.toml— Rust projectbuild.gradleorpom.xml— Java / Kotlin project*.gemspecorGemfile— Ruby project
Read whichever file is found to extract the project name, version, description, and dependencies.
Step 2: Read the entry point
Based on the project type, read the main entry point:
- Node.js: check the
mainfield in package.json, or look forsrc/index.ts,src/index.js,index.ts,index.js - Python: look for
__main__.py, the module directory, or the entry point in pyproject.toml - Go:
main.goorcmd//main.go - Rust:
src/main.rsorsrc/lib.rs
Read the first 80 lines to understand what the project does.
Step 3: Survey the structure
Run ls -1 at the project root and at the src/ (or equivalent) directory if it exists. Note top-level directories that give structure clues (cli/, api/, lib/, tests/, docs/, examples/).
Step 4: Write the README
Produce a README.md with the following sections in this order. Include a section only if there is real content for it — do not leave placeholder text in any section except Badges.
# Project Name
One sentence describing what the project does and who it is for.
## Badges
## Installation
Commands to install the project. Use the package manager detected in step 1.
## Usage
The minimal example to get something working. Show a command or code snippet.
If the project has a CLI, show the most common command.
If it is a library, show an import and a basic function call.
## Configuration
If the project has configuration options (environment variables, config files, flags),
list the important ones with their defaults and descriptions.
## Contributing
Brief instructions: how to set up a dev environment, how to run tests, how to submit a change.
## License
State the license. Read the LICENSE file if present to confirm.
After writing the README, tell the user which sections have placeholder content (Badges) and which sections they should review for accuracy (Usage examples especially benefit from human review).
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: davila7
- Source: davila7/claude-with-skills
- License: MIT
- Homepage: https://claude-with-skills.vercel.app
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.