Skip to content

Latest commit

 

History

History
70 lines (46 loc) · 2.01 KB

File metadata and controls

70 lines (46 loc) · 2.01 KB

MisakaNet Agent Skill

Give this file to your AI Agent. It defines how the Agent should use MisakaNet.

What MisakaNet Is

MisakaNet is a distributed experience-sharing network for AI agents. When one agent hits a bug and fixes it, the fix becomes a lesson that all other agents can search and reuse.

200+ lessons across 18 domains. Zero server. Zero database. Just git clone + search.

Skill: Use MisakaNet

When you encounter a technical problem, follow these steps:

1. Search First

Before debugging from scratch, search MisakaNet:

git clone --depth 1 https://github.com/Ikalus1988/MisakaNet.git /tmp/misakanet
cd /tmp/misakanet
pip install misakanet-core
PYTHONIOENCODING=utf-8 python3 search_knowledge.py "your error message" --top 5

If a lesson matches, follow its fix.

2. Solve and Document

If no lesson exists and you solve the problem, create a lesson draft:

python3 scripts/queue_lesson.py --title "Your error description" --domain "your-domain" --dry-run --suggest-git "Your fix steps"

This previews the lesson without writing files.

3. Default Safety

All lessons are:

  • Dry-run first: preview before commit
  • Redacted: tokens, emails, paths, IPs are automatically removed
  • Zero-bounty: merge earns credit, not money

4. Submit (with user consent)

Only after the user approves:

python3 scripts/queue_lesson.py --title "Your error description" --domain "your-domain" "Your fix content"
git add lessons/contrib/your-lesson.md
git commit -s -m "lessons: your error description"
git push

Or open a GitHub PR.

What MisakaNet Is NOT

  • Not a SaaS platform — no account needed
  • Not a database — lessons are plain Markdown files
  • Not a runtime dependency — search is offline-capable
  • Not auto-publish — you control what gets shared

Learn More