Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Proactively discover AI rules, prompts, agents, skills, and skill bundles exposed by npm packages in a project, integrate them into editor-specific rule/config files (AGENTS.md, .cursor/rules, .rules, etc.), and, when appropriate, install reusable skills via the skills package (skills.sh). Use this skill when opening a project, after dependencies change, or before relying on a package so you can reuse existing rules/skills instead of recreating them from scratch. --- name: discover-package-skills description: > Proactively discover AI rules, prompts, agents, skills, and skill bundles exposed by npm packages in a project, integrate them into editor-specific rule/config files (AGENTS.md, .cursor/rules, .rules, etc.), and, when appropriate, install reusable skills via the skills package (skills.sh). Use this skill when opening a project, after dependencies change, or before rely Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
discover-package-skills is best for be, rely, triggers workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Proactively discover AI rules, prompts, agents, skills, and skill bundles exposed by npm packages in a project, integrate them into editor-specific rule/config files (AGENTS.md, .cursor/rules, .rules, etc.), and, when appropriate, install reusable skills via the skills package (skills.sh). Use this skill when opening a project, after dependencies change, or before relying on a package so you can reuse existing rules/skills instead of recreating them from scratch. --- name: discover-package-skills description: > Proactively discover AI rules, prompts, agents, skills, and skill bundles exposed by npm packages in a project, integrate them into editor-specific rule/config files (AGENTS.md, .cursor/rules, .rules, etc.), and, when appropriate, install reusable skills via the skills package (skills.sh). Use this skill when opening a project, after dependencies change, or before rely
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Ivoilic
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/ivoilic/discover-package-skills.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Ivoilic
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
0
Snippets
0
Languages
typescript
Parameters
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Proactively discover AI rules, prompts, agents, skills, and skill bundles exposed by npm packages in a project, integrate them into editor-specific rule/config files (AGENTS.md, .cursor/rules, .rules, etc.), and, when appropriate, install reusable skills via the skills package (skills.sh). Use this skill when opening a project, after dependencies change, or before relying on a package so you can reuse existing rules/skills instead of recreating them from scratch. --- name: discover-package-skills description: > Proactively discover AI rules, prompts, agents, skills, and skill bundles exposed by npm packages in a project, integrate them into editor-specific rule/config files (AGENTS.md, .cursor/rules, .rules, etc.), and, when appropriate, install reusable skills via the skills package (skills.sh). Use this skill when opening a project, after dependencies change, or before rely
name: discover-package-skills description: > Proactively discover AI rules, prompts, agents, skills, and skill bundles exposed by npm packages in a project, integrate them into editor-specific rule/config files (AGENTS.md, .cursor/rules, .rules, etc.), and, when appropriate, install reusable skills via the skills package (skills.sh). Use this skill when opening a project, after dependencies change, or before relying on a package so you can reuse existing rules/skills instead of recreating them from scratch. version: 0.2.0 author: Ivo Ilić https://ivoilic.com tags:
This skill teaches you to act as a lightweight, in-editor helper focused on
discovering and integrating package-provided rules/skills and on
installing reusable skills from the Skills ecosystem (skills.sh).
Keep the behavior proactive: whenever you start working in a project, see new or changed dependencies, or are about to rely on a package, first ask:
“Does this project or package already provide rules, prompts, agents, or skills that I should use?”
If the answer might be yes, apply this skill.
Be proactive
package.json or lockfiles change (new/updated dependencies), re-run discovery
for the affected packages.Act as an in-editor alternative to dedicated CLIs
Respect user and project rules
AGENTS.md at the repo root and obey any instructions it contains..cursor/rules/, .cursor/skills/.rules (unified or Zed-style).windsurfrules.github/instructions/CLAUDE.md, GEMINI.md, or similar editor-specific filespnpm.lodash and avoid TypeScript any when writing TS helpers.Follow this workflow whenever the skill triggers.
AGENTS.md (Codex-style agents file). Prefer this as the primary, unified
aggregation format when it exists..cursor/rules/ (Cursor rules) and .cursor/skills/ (Cursor skills)..rules (unified or Zed-style rules file in the project root)..windsurfrules (Windsurf rules)..github/instructions/ (VSCode instructions-style rules).CLAUDE.md, GEMINI.md, or other editor-specific configuration files.AGENTS.md at the root and use it as the
unified aggregation point for discovered package skills and rules.package.json at the root.dependencies, devDependencies, and optionally peerDependencies.node_modules/<packageName> (or the equivalent workspace location).llms, rules, agents, skills, or similar
(e.g. node_modules/<pkg>/llms.(ts|js|mjs|cjs)).package.json pointing to ./llms, ./rules, ./agents, ./skills, etc.UNIFIED_RULES_CONVENTION.md.rules.cursor/rules/.github/instructions/AGENTS.mdnode_modules or node_modules/<packageName> cannot be read or does not exist
(for example in remote/sandboxed environments or when dependencies are installed
outside the workspace), fall back to command-based discovery:
pnpm ls <packageName> --depth 10npm ls <packageName> --depth 10yarn why <packageName>node_modules/<packageName>: look for llms, rules, agents,
skills, convention docs, and other rule/skill exports.<workspace>/**/<packageName>/package.json)
and inspect those.require/import only when absolutely necessary and safe.When you find a candidate rules/skills module or file, try to interpret its structure. Common patterns include:
Single string export
name field nearby, orArray of strings
Array of rule objects
name: stringrule: string (rule content)description?: stringalwaysApply?: booleanglobs?: string | string[] (file targeting patterns)content instead of rule, applyTo instead of
globs). Infer intent from context and documentation.Documented conventions
Normalize each discovered rule into an internal representation containing at least:
packageNameruleNamecontentdescription, alwaysApply, globs / targeting info.Whenever you successfully interpret new rules, prompts, agents, or skills from a package (i.e. content that was not previously integrated), clearly surface this discovery to the user with a short, structured log line in your response:
🕵️ New [skills/rules/prompts] found in package [<package-name>]Will be added to .cursor/rules/ as separate .mdc files. or
Will be updated in AGENTS.md under the package skills section.).Keep this notification concise; it is meant as a quick heads-up, not a detailed report.
Some packages are not just rule providers; they are skill bundles compatible with the
Skills ecosystem (skills.sh).
When discovery reveals that a package can be installed as a skill:
skills package rather than re-implementing the same skill
manually. Typical commands include:
pnpm dlx skills add <owner/repo>npx skills add <owner/repo>bunx skills add <owner/repo>pnpm-lock.yaml exists, prefer pnpm dlx.yarn.lock exists, consider yarn dlx or npx depending on conventions.package-lock.json exists, npx is reasonable.If installation is not allowed or appropriate, still use the package’s embedded rules for this project by mapping them into local rule/config files (next step).
For each normalized rule, map it into the project’s editor-specific configuration. Prefer idempotent updates: if a rule with the same name already exists, update it in place instead of duplicating it.
Use normalized names like:
<packageName>_<ruleName><packageName> when there is a single rule.Then apply these patterns:
Cursor (cursor)
.cursor/rules/<normalized-name>.mdc.description, alwaysApply, globs.Codex (codex)
AGENTS.md in the project root (or as specified by project conventions).<normalized-name> ... </normalized-name>Windsurf (windsurf)
.windsurfrules.<normalized-name> ... </normalized-name> convention when appropriate.Zed / Unified (zed / unified)
.rules in the project root.VSCode instructions (vscode)
.github/instructions/<normalized-name>.instructions.md.applyTo: "**" unless a more specific pattern is
clearly indicated by the rule metadata.Claude Code / Gemini
CLAUDE.md / GEMINI.md.<normalized-name> ... </normalized-name>, encoding metadata as needed.For all editors:
GEMINI.md if nothing else references Gemini).Before adding or updating any rule/skill content, first check whether it has already been imported from the same package:
Version drift and re-scan triggers
package.json or the lockfile no longer
matches the version recorded in your <!-- Copied from ... --> comments, treat this as
a signal to re-run discovery for that package.Be cautious with new dependencies
pnpm for JS/TS projects
when the package manager is ambiguous.Avoid destructive operations
Traceability
from package-name@1.2.3).<!-- Copied from <package-name>@<version> by discover-package-skills 🕵️ -->package.json/lockfiles later to
detect when a package has been upgraded so you can re-run discovery for that package’s
rules/skills.Conflict and overlap handling
Package usage vs. package development
Security and safety checks
Keep these examples in mind as patterns; they are not strict scripts.
Example A: Feature implementation using an existing package
🕵️ ...), and integrate or update those rules in the project’s
rule/config files.Example B: New dependency added
package.json now includes a new package.llms module exporting rule objects and
a README describing how they should be used.skills.sh and installations are
allowed, you install it using the appropriate skills add command.Example C: User asks to use a package
These scenarios are guidance for your default behavior whenever you are working with packages that may carry reusable AI rules or skills.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/snapshot"
curl -s "https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/contract"
curl -s "https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T00:03:41.214Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "rely",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "triggers",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "for",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "re",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "the",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "also",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:be|supported|profile capability:rely|supported|profile capability:triggers|supported|profile capability:for|supported|profile capability:re|supported|profile capability:the|supported|profile capability:also|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Ivoilic",
"href": "https://github.com/ivoilic/discover-package-skills",
"sourceUrl": "https://github.com/ivoilic/discover-package-skills",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T03:13:42.834Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T03:13:42.834Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/ivoilic-discover-package-skills/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to discover-package-skills and adjacent AI workflows.