AICode banner
sylearn sylearn

AICode

AI community

Description

A comprehensive collection of AI-related utility scripts designed to simplify AI development workflows and automate common tasks.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

πŸ€– AI Utility Scripts Collection

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Platform](https://img.shields.io/badge/Platform-Windows%20%7C%20macOS%20%7C%20Linux-blue.svg)](https://github.com) [![Shell](https://img.shields.io/badge/Shell-Bash%20%7C%20PowerShell-green.svg)](https://github.com)

[πŸ‡¨πŸ‡³ Chinese](./README_CN.md) | [πŸ‡ΊπŸ‡Έ English](./README.md)

Sponsored by
Sucloud
500+ AI models Β· Text, image, video & audio Β· Top models included Β· Pay-as-you-go

A comprehensive collection of practical AI-related scripts designed to simplify AI development workflows and automate common tasks.

πŸ€– WXn8n WeChat Bot

πŸš€ Features Overview

WXn8n is an intelligent bot that connects WeChat with N8N workflow platform, supporting:

  • πŸ”— N8N Integration - Seamless connection with N8N workflow platform
  • πŸ’¬ Smart Conversations - AI-powered intelligent replies for text messages
  • πŸ“ File Processing - Automatic handling of images, documents, and other file types
  • πŸ‘₯ Group Management - Group chat permission control and user management
  • ⚑ Command System - Rich built-in command functionality (/help, /ps, etc.)
  • πŸ”„ Real-time Monitoring - Real-time monitoring of specified users and groups
  • πŸ›‘οΈ Security Authentication - Webhook authentication and permission control support

πŸ–₯️ System Architecture

graph TD
A["Receive Message"] --> B["MessageContext"]
B --> C["process_message()"]

C --> D{File Message?}
D -->|Yes| E["MessageHandler.handle_file_message()"]
E --> F["Save File and Reply"]

D -->|No| G{Group Permission Check}
G -->|No Permission| H["Silent Processing"]
G -->|Has Permission| I{Is Command?}

I -->|Yes| J["CommandSystem.has_command()"]
J -->|Found|