instruction stringlengths 34 78 | ilang_chain stringlengths 101 429 | natural_language stringlengths 143 282 | category stringlengths 6 17 | verb_count int64 3 9 | aliases_used stringclasses 2
values |
|---|---|---|---|---|---|
Read a CSV file, filter rows, compute statistics, and output a markdown report | [PROTOCOL:I-Lang|v=3.0]
[READ:@LOCAL|path=sales.csv]
=>[FILT|whr=revenue>10000]
=>[GRP|grp=region]
=>[STAT|col=revenue]
=>[SORT|srt=mean,desc]
=>[FMT|fmt=md]
=>[WRIT:@LOCAL|path=report.md] | Read the sales.csv file, keep only rows where revenue exceeds 10000, group by region, calculate revenue statistics for each group, sort by mean revenue descending, format as markdown, and save to report.md | data_processing | 7 | null |
Scan codebase for TODO comments and generate a prioritized task list | [PROTOCOL:I-Lang|v=3.0]
[READ:@LOCAL|path=src/]
=>[FILT|mch=*.ts,*.tsx]
=>[SCAN|whr=TODO,FIXME,HACK,XXX]
=>[CLSF|typ=priority]
=>[SORT|srt=priority,desc]
=>[FMT|fmt=md]
=>[OUT] | Read all TypeScript files in the src directory, find all TODO, FIXME, HACK, and XXX comments, classify them by priority, sort highest priority first, format as markdown, and display the results | codebase_analysis | 7 | null |
Batch translate a README into 8 languages | [PROTOCOL:I-Lang|v=3.0]
[READ:@LOCAL|path=README.md]
=>[BATC|op=XLAT,lng=ja,ko,es,fr,de,pt,ru,zh]
=>[WRIT:@LOCAL|path=docs/README.{lng}.md] | Read README.md, translate it into Japanese, Korean, Spanish, French, German, Portuguese, Russian, and Chinese, saving each translation to the docs directory with the appropriate language code in the filename | localization | 3 | null |
Build a REST API endpoint with validation | [PROTOCOL:I-Lang|v=3.0]
[PLAN|goal=rest_endpoint]
=>[DRFT|typ=api_handler|mth=POST|path=/users]
=>[DRFT|typ=validation|lib=zod]
=>[DRFT|typ=error_handler]
=>[TEST|typ=unit,integration]
=>[WRIT:@LOCAL|path=src/routes/users.ts] | Plan a REST API endpoint, draft a POST /users handler, add Zod input validation, add error handling, write unit and integration tests, and save everything to the routes file | api_development | 5 | null |
Review a pull request for security and performance issues | [PROTOCOL:I-Lang|v=3.0]
[READ:@GH|path=pull/142]
=>[EVAL|focus=security,performance|depth=thorough]
=>[SCAN|whr=vulnerability,bottleneck]
=>[CLSF|typ=severity]
=>[FMT|fmt=md]
=>[OUT] | Read pull request #142 from GitHub, evaluate it thoroughly for security and performance issues, scan for vulnerabilities and bottlenecks, classify findings by severity, format as markdown, and display the review | code_review | 6 | null |
Deploy a static site to Cloudflare Pages | [PROTOCOL:I-Lang|v=3.0]
[PLAN|goal=deploy_static]
=>[EXEC|cmd=npm run build]
=>[TEST|typ=smoke|url=localhost:3000]
=>[EXEC|cmd=wrangler pages deploy dist/]
=>[TEST|typ=smoke|url=production_url]
=>[OUT|msg=deployment_status] | Plan the deployment, run the build command, smoke test locally, deploy to Cloudflare Pages using Wrangler, smoke test the production URL, and report deployment status | deployment | 6 | null |
Generate a database migration with rollback | [PROTOCOL:I-Lang|v=3.0]
[PLAN|goal=db_migration]
=>[DRFT|typ=migration_up|table=orders|col=status:enum]
=>[DRFT|typ=migration_down|table=orders|col=status]
=>[EVAL|sty=safety_check|whr=data_loss]
=>[WRIT:@LOCAL|path=migrations/003_add_order_status.sql] | Plan a database migration, draft the up migration adding a status enum column to orders table, draft the corresponding down migration, evaluate for potential data loss, and save the migration file | database | 4 | null |
Set up a CI/CD pipeline with GitHub Actions | [PROTOCOL:I-Lang|v=3.0]
[PLAN|goal=ci_cd_pipeline]
=>[DRFT|typ=workflow|trigger=push,pr]
=>[DRFT|typ=job|name=test|steps=checkout,install,lint,test]
=>[DRFT|typ=job|name=deploy|steps=build,deploy|needs=test]
=>[EVAL|sty=security_check|whr=permissions,secrets]
=>[WRIT:@LOCAL|path=.github/workflows/ci.yml] | Plan a CI/CD pipeline, draft a GitHub Actions workflow triggered on push and PR, create a test job with checkout, install, lint, and test steps, create a deploy job that depends on test passing, review security of permissions and secrets handling, and save the workflow file | devops | 5 | null |
Refactor a monolithic function into smaller composable units | [PROTOCOL:I-Lang|v=3.0]
[READ:@LOCAL|path=src/processOrder.ts]
=>[SCAN|whr=responsibility,side_effect]
=>[PLAN|goal=decompose|strategy=single_responsibility]
=>[DRFT|typ=refactor|pattern=extract_function]
=>[TEST|typ=regression]
=>[WRIT:@LOCAL|path=src/orders/] | Read the monolithic processOrder file, scan for distinct responsibilities and side effects, plan decomposition using single responsibility principle, draft refactored code extracting separate functions, run regression tests, and save the decomposed modules to the orders directory | refactoring | 6 | null |
Generate API documentation from source code | [PROTOCOL:I-Lang|v=3.0]
[READ:@LOCAL|path=src/routes/]
=>[FILT|mch=*.ts]
=>[SCAN|whr=endpoint,handler,param,response]
=>[FMT|fmt=openapi_yaml]
=>[WRIT:@LOCAL|path=docs/api.yaml]
=>[FMT|fmt=md]
=>[WRIT:@LOCAL|path=docs/API.md] | Read all TypeScript files in the routes directory, scan for endpoint definitions, handlers, parameters, and response types, generate an OpenAPI YAML spec, save it, also generate a human-readable markdown version, and save that too | documentation | 7 | null |
Analyze dependencies for security vulnerabilities | [PROTOCOL:I-Lang|v=3.0]
[READ:@LOCAL|path=package.json]
=>[EXEC|cmd=npm audit --json]
=>[SCAN|whr=severity:high,severity:critical]
=>[CLSF|typ=severity]
=>[SORT|srt=severity,desc]
=>[DRFT|typ=fix_plan]
=>[OUT] | Read the package.json, run npm audit, filter for high and critical severity vulnerabilities, classify by severity, sort most critical first, draft a fix plan for each vulnerability, and display the results | security | 7 | null |
Create a complete landing page from a description | [PROTOCOL:I-Lang|v=3.0]
[PLAN|goal=landing_page|sections=hero,features,pricing,cta]
=>[DRFT|typ=html|framework=tailwind]
=>[DRFT|typ=copy|ton=professional]
=>[DRFT|typ=responsive|breakpoints=sm,md,lg]
=>[EVAL|sty=accessibility|whr=aria,contrast,keyboard]
=>[WRIT:@LOCAL|path=index.html] | Plan a landing page with hero, features, pricing, and call-to-action sections, draft the HTML using Tailwind CSS, write professional copy, ensure responsive design across breakpoints, evaluate accessibility for ARIA labels, contrast, and keyboard navigation, and save the final page | frontend | 5 | null |
Greek alias shorthand for quick file processing | [PROTOCOL:I-Lang|v=3.0]
[READ:@LOCAL|path=logs/]=>[φ|mch=*.log]=>[∇|srt=size,desc]=>[μ|col=size]=>[Ω] | Read the logs directory, filter for .log files (φ=FILT), sort by size descending (∇=SORT), compute size statistics (μ=STAT), and output (Ω=OUT) | greek_aliases | 5 | φ=FILT, ∇=SORT, μ=STAT, Ω=OUT |
Merge multiple configuration files and detect conflicts | [PROTOCOL:I-Lang|v=3.0]
[READ:@LOCAL|path=config/]
=>[FILT|mch=*.json]
=>[Σ|strategy=deep_merge]
=>[SCAN|whr=conflict,override]
=>[Δ|base=config/default.json]
=>[WRIT:@LOCAL|path=config/merged.json] | Read all JSON files in the config directory, deep merge them (Σ=MERGE), scan for conflicting values, diff against the default config (Δ=DIFF), and save the merged result | greek_aliases | 6 | Σ=MERGE, Δ=DIFF |
Full project scaffolding from zero | [PROTOCOL:I-Lang|v=3.0]
[PLAN|goal=scaffold|stack=node,typescript,express,postgresql]
=>[EXEC|cmd=npm init -y]
=>[EXEC|cmd=npm i express pg zod dotenv]
=>[EXEC|cmd=npm i -D typescript @types/express @types/pg]
=>[DRFT|typ=tsconfig]
=>[DRFT|typ=project_structure|dirs=src/routes,src/db,src/middleware]
=>[DRFT... | Plan a Node.js TypeScript Express PostgreSQL project, initialize npm, install production and dev dependencies, create tsconfig, set up directory structure, draft the entry point, Dockerfile, and README, and save everything to the current directory | scaffolding | 9 | null |
⚡ AutoCode
You say it. AutoCode ships it.
🇨🇳 中文 · 🇯🇵 日本語 · 🇰🇷 한국어 · 🇪🇸 Español · 🇧🇷 Português · 🇩🇪 Deutsch · 🇫🇷 Français · 🇷🇺 Русский · 🇸🇦 العربية · 🇮🇳 हिन्दी
Every AI coding tool helps you write code. AutoCode helps you ship it.
You say what you want. AutoCode builds it, deploys it, and gives you a live URL. You don't need to know programming. You just say yes or no. When it's done, anyone in the world can visit your website.
🚀 Install
Claude Code (recommended):
/install autocode
That's it. One command. View on Claude Code Marketplace
Or from GitHub:
/plugin marketplace add ilang-ai/autocode
/plugin install autocode@autocode
Restart. Start talking. Done.
Codex
Tell Codex:
Fetch and follow instructions from https://raw.githubusercontent.com/ilang-ai/autocode/refs/heads/main/.codex/INSTALL.md
OpenCode
Tell OpenCode:
Fetch and follow instructions from https://raw.githubusercontent.com/ilang-ai/autocode/refs/heads/main/.opencode/INSTALL.md
Works on Claude Code, Codex, and OpenCode. Same 47 skills, zero changes.
Hermes Agent
hermes skills install ilang-ai/autocode
Cursor
Copy skills/ into ~/.cursor/skills/, or browse Cursor Directory once listed.
Gemini CLI
gemini extensions install https://github.com/ilang-ai/autocode
Any SKILL.md-compatible agent
Copy the skills/ directory into your agent's skills path.
🔰 New to Everything? No Problem.
Never used a server before? Don't know what a terminal is? That's fine — this guide starts from zero.
Click here for the complete beginner guide
Step 1: Get a Cloud Computer
You need a cloud computer (VPS) — think of it as a computer in the cloud that's always on.
👉 Go to dev.ilang.ai — new users get $300 free credit (enough for over a year).
How to sign up:
- Click the link → registration page
- Enter email, create password (10+ characters, mix of uppercase, lowercase, numbers)
- Check email, click verification link
- Payment: supports credit card, PayPal, Alipay (支付宝)
- $300 free credit applied automatically
Create your cloud computer:
- Click "Deploy +" (top right)
- "Deploy New Server"
- Type: "Cloud Compute — Shared CPU" (cheapest)
- Location: Closest to you (Tokyo for Asia, New York for Americas, London for Europe)
- Image: "Debian 12"
- Plan: $6/month (1 CPU, 1GB RAM — enough)
- Click "Deploy Now"
Wait 1-2 minutes. Green "Running" = ready.
Find your connection info:
Click server name → you'll see:
- IP Address — like
149.28.xxx.xxx - Username —
root - Password — click eye icon to show, copy button to copy
Step 2: Connect
Windows: Download PuTTY. Enter IP, click Open. Type username and password.
Mac: Open Terminal. Type: ssh root@your-ip-address. Enter password.
Phone: Download "Termius". Add host with IP, username, password.
Black screen with # = you're in.
Step 3: Install Everything
Paste this, press Enter, wait 2 minutes:
curl -fsSL https://raw.githubusercontent.com/ilang-ai/autocode/main/setup.sh | bash
Step 4: Start Claude Code
claude
Log in when prompted (Anthropic account needed).
Step 5: Install AutoCode
Say:
Install the AutoCode plugin from github.com/ilang-ai/autocode
Permission questions? Always choose the highest number ("Yes, don't ask again"). Safe — AutoCode is pure text, no executable code.
Type /exit, then claude to restart.
Step 6: Build
Build me a restaurant website with online reservations
You're a developer now.
📖 What You'll Experience
First Time
You: "I want to sell cakes online"
AutoCode: "What computer do you use? Mac or other?"
You: "Other"
AutoCode: "I'll help you get a server. $6/month. OK?"
You: "OK"
AutoCode: → Sets up server → Builds website → Deploys
→ "Done. Open nainai-cake.com on your phone."
Your effort: 3 yes/no answers
Result: a live website anyone can visit
Fifth Time
You: "Build a booking site for my hair salon"
AutoCode: → Knows your preferences → Builds → Deploys
→ "Live at salon-booking.com. SSL active."
Twentieth Time
You: "New project"
AutoCode: → Barely asks → Ships it → You realize you have 20 live websites
User feedback: "I don't even know who did the work — I thought I was supposed to code, but it was already done."
🧠 46 Skills
All automatic. You never activate them.
📋 Understanding (5)
| Skill | What it does |
|---|---|
| Intent Detection | Knows what you want instantly |
| Smart Questions | Max 2, never technical |
| Scope Detection | Small task or big project |
| Communication Adapt | Matches your language and level |
| Requirement Lock | Stays on track |
📐 Planning (6)
| Skill | What it does |
|---|---|
| Task Breakdown | Big → small steps, 2-5 min each |
| Priority | Core first, polish last |
| Time Estimate | "About 20 minutes" |
| Risk Warning | Warns before problems happen |
| Best Choice | Auto-picks fastest/cheapest/most stable tech |
| Decision Translation | Explains in money/speed/stability |
🔨 Building (3)
| Skill | What it does |
|---|---|
| Scaffold | Project foundation |
| Feature Build | One by one |
| UI Build | All devices |
✅ Quality (4)
| Skill | What it does |
|---|---|
| Auto Check | Reviews code logic silently |
| Security | Blocks attacks, encrypts data |
| Performance | Fast + cheap to run |
| Multi-Device | Phone/tablet/desktop |
🔧 Debugging (5)
| Skill | What it does |
|---|---|
| Observe | Investigates on its own |
| Reason | Finds root cause |
| Fix & Verify | Fixes + confirms |
| Explain | Tells you in your words |
| Fix Guide | Stuck? Guides you to screenshot and upload to claude.ai |
💾 Saving (3) — ⭐ Soul of AutoCode
| Skill | What it does |
|---|---|
| ⭐ Full Review | Every save: reviews entire project from beginning. You watch and learn. |
| Milestone | Celebrates achievements |
| Rollback | One-click undo |
🚀 Deployment (4)
| Skill | What it does |
|---|---|
| Local Run | Your server, your URL |
| Global Deploy | CDN, fast everywhere |
| Edge Deploy | Free tier |
| File Transfer | Server-to-server |
📊 Progress (5)
| Skill | What it does |
|---|---|
| Live Progress | "✅ 60% (3/5)" |
| Efficiency Compare | "Outsourcing = $5K. You = 25 min." |
| Celebration | "🎉 Done!" |
| Daily Summary | Today + tomorrow |
| Roadmap | Multi-day plan |
🎓 Learning (3)
| Skill | What it does |
|---|---|
| Preferences | Remembers your style |
| Patterns | Learns what you build |
| Mistakes | Never repeats errors |
⚙️ Engine (2)
| Skill | What it does |
|---|---|
| Compression | I-Lang v3.0 protocol, structured internal planning |
| Memory | Remembers across sessions |
🎯 Precision
Powered by I-Lang v3.0. Structured instructions mean AI gets it right the first time. No rework.
🧠 Memory
Close today → open tomorrow → remembers everything. Gets better every session.
🌍 Different from Everything Else
| Other AI coding tools | AutoCode | |
|---|---|---|
| For | Developers | Anyone |
| Ends at | Code written | Website live |
| Requires | Terminal/IDE knowledge | Just say yes or no |
| Tech decisions | Asks you | Decides for you |
| Deployment | You figure it out | Automatic |
| Domain + SSL | You figure it out | Guided step by step |
| Memory | Resets each session | Persistent |
| Protocol | None | I-Lang v3.0 |
| Language | Usually English | Your language |
❓ Troubleshooting
Something broke, don't know what to say
Say "something's wrong". AutoCode asks simple questions. If it can't fix it in terminal, it tells you how to screenshot + upload to claude.ai./plugin command doesn't work
Just say: "Install the AutoCode plugin from github.com/ilang-ai/autocode". Talking works better than commands.Permission popups I don't understand
Choose the highest number. AutoCode is pure text — safe to approve.Can't connect to server
Check IP, username, password in Vultr dashboard. Server must be green "Running".Is it safe?
100% open source, pure text files. Claude Code verified: "No malicious content."Cost?
AutoCode: free forever (MIT). Cloud computer: $6/month (or free with $300 Vultr credit). Plus Anthropic API usage.ilang.ai · ilang.cn · Hugging Face · @adsorgcn
I-Lang Research · Eastsoft Inc. · Canada · MIT · Free Forever
You say it. AutoCode ships it. Powered by I-Lang v3.0.
- Downloads last month
- 187