惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
J
Java Code Geeks
Jina AI
Jina AI
罗磊的独立博客
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
D
DataBreaches.Net
博客园 - 叶小钗
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
B
Blog
V
Visual Studio Blog
雷峰网
雷峰网
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Manage Hosting via WhatsApp: adminbolt's AI Assistant Wal...
jvrpl · 2026-05-19 · via Hacker News - Newest: "AI"

adminbolt's AI Assistant is a natural-language interface built into the client dashboard that reads panel state, provisions resources, and runs diagnostics from plain English instructions. With the AI Agent Hub introduced in adminbolt 1.0.2, the same assistant pairs to a WhatsApp number, so the conversation you start at your desk continues from your phone. One conversation, two surfaces, the same scoped API access underneath.

The assistant covers the operational range the panel itself covers, websites, databases, mailboxes, SSL, PHP versions, logs, within the user's permission scope. It asks clarifying questions when an instruction is incomplete, requires a confirmation word for destructive operations, and stores nothing sensitive in the browser. The pairing flow takes about thirty seconds and only has to happen once per session window.

This walkthrough covers what the assistant does, how the WhatsApp pairing flow works step by step, the security choices around session duration and the confirmation word, and where the feature fits into a hosting operator's day. Every section pairs an explanation with a screenshot from the panel.

What adminbolt's AI Assistant does

It is a chat widget on the top of the client dashboard that translates plain-English requests into scoped panel API calls, listing websites, adding domains, changing PHP versions, fetching logs, and returns structured responses. The same conversation engine is available over WhatsApp once the user pairs the channel through the AI Agent Hub.

The AI Assistant widget in the panel

The widget sits at the top of the client dashboard, above the resource cards. Empty state, it shows a prompt input and a Connect WhatsApp action.

adminbolt AI Assistant widget on the client dashboard, empty state with prompt input and Connect WhatsApp action

Two design choices matter here. First, the widget is on the dashboard, not buried under a "Tools" submenu, it is one of the first things a client sees on login, which is what determines whether the assistant gets used or ignored. Second, the prompt input streams responses inline rather than opening a separate chat panel. Operators get the answer in the same field of view they were already looking at.

Asking questions: read operations

Type a question, get a structured answer. A query like "show me websites" returns a table with domain, ID, PHP version, and status, not a paragraph of prose paraphrasing a database row.

Structured response to "show me websites", table with domain example.com, ID, PHP 8.4, Active status

The output is structured for a reason. A hosting operator scanning for one specific site does not want to parse English sentences. They want a sortable, copyable table. The values come from the panel API at the moment of the query, so they are current. The model does not invent state from training data; it asks the panel and renders the response.

Useful read queries in the same shape:

  • "show me my websites"
  • "what is my disk usage"
  • "list my SSL certificates"
  • "how many email accounts do I have on example.com"
  • "show recent error logs for shop.example.com"

In production, read queries are also the lowest-risk way to evaluate the assistant in your own environment. They cannot break anything, they show how the model maps language to tool calls, and they expose the terminology your customers actually use ("website" vs "domain" vs "site").

Doing things: multi-turn create operations

The interesting case is when an instruction is incomplete. "Add website example.com" cannot be completed in one shot because the panel needs a PHP version. The assistant asks before acting.

Multi-turn conversation, user types "add website example.com", AI asks which PHP version, user answers 8.4, AI confirms creation

The walked example:

  1. User: "add website example.com"
  2. AI: "Which PHP version would you like for example.com? Choose from: 7.4, 8.0, or 8.4."
  3. User: "8.4"
  4. AI: "Done! example.com has been added with PHP 8.4."

Disambiguation matters in production because the wrong default is a support ticket. Defaulting to the latest stable PHP version breaks legacy WordPress installs and older frameworks; defaulting to an older version wastes the upgrade work the customer just paid for. The two extra seconds to ask are cheaper than the call from the customer whose site went white after a "helpful" choice.

What you can ask for

Five categories cover almost everything operators do day-to-day.

  • Read. "show me websites," "what is my disk usage," "list SSL certificates," "show recent errors for example.com."
  • Create. "add website example.com," "create mailbox info@example.com with a 5 GB quota," "issue a Let's Encrypt certificate for shop.example.com."
  • Modify. "change PHP version on example.com to 8.0," "increase the quota on info@example.com to 10 GB," "enable the HTTPS redirect on shop.example.com."
  • Delete. "remove the subdomain test.example.com," "delete the database wp_oldsite." Each delete is gated by the confirmation word.
  • Diagnose. "why is example.com returning 502," "is mail to gmail.com working," "show me recent failed logins."

The last category is where the language model adds the most over a traditional UI. The assistant can pattern-match across log lines, summarize what it sees, and recommend the next check, in a way that a keyword search through a log file cannot.

Adding WhatsApp: pairing flow

The Connect WhatsApp button sits in the dashboard alongside the AI Assistant widget. Click it to start the pairing flow.

Dashboard with the WhatsApp Connect button highlighted

The reason a phone channel exists at all: most hosting work is reactive. A customer calls about a down site, an alert fires, a deal closes and needs provisioning. None of that happens while sitting in front of the panel. A WhatsApp pairing turns the phone into a partial admin terminal, same scoped permissions, same audit trail, no browser tab required. For operators outside the US, where WhatsApp is the default communication channel for business, that channel is also where customers already are.

The pairing modal: session duration and confirmation word

The Connect button opens a modal with two important configuration choices before the code is generated.

WhatsApp pairing modal, session duration dropdown (Never expire / 1 day / 7 days / 30 days), confirmation word input, Generate pairing code button

Session duration is a dropdown with four options:

  • Never expire, pairing stays active until manually disconnected.
  • 1 day, for one-off mobile access.
  • 7 days, short contractor windows or a weekly re-pair ritual.
  • 30 days, the common monthly cycle.

Confirmation word is a separate input. It is required only for destructive operations, deletes, and the value is stored at the AI Agent Hub, not in the p