← 返回 Skills 市场
karaninfoorigin

my integration

作者 karaninfoorigin · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
42
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install integration
功能描述
my integration enables searching GitHub repositories, reading files, fetching pull requests and commits, and generating summaries for code analysis.
使用说明 (SKILL.md)

Skill Name\r

\r

Overview\r

\r A short description of what this skill does.\r \r Example:\r \r

This skill allows the agent to search GitHub repositories, fetch code snippets, and summarize project structures.\r \r ---\r \r

Metadata\r

\r

name: github-integration\r
version: 1.0.0\r
category: developer-tools\r
description: GitHub integration skill for repositories and code analysis\r
author: Your Name\r
license: MIT\r
```\r
\r
---\r
\r
# Purpose\r
\r
Explain:\r
\r
* Why this skill exists\r
* What problem it solves\r
* Which workflows it supports\r
\r
Example:\r
\r
* Repository analysis\r
* Pull request summaries\r
* File search\r
* Commit history lookup\r
\r
---\r
\r
# Capabilities\r
\r
List the major capabilities of the skill.\r
\r
## Features\r
\r
* Search repositories\r
* Read repository files\r
* Fetch pull requests\r
* Analyze commits\r
* Generate summaries\r
* Semantic search support\r
\r
---\r
\r
# Inputs\r
\r
Describe what input the skill expects.\r
\r
| Input Name | Type   | Required | Description            |\r
| ---------- | ------ | -------- | ---------------------- |\r
| repository | string | Yes      | GitHub repository name |\r
| branch     | string | No       | Branch name            |\r
| query      | string | No       | Search query           |\r
\r
---\r
\r
# Outputs\r
\r
Describe the response structure.\r
\r
| Field   | Type   | Description        |\r
| ------- | ------ | ------------------ |\r
| summary | string | Generated summary  |\r
| files   | array  | Matching files     |\r
| commits | array  | Commit information |\r
\r
---\r
\r
# Environment Variables\r
\r
```env\r
GITHUB_TOKEN=your_token_here\r
API_BASE_URL=https://api.github.com\r
```\r
\r
---\r
\r
# Installation\r
\r
## Clone Repository\r
\r
```bash\r
git clone https://github.com/example/skill.git\r
cd skill\r
```\r
\r
## Install Dependencies\r
\r
```bash\r
npm install\r
```\r
\r
---\r
\r
# Usage\r
\r
## Example Request\r
\r
```json\r
{\r
  "repository": "openai/openai-python",\r
  "query": "embedding implementation"\r
}\r
```\r
\r
## Example Response\r
\r
```json\r
{\r
  "summary": "Found embedding-related files and utilities.",\r
  "files": [\r
    "embeddings.py",\r
    "vector_store.py"\r
  ]\r
}\r
```\r
\r
---\r
\r
# Architecture\r
\r
Explain how the skill works internally.\r
\r
Example Flow:\r
\r
```text\r
User Request\r
    ↓\r
Skill Router\r
    ↓\r
Authentication Layer\r
    ↓\r
GitHub API Client\r
    ↓\r
Processing Layer\r
    ↓\r
Formatted Response\r
```\r
\r
---\r
\r
# Error Handling\r
\r
Common errors and solutions.\r
\r
| Error                | Cause             | Solution          |\r
| -------------------- | ----------------- | ----------------- |\r
| Unauthorized         | Invalid token     | Update API token  |\r
| Rate Limited         | Too many requests | Retry later       |\r
| Repository Not Found | Wrong repo name   | Verify repository |\r
\r
---\r
\r
# Security\r
\r
Describe security considerations.\r
\r
* Store tokens securely\r
* Never expose secrets in logs\r
* Use HTTPS requests only\r
* Apply permission checks\r
\r
---\r
\r
# Best Practices\r
\r
* Cache frequent API responses\r
* Use pagination for large repositories\r
* Validate user inputs\r
* Handle API rate limits\r
\r
---\r
\r
# Dependencies\r
\r
```json\r
{\r
  "axios": "^1.0.0",\r
  "dotenv": "^16.0.0"\r
}\r
```\r
\r
---\r
\r
# Future Improvements\r
\r
* Add vector search\r
* Add webhook support\r
* Add multi-repository analysis\r
* Improve semantic ranking\r
\r
---\r
\r
# Maintainers\r
\r
| Name      | Role      |\r
| --------- | --------- |\r
| Your Name | Developer |\r
\r
---\r
\r
# License\r
\r
MIT License\r
安全使用建议
Before installing, treat this as a lightweight GitHub API helper rather than a complete audited implementation. Use a least-privilege GitHub token, assume repository names, branches, queries, and fetched repository content may be sent to GitHub, and avoid private or sensitive repositories unless you are comfortable with that data flow.
能力评估
Purpose & Capability
The stated capabilities are repository search, file reads, pull request and commit lookup, and summaries; GitHub API access and a GitHub token are coherent with that purpose.
Instruction Scope
The instructions are broad and partly template-like, and they do not clearly spell out what request data or repository-derived content may be sent to GitHub APIs.
Install Mechanism
Installation is described as cloning an example repository and running npm install, but the submitted artifact contains only a markdown skill file and no executable scripts or package files.
Credentials
A GITHUB_TOKEN and GitHub API base URL are proportionate for a GitHub integration, but users should choose minimal token scopes and avoid unnecessary private-repository access.
Persistence & Privilege
No background process, privilege escalation, destructive action, local credential harvesting, or persistent agent behavior is present in the artifact; caching is only listed as a best-practice suggestion.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install integration
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /integration 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of the integration skill. - Enables searching GitHub repositories, fetching files, commits, and pull requests. - Provides summary generation and semantic search capabilities. - Supports repository analysis, file search, and commit history lookup. - Includes error handling guidelines, security recommendations, and usage examples. - Lists installation steps, required environment variables, and major dependencies.
元数据
Slug integration
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

my integration 是什么?

my integration enables searching GitHub repositories, reading files, fetching pull requests and commits, and generating summaries for code analysis. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 42 次。

如何安装 my integration?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install integration」即可一键安装,无需额外配置。

my integration 是免费的吗?

是的,my integration 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

my integration 支持哪些平台?

my integration 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 my integration?

由 karaninfoorigin(@karaninfoorigin)开发并维护,当前版本 v1.0.0。

💬 留言讨论