Install
$ agentstack add skill-ekline-io-ekline-docs-skills-review-docs ✓ 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 Used
- ✓ 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
Review documentation with EkLine Docs Reviewer, evaluate each suggestion critically, and apply only the improvements that hold up.
> Requirements (EkLine power-up): This skill needs the ekline-cli binary and an EkLine token (EKLINE_EK_TOKEN or EK_TOKEN). See EkLine CLI & token setup for setup. Every other skill in this toolkit runs with no EkLine account.
Inputs
$ARGUMENTS— optional. One or more specific files, or a content directory to review.- No arguments — reviews the pending git changes in the current repo, or the full directory if the repo is clean.
- A directory — reviews that directory.
- Specific files — reviews just those files.
Workflow
1. Run the review script
Run the helper script, passing through the user's arguments:
python scripts/run_review.py $ARGUMENTS
The script handles prerequisite checks, mode selection, CLI invocation, and cleanup. It prints a JSON summary to stdout with these fields:
mode—"files","git_changes", or"full"output_format—"jsonl"or"patch"results— the full review output (JSONL lines or patch text)cli_exit_code— exit code fromekline-clierror/message/cli_stderr— present only when something went wrong
If the script exits non-zero, read error and respond per the table below — do not proceed to evaluation.
| error | What to tell the user | |---------|-----------------------| | cli_not_found | ekline-cli isn't installed. Set EKLINE_CLI to its path, or install it (see below). | | token_not_found | No auth token. Set EKLINE_EK_TOKEN or EK_TOKEN (token from ). | | cli_failed | The CLI failed — show the message from cli_stderr and suggest troubleshooting. | | (no error, empty results) | "No issues found." Nothing to apply. |
Install commands for cli_not_found:
- macOS:
curl -L https://github.com/ekline-io/ekline-cli-binaries/releases/latest/download/ekline-cli-macos.tar.gz | tar xz && chmod +x ekline-cli && sudo mv ekline-cli /usr/local/bin/ - Linux:
curl -L https://github.com/ekline-io/ekline-cli-binaries/releases/latest/download/ekline-cli-linux.tar.gz | tar xz && chmod +x ekline-cli && sudo mv ekline-cli /usr/local/bin/ - Windows: Download
ekline-cli-windows.zipfrom the Release Page and add it to yourPATH.
2. Evaluate each suggestion
The review output is a set of style suggestions — not orders. Judge each one before presenting or applying it.
Accept when the suggestion:
- Improves clarity without changing meaning
- Fixes grammar or typos
- Converts passive voice to active voice
- Removes banned phrases ("simply", "just", "easy", "obviously", "basically", "please note that", "in order to", "click here")
- Fixes formatting — heading case, code block languages, and list parallelism
- Improves sentence structure
Reject when the suggestion:
- Changes technical meaning or accuracy
- Removes important context or nuance
- Introduces phrasing more awkward than the original
- Conflicts with project-specific terminology
- Over-simplifies a complex technical concept
- Would change content inside a code block — code blocks are out of scope
When uncertain: err toward clarity improvements, but reject any change that feels off even if the reason is hard to articulate. Surface rejected suggestions so the user can override.
3. Present the findings
If output_format is "patch" (git-changes mode): parse the unified diff and summarize — total suggested changes, which files are affected, and a one-line description of each change.
If output_format is "jsonl" (files or full mode): parse each line as a JSON issue and summarize — the total issue count, a breakdown by category such as style, grammar, terminology, and structure, and the issues grouped by file. For each issue, show the path and line, the rule ID such as EK00037, the issue, and the AI suggestion when available.
4. Apply approved fixes
Ask the user how to proceed:
- Apply all accepted changes — apply every suggestion you accepted in step 2.
- Review one by one — walk through each change; the user accepts or skips.
- Apply one category only — JSONL mode; for example, grammar fixes only.
- Skip — leave the report as-is.
When applying, use the Edit tool to make each change surgically:
- Read the current file.
- Match the exact original text and replace only the specific lines the suggestion targets.
- Never rewrite an entire file. Only change the lines indicated.
- If an edit fails on a file, skip it, continue with the others, and note the failure in the summary.
5. Report back
Summarize the run:
## Docs Review Summary
**Mode:**
**Changes applied:**
**Suggestions rejected:**
### Applied
- `path/to/file.md`:
### Rejected
- `path/to/file.md` line :
### Notes
Constraints
- Never change code blocks. Style rules apply to prose only.
- Preserve technical accuracy. Reject any suggestion that changes meaning.
- Respect intentional formatting. Tables, diagrams, and structured content exist for a reason.
- Edit surgically. Change only the lines a suggestion targets — never rewrite whole files.
- Be transparent. The summary must list what was applied and what was rejected, with reasons.
- Always use the script. Never invoke
ekline-clidirectly — the script handles binary discovery, auth, mode, and flags.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ekline-io
- Source: ekline-io/ekline-docs-skills
- 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.