A Gentle Conversation About Intelligence

AI Enlightenment

Understanding how AI is transforming our work and life, from the ground up

"Any sufficiently advanced technology is indistinguishable from magic."

— Arthur C. Clarke
01

What is Artificial Intelligence?

🧠 Artificial Intelligence Learn Reason Create

Artificial Intelligence (AI) is the technology that enables computers to simulate human intelligence.

Just like teaching a child to understand the world, we "train" computers with massive amounts of data so they can learn to recognize images, understand language, and make decisions.

👁️
Perception

Understand images, comprehend speech

🧩
Reasoning

Analyze information, solve problems

✍️
Generation

Write articles, create images, code

02

The Story of AI

From Turing's dream to the birth of ChatGPT

1950

Turing Test

Alan Turing posed "Can machines think?", sparking AI philosophy

1956

AI is Born

The Dartmouth Conference formally coined "Artificial Intelligence"

1997

Deep Blue Wins

IBM's Deep Blue defeats chess champion Kasparov

2016

AlphaGo

DeepMind's AlphaGo defeats Go champion Lee Sedol

2022

ChatGPT Era

Large Language Models enter everyday life, AI goes mainstream

2024+

AI Agent

AI can not only chat, but autonomously complete complex tasks

03

Large Language Models (LLM)

"The limits of my language mean the limits of my world."

— Ludwig Wittgenstein
📚 Massive Text Data 🤖 LLM Model ✨ Understand & Generate hello 你好 bonjour こんにちは

An LLM is like a "super scholar" who has read every book.

Large Language Models learn the patterns of language by reading massive amounts of text from the internet — books, web pages, code, papers. They don't simply "memorize" answers; they learn the ability to understand context and generate coherent text.

💬

Conversation

Chat naturally like a friend

📝

Writing

Articles, emails, reports

💻

Coding

Write and debug program code

🌐

Translation

Break through language barriers

💡 Notable Models: GPT-4, Claude, Hunyuan, DeepSeek, Llama, etc.
04

Prompt Engineering

The art of talking to AI

❌ Vague Prompt
"Write me something"

AI: What would you like me to write? An article? Email? Code? Please provide more details...

✅ Precise Prompt
"You are a senior technical writer. Please write an email introducing a new project's technical plan to the team. Keep it professional yet friendly, within 300 words."

AI: [Outputs a well-structured, appropriately-toned professional email] ✨

Four Elements of a Great Prompt

1

Role Setting

Tell AI who it is
"You are an experienced product manager"

2

Clear Task

Specify what to do
"Help me analyze this user feedback"

3

Provide Context

Give background info
"This is a social product targeting young people"

4

Output Format

Specify expected form
"Present in a table with priority levels"

05

RAG — Retrieval-Augmented Generation

"Memory is a form of forgetting."

— Jorge Luis Borges
User Question
"What is the company's annual leave policy?"
🔍
Search Knowledge Base
Search relevant content in company documents
📄
Retrieve Context
Find relevant paragraphs in Employee Handbook Ch.3
🤖
LLM Generates Answer
Combine retrieved content to generate accurate answer
Precise Answer
"Per company policy, employees with 1+ year tenure get 5 days annual leave..."

Why Do We Need RAG?

AI Without RAG

Can only rely on training data, may give outdated or inaccurate information, and cannot access internal company knowledge

AI With RAG

Retrieves the latest, most relevant information in real-time, answers are verifiable, greatly reducing "hallucinations"

06

Knowledge Base Applications

Give AI its own "personal library"

🧠

AI + Knowledge Base

📋

Company Policies

📊

Product Docs

💻

Tech Wiki

📞

Customer FAQ

📈

Business Data

📝

Meeting Notes

Typical Use Cases

🏢

Enterprise Smart CS

Upload product manuals and FAQs, AI can accurately answer customer questions

👨‍💻

New Hire Assistant

New colleagues can ask about company policies and processes anytime

📚

Tech Doc Q&A

Developers quickly search API docs and technical solutions

🚀 How-to: On the Knot platform, you can create a knowledge base, upload documents (PDF/Word/web pages), then link it to an agent, enabling AI to answer questions based on your exclusive knowledge.
07

MCP — Model Context Protocol

AI's "Universal Interface"

"The best interface is no interface."

— Golden Krishna, The Best Interface is No Interface
📧 Email System
📅 Calendar
🗄️ Database
🔧 Internal Tools
🌐 Web
📁 File System
MCP Protocol

Standardized Connection Layer

🤖

AI Model

MCP is like the "USB port" of the AI world.

Just as USB allows all kinds of devices to connect to a computer, MCP (Model Context Protocol) enables AI to connect to various external tools and data sources in a unified way.

🔌
Plug & Play

Standardized interface, no need to develop separately for each tool

🔒
Secure & Controlled

Every tool call by AI goes through authorization

🔄
Two-Way Communication

AI can not only read information but also execute actions

08

Skills — AI's "Skill Packs"

📝 📊 🌐 💻 🧰 AI Skill Toolbox

A Skill is a set of predefined instructions and resources that instantly give AI professional capabilities in a specific domain.

Imagine you have a universal assistant — every time you hand it an "operation manual," it immediately masters a new skill. That's how Skills work.

📄 PDF Skill

Read, create, merge PDF files

📊 Excel Skill

Process spreadsheet data, generate charts

🌐 Web Skill

Browse web pages, extract information

🎨 Design Skill

Create beautiful frontend interfaces

💡 Skill vs MCP: Skills focus on injecting "knowledge and processes" into AI, while MCP focuses on letting AI "connect to external tools." They complement each other to enhance AI capabilities.
09

AI Agent — Intelligent Agents

The leap from "conversation" to "action"

Traditional AI Assistant
Book a meeting room for tomorrow morning
Sure, you can log into the meeting room booking system, select a date and time...

🤷 Can only tell you how to do it

VS
AI Agent
Book a meeting room for tomorrow morning
Searching for available meeting rooms tomorrow morning...
Found 3 available rooms, booking A301...
✅ Successfully booked Room A301, tomorrow 9:00-10:00. Calendar invites sent to all attendees.

🚀 Can complete tasks autonomously!

🧠

Autonomous Planning

Break complex tasks into steps

🔧

Tool Invocation

Use various tools to execute actions

🔄

Reflection & Iteration

Adjust strategy based on results

🎯

Goal-Oriented

Keep tracking until completion

10

The Evolution of AI-Assisted Development

From Vibe Coding to Context Engineering to Harness Engineering

"The future of programming is not writing code, but describing intent."

— Andrej Karpathy, Former Tesla AI Director
🎸

Vibe Coding

Early 2025

Intent over syntax — feel your way through the problem

Coined by Andrej Karpathy: describe what you want in natural language, let AI generate code, run it, iterate based on what works. You're not reading every line — you're feeling your way through.

🚀 Rapid prototyping 💬 Natural language input ⚠️ Unpredictable at scale
🧠

Context Engineering

Mid–Late 2025

Design the AI's entire information environment

Not just what you ask, but what AI can see, remember, and act on. Manage retrieval, memory, tool definitions, and conversation history — architect the AI's working conditions.

📚 Knowledge retrieval (RAG) 🧩 Tool & memory design 🔗 Multi-step workflows
⚙️

Harness Engineering

2026

Build production-grade structures around AI agents

Where context engineering focuses on what AI knows, harness engineering focuses on how AI behaves — error recovery, observability, guardrails, and architectural constraints for reliable production deployment.

🛡️ Error recovery & guardrails 👁️ Observability & debugging 🏗️ Production reliability

Each paradigm subsumes the previous one: vibe coding instincts still matter inside a well-designed context, and context engineering becomes one component of the harness. The developer's role shifts from "the person who writes code" to "the person who architects AI collaboration."

11

Open Claw

An open AI capability ecosystem

"My memory of the memory may be no less than the original event itself."

— Jorge Luis Borges, Memory

Open Claw

Shared Skills
Community Collaboration
Capability Reuse
Open Ecosystem
Continuous Evolution

Open Claw is an open ecosystem for sharing AI skills and capabilities.

Like Borges' "Library of Babel" containing every possible book, Open Claw aggregates community-contributed AI skills, where everyone can discover, use, and share AI capabilities.

🌍 Open Sharing

Massive community-contributed skills, available to everyone

🔗 Capability Composition

Combine different skills like building blocks

📈 Continuous Evolution

Community-driven, capabilities keep growing

12

AI Productivity in Action

See how AI transforms daily work

📧

Email & Communication

Before: Spend 30 min crafting wording
Now: Tell AI key points, generated in 1 min
Save 90% Time ⚡
📊

Data Analysis

Before: Manually organize Excel data
Now: Upload file, AI auto-analyzes conclusions
Save 80% Time ⚡
📝

Document Writing

Before: Write proposals from scratch
Now: AI generates draft, you polish
Save 70% Time ⚡
💻

Code Development

Before: Write and debug line by line
Now: Describe needs, AI generates & fixes code
Save 60% Time ⚡
🎨

Design & Creation

Before: Repeatedly revise design drafts
Now: AI quickly generates multiple options to choose from
Save 75% Time ⚡
🔍

Information Retrieval

Before: Browse through piles of documents
Now: Ask AI directly, get answers in seconds
Save 95% Time ⚡
13

How to Start Your AI Journey?

🌱

Step 1: Start a Conversation

Open ChatGPT, Claude, or the Knot platform and try chatting with AI. Start with simple questions like "Help me summarize this text."

💡 Try: Ask AI a question you encounter at work
🌿

Step 2: Learn Prompt Engineering

Master good prompt techniques to make AI output more accurate. Remember: Role + Task + Context + Format.

💡 Try: Use a detailed prompt to have AI write an email for you
🌳

Step 3: Integrate into Workflow

Incorporate AI into daily work — use it to write documents, analyze data, brainstorm, review code.

💡 Try: Complete at least one work task with AI every day
🌲

Step 4: Explore Advanced Features

Try Knowledge Base, MCP, Skills, and other advanced features. Create your own AI assistant that truly understands your business.

💡 Try: Create an agent on the Knot platform
14

Common Myths About AI

"AI will replace my job"

Truth: AI is a tool, not a replacement. People who use AI well will outperform those who don't. Just as calculators didn't replace accountants — they made them more efficient.

"Everything AI says is correct"

Truth: AI can "hallucinate" (fabricate plausible but incorrect content). Always maintain critical thinking; important information needs verification.

"Using AI is cheating"

Truth: AI is a productivity tool, just like a search engine. What matters is how you use it to improve work quality and efficiency.

"AI is too complex, I can't learn it"

Truth: Modern AI tools are designed for everyone to use. You just need to be able to type and describe your needs to get started.

"I do not fear computers. I fear the lack of them."

— Isaac Asimov
15

Core Concepts at a Glance

Concept One-Line Explanation Analogy Use Cases
LLMA super scholar who read every book📚 EncyclopediaChat, writing, translation, coding
PromptThe skill of communicating with AI🎯 Precise instructionsAll AI interaction scenarios
RAGLook up info before answering📖 Open-book examEnterprise Q&A, customer service
Knowledge BaseAI's personal library🏛️ LibraryInternal knowledge management
MCPStandard interface for AI to connect tools🔌 USB portTool integration, automation
SkillsInject professional capabilities into AI🧰 Skill packsDomain-specific tasks
AgentAI assistant that acts autonomously🤖 Smart butlerComplex task automation
HarnessProgramming with natural language🏇 Harnessing powerSoftware development, automation
Open ClawOpen AI capability ecosystem🌐 Skill marketplaceCapability sharing & reuse

AI is not the destination, but the starting point

Explore Infinite Possibilities

"Among all possible futures, the best one requires us to create it."

— Kevin Kelly, The Inevitable

Start now, make AI your most powerful partner

Use ← → keys or scroll wheel to navigate slides