AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Askl

skill-ryoppippi-askl-askl · by ryoppippi

Lints Agent Skills against the Agent Skills specification and host authoring conventions. Use when writing, reviewing, or fixing SKILL.md files or their referenced documents.

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-ryoppippi-askl-askl

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ryoppippi-askl-askl)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Askl? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

askl

askl is a standalone command-line linter for the Agent Skills specification. It scans every SKILL.md under a repository's skill roots, validates frontmatter and referenced Markdown files, and reports issues with exact file and line positions.

Running it

askl                       # lint the default skill roots
askl --format json         # machine-readable output
askl --list-rules          # show every registered rule

Default skill roots (relative to the current working directory): .agent/skills, .agents/skills, .claude/skills, agents/skills, skills.

Exit codes: 0 clean, 1 a rule reported an error (or a warning with --deny-warnings), 2 a usage or config problem (bad --rule value, invalid config file).

Fixing a reported issue

  1. Read the diagnostic: : error ().
  2. Open ` at and address ` directly — every rule

message states exactly what must change.

  1. Re-run askl to confirm the fix and check for any remaining issues.

Common fixes:

  • valid-frontmatter: add the missing name/description field, fix the

YAML, or shorten a field past its length limit.

  • name-matches-directory: rename the skill's name field or its

directory so they match.

  • no-broken-local-references / no-deep-references: fix the Markdown

link target, or move the referenced file to at most one directory below SKILL.md.

  • no-empty-skill-body: add instructions after the closing ---.
  • skill-index-budget: shorten name/description across the flagged

skills, since the message reports a combined total, not one file's size.

Suppressing a specific diagnostic

Only suppress a diagnostic when the rule's rationale genuinely does not apply to that line — never to silence an unaddressed real issue. Add an HTML comment to the SKILL.md source:


See [the Windows helper](scripts\help.ps1).

` suppresses for the line that follows the comment; ` suppresses it for the whole file regardless of where the comment sits. Both accept a space-or-comma-separated list of rule names, and omitting the list suppresses every rule.

Configuring rules

askl reads the nearest .asklrc.jsonc (or .asklrc.json), searching from the current directory upward:

{
	"roots": [".agents/skills"],
	"rules": {
		"no-unknown-frontmatter-fields": "error",
		"skill-index-budget": ["warn", { "maxCharacters": 8000 }],
	},
}

--roots and --rule = on the command line override the config file for a single invocation.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

  • Author: ryoppippi
  • Source: ryoppippi/askl
  • License: MIT
  • Homepage: https://www.npmjs.com/package/oxlint-plugin-agent-skills

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.