Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Releases: andiupn/andy-universal-agent-rules

v1.2.1 - Maintenance & Optimization Update

06 Jun 17:31
@andiupn andiupn

Choose a tag to compare

Workspace alignment, dependency configuration, and general optimization updates as of June 7, 2026.

Assets 2
Loading

v1.0.0 - Initial Release (Universal AI Agent Rules System)

30 May 06:50
@andiupn andiupn

Choose a tag to compare

๐Ÿง  Rilis Perdana: Universal AI Agent Rules v1.0.0

Sistem basis pengetahuan (knowledge base) dan aturan asisten AI universal pertama yang membuat asisten AI coding Anda (Cursor, Windsurf, GitHub Copilot, Antigravity) menjadi jauh lebih cerdas dan memahami konteks proyek secara mendalam.

โœจ Fitur Utama:

  • Universal Ruleset: Aturan .cursorrules / .windsurfrules yang kompatibel dengan multi-OS.
  • Kerangka Memori Otomatis: Panduan memori jangka pendek dan jangka panjang yang rapi.
  • Integrasi Penuh: Dilengkapi dengan petunjuk penataan folder kerja asisten AI Anda.

โ˜• Dukung Kami

Dukung kami via Ko-Fi atau Trakteer. Temukan panduan premium lengkapnya di kuncimu.com .

Loading

v1.2.0

11 Jan 10:13
@andiupn andiupn
47937c0
This commit was created on GitHub.com and signed with GitHubโ€™s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

What's Changed

  • improve documentation and sytem quick installer by @andiupn in #1
  • Feature/add workflows by @andiupn in #2

New Contributors

Full Changelog: https://github.com/andiupn/andy-universal-agent-rules/commits/v1.2.0

Contributors

andiupn
Loading

First Release

08 Jan 07:02
@andiupn andiupn
1e243e4
This commit was created on GitHub.com and signed with GitHubโ€™s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

v1.1.0 - Workflows as Core Feature + Enhanced Documentation

๐ŸŽ‰ What's New

Workflows Now Core Feature

All 6 AI workflows are now installed by default, making knowledge management effortless:

  • /maintenance - Keep knowledge base healthy (validates index, creates backups, updates environment)
  • /save-from-chat - Save learnings from current chat session
  • /search - Quick knowledge search before starting work
  • /simpan-pengetahuan-dari-chat ๐Ÿ‡ฎ๐Ÿ‡ฉ - Indonesian version of save-from-chat
  • /simpan-pengetahuan-dari-folder ๐Ÿ‡ฎ๐Ÿ‡ฉ - Save knowledge from folder
  • /maintenance-agent-rules - Agent rules specific maintenance

Just tell your AI: "Run the maintenance workflow" or "Save learnings from this chat"


Enhanced Documentation

Quick Start Section:

  • 3-step installation guide
  • Video tutorial placeholder for future

Using Workflows Guide:

  • Detailed explanation of each workflow
  • Usage examples
  • Editor compatibility tips

FAQ Section (5 questions):

  • How is this different from .cursorrules?
  • Can I use this with multiple projects?
  • How do I uninstall?
  • Does this work offline?
  • Will this slow down my editor?

Troubleshooting Section (5 solutions):

  • Python not found
  • Permission errors
  • Git conflicts
  • Workflows not working
  • ModuleNotFoundError

Better Repository Visibility:

  • 5 new badges (version, issues, PRs, platform, Python requirement)
  • GitHub Sponsor button enabled

Improved Contributor Experience:

  • 4 GitHub issue templates (Bug Report, Feature Request, Question, Workflow Contribution)
  • Enhanced CONTRIBUTING.md with dev setup, testing guide, PR workflow, code style guidelines

๐Ÿ“ฅ Installation

Quick Install (Recommended)

Windows (PowerShell):

iwr -useb https://raw.githubusercontent.com/andiupn/andy-universal-agent-rules/v1.1.0/install.ps1 | iex

Linux/Mac (Bash):

curl -sL https://raw.githubusercontent.com/andiupn/andy-universal-agent-rules/v1.1.0/install.sh | bash

What Gets Installed

your-project/
โ”œโ”€โ”€ AGENTS.md # AI reads this first
โ””โ”€โ”€ .agent/
 โ”œโ”€โ”€ scripts/ # 6 Python automation scripts
 โ”œโ”€โ”€ workflows/ # 6 AI workflows (๐Ÿ†• CORE FEATURE)
 โ”œโ”€โ”€ memory/ # Your knowledge base
 โ”‚ โ”œโ”€โ”€ index.json
 โ”‚ โ””โ”€โ”€ entries/
 โ”‚ โ”œโ”€โ”€ gotchas/
 โ”‚ โ”œโ”€โ”€ patterns/
 โ”‚ โ”œโ”€โ”€ decisions/
 โ”‚ โ””โ”€โ”€ context/
 โ””โ”€โ”€ context/ # Environment detection
 โ””โ”€โ”€ environment.json

๐Ÿ”„ Upgrading from v1.0.0

If you installed v1.0.0, your workflows folder may be empty or incomplete.

To upgrade:

# 1. Backup your knowledge (recommended)
python .agent/scripts/backup-memory.py
# 2. Re-run installer to get all workflows
cd your-project
iwr -useb https://raw.githubusercontent.com/andiupn/andy-universal-agent-rules/main/install.ps1 | iex
# 3. Choose 'y' when asked to overwrite
# Your knowledge in .agent/memory/ will be preserved

What gets updated:

  • โœ… All 6 workflows installed in .agent/workflows/
  • โœ… Scripts updated (if any changes)
  • โœ… AGENTS.md template refreshed

What stays safe:

  • โœ… Your knowledge entries in .agent/memory/entries/
  • โœ… Your index.json
  • โœ… Your custom modifications to AGENTS.md (if you don't overwrite)

๐Ÿ“ Full Changelog

Added

  • Quick Start Section in README.md with 3-step installation guide
  • Using Workflows Section in README.md explaining /maintenance, /save-from-chat, /search
  • FAQ Section in README.md with 5 common questions
  • Troubleshooting Section in README.md with 5 solutions
  • 5 New Badges to README.md (version, issues, PRs, platform, Python)
  • 4 Issue Templates in .github/ISSUE_TEMPLATE/
  • Workflows as Core Feature: All 6 workflows now installed by default

Changed

  • Enhanced CONTRIBUTING.md with development setup, testing guide, PR workflow, code style guidelines
  • Updated CHANGELOG.md with semantic versioning adherence
  • install.ps1: Now downloads all 6 workflows automatically
  • install.sh: Now downloads all 6 workflows automatically

Fixed

  • Installation consistency across Windows and Linux/Mac platforms
  • Workflow installation completeness - users now get full feature set
  • AGENTS.md table header language consistency

๐ŸŽฏ Supported Editors

  • โœ… Antigravity (Gemini/Claude) - Full workflow support
  • โœ… Cursor AI (Agent Mode) - Full workflow support
  • โœ… Kiro AI - Full workflow support
  • โœ… VSCode + GitHub Copilot - Use Python scripts directly
  • โœ… Windsurf Editor - Compatible

๐Ÿ’– Support This Project

If this saves you hours of debugging, consider supporting:

Platform Link
Ko-fi ko-fi.com/andiupn
Patreon patreon.com/AndiUpn
Trakteer ๐Ÿ‡ฎ๐Ÿ‡ฉ trakteer.id/andi_upn
Saweria ๐Ÿ‡ฎ๐Ÿ‡ฉ saweria.co/andiupn

๐Ÿ“š Resources


Thank you for using andy-universal-agent-rules! ๐Ÿ™

Made with โค๏ธ by Andi UPN

What's Changed

  • improve documentation and sytem quick installer by @andiupn in #1
  • Feature/add workflows by @andiupn in #2

New Contributors

Full Changelog: https://github.com/andiupn/andy-universal-agent-rules/commits/v1.1.0

Contributors

andiupn
Loading

AltStyle ใซใ‚ˆใฃใฆๅค‰ๆ›ใ•ใ‚ŒใŸใƒšใƒผใ‚ธ (->ใ‚ชใƒชใ‚ธใƒŠใƒซ) /