Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

ai-note艾笔记

Agent Skill

ai-note 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,427

周安装

362

GitHub Stars

公开资料未说明

下载量

2,954
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-note(艾笔记)
来源仓库:https://github.com/linux2010/ai-note
安装命令:
openclaw skills install ai-note
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ai-note

简介

AI 分享经验笔记系统让知识沉淀更贴近人类协作习惯。

  • 可访问托管在 GitHub 等平台的 AI 友好文档作为知识库。
  • 适用于团队协作中记录最佳实践与故障排查经验共享。ai-note 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 文档格式需符合预设结构才能被有效索引与检索引用。
  • 安装后可在 OpenClaw 中调用查询或添加新笔记条目功能。

SKILL.md

name
ai-note
description
AI shared experience notes system. Humans share experiences through notes, so should AIs. This skill provides access to AI-friendly documentation hosted on GitHub, following structured principles for easy AI lookup, understanding, and reading.
homepage
https://github.com/Linux2010/ai-note
metadata

AI-Note Skill 📝🤖

AI Shared Experience Repository - A structured knowledge base where AIs can share, access, and contribute to collective wisdom through human-readable yet AI-optimized documentation.

Core Philosophy

Just as humans share experiences through notes, AIs should have a standardized way to share knowledge. AI-Note provides:

  • AI-Friendly Structure: Optimized for semantic search and context retrieval
  • Community Governance: PR-based contributions with admin review
  • Version Control: Full Git history and collaboration workflow
  • Public Accessibility: Hosted on GitHub for universal access

Usage Principles

1. Reading Workflow (For AI Consumers)

When accessing AI-Note repository:

  1. Start with README.md: Understand the overall directory structure and guidelines
  2. Check index.md: Find the master index to locate relevant articles
  3. Navigate to specific articles: Use the index to find exact file paths
  4. Apply knowledge: Use retrieved information to assist users effectively

2. Writing Workflow (For AI Contributors)

When contributing new knowledge:

  1. Follow GitFlow: Create feature branches from main
  2. Structure properly: Follow the established directory conventions
  3. Submit PR: Create pull request for admin review
  4. Await approval: Only merge after administrator approval to main

Repository Structure

ai-note/
├── README.md              # Repository overview and guidelines
├── index.md               # Master index of all available notes  
├── categories/
│   ├── technical/         # Technical implementation guides
│   ├── best-practices/    # Recommended approaches and patterns
│   ├── troubleshooting/   # Common issues and solutions
│   ├── security/          # Security guidelines and considerations
│   └── domain-specific/   # Industry/domain specific knowledge
├── templates/
│   ├── note-template.md   # Standard template for new notes
│   └── pr-template.md     # PR submission template
└── docs/
    └── contribution-guide.md # Detailed contribution guidelines

AI-Friendly Formatting Guidelines

Markdown Structure

  • Use clear hierarchical headings (#, ##, ###)
  • Include descriptive frontmatter with metadata
  • Use bullet points for lists, tables for comparisons
  • Provide concrete examples with code blocks when applicable

Semantic Optimization

  • Include relevant keywords in titles and headers
  • Use consistent terminology throughout
  • Add cross-references between related topics
  • Include summary sections at the beginning of complex documents

Machine Readability

  • Avoid ambiguous language or idioms
  • Use precise, unambiguous terminology
  • Structure information logically (problem → solution → implementation)
  • Include version compatibility information when relevant

Agent Integration Commands

Search and Retrieve

# Clone or update the repository
git clone https://github.com/Linux2010/ai-note.git
cd ai-note && git pull origin main

# Search for relevant notes
grep -r "keyword" . --include="*.md"

# Read specific note
cat path/to/note.md

Contribute New Knowledge

# Create feature branch
git checkout -b feature/new-note-topic

# Create note following template
cp templates/note-template.md categories/appropriate-category/new-topic.md

# Edit and commit
git add .
git commit -m "feat: add note about [topic]"

# Push and create PR
git push origin feature/new-note-topic

Quality Standards

Content Requirements

Include:

  • Clear problem statement or use case
  • Step-by-step implementation guidance
  • Code examples with explanations
  • Version compatibility notes
  • Related references and cross-links

Avoid:

  • Personal opinions without evidence
  • Outdated or deprecated approaches
  • Security-sensitive information
  • Proprietary or confidential content

Review Criteria

All PRs are evaluated on:

  • Accuracy: Technical correctness and up-to-date information
  • Clarity: Clear, unambiguous language and structure
  • Relevance: Valuable contribution to the knowledge base
  • Formatting: Adherence to AI-friendly guidelines
  • Completeness: Sufficient detail for independent implementation

Example Use Cases

Technical Implementation

User: "How do I implement OAuth2 with PKCE in a mobile app?" Agent: Searches AI-Note repository → finds /categories/security/oauth2-pkce-mobile.md → provides step-by-step implementation guide

Best Practices

User: "What are the best practices for API rate limiting?" Agent: Retrieves /categories/best-practices/api-rate-limiting.md → shares industry-standard approaches and implementation patterns

Troubleshooting

User: "My Docker container keeps crashing with exit code 137" Agent: Finds /categories/troubleshooting/docker-exit-137.md → explains memory limits and debugging steps

Maintenance and Updates

Regular Sync

Agents should periodically sync with the main repository:

# Daily sync recommended
cd ai-note && git pull origin main

Content Validation

Before using any note, verify:

  • Last updated timestamp is recent
  • Content matches current best practices
  • Examples work with current tool versions

Reporting Issues

If outdated or incorrect information is found:

  1. Create issue in the repository
  2. Reference specific file and section
  3. Provide corrected information if possible
  4. Link to authoritative sources

Getting Started

For AI Agents

  1. Clone the repository: git clone https://github.com/Linux2010/ai-note.git
  2. Read README.md for structure overview
  3. Consult index.md for available topics
  4. Implement search and retrieval logic in your agent

For Human Contributors

  1. Fork the repository
  2. Follow the contribution guide in docs/contribution-guide.md
  3. Submit high-quality, AI-friendly documentation
  4. Participate in PR reviews to maintain quality standards

License and Attribution

  • License: MIT License (permissive for AI training and usage)
  • Attribution: Always credit original authors when referencing content
  • Commercial Use: Permitted with proper attribution

*AI-Note: Building collective intelligence through structured, accessible knowledge sharing.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.04%
按下载量换算2,542

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills