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

推荐订阅源

雷峰网
雷峰网
博客园 - 叶小钗
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
D
Docker
J
Java Code Geeks
B
Blog
G
Google Developers Blog
小众软件
小众软件
博客园 - 聂微东
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
量子位
WordPress大学
WordPress大学
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
腾讯CDC
Martin Fowler
Martin Fowler
V
Visual Studio Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
"My Mobile Coding Agent Kept Starting New Sessions. I Tau...
CodeKing · 2026-05-08 · via DEV Community

I liked the idea of controlling Codex and Claude Code from Telegram and Feishu.

I did not like what happened after the first task finished.

I'd ask for a change like "make the button green" or "retry that one", and my gateway would sometimes start a brand-new runtime with the wrong assumptions instead of continuing the work that had just happened.

That sounds small until you use it on a phone. On mobile, follow-up messages are short, vague, and full of implied context. If the system forgets the last task, the whole experience turns into "re-explain everything in one sentence."

The annoying failure mode

The setup was already pretty good:

  • /cx <task> starts Codex
  • /cc <task> starts Claude Code
  • plain follow-up messages keep using the current runtime session

The breakage showed up after the active session was no longer the obvious routing target.

For example:

  1. I send /cc create a login page
  2. Claude Code finishes
  3. I send make the button green

What I actually mean is obvious: continue the work that just finished, preferably with the same provider.

What many chat-style integrations do instead is one of these:

  • treat that sentence as a brand-new task with no memory
  • send it to the default provider instead of the previous one
  • forward status questions like progress back into the runtime as if they were coding prompts

That is tolerable on desktop. On Telegram, it is miserable.

The fix was not "more prompt magic"

I first thought this was a prompt problem.

It was not.

The real issue was that the channel layer needed a small structured memory about the conversation's most recent task, even after the runtime session had ended or detached.

So in CliGate, I added a remembered supervisor path built around a per-conversation brief:

  • task title
  • provider
  • last known status
  • summary/result/error
  • next suggestion

That brief becomes the thing the channel gateway can reason from when the user sends a messy mobile follow-up.

What changed in practice

Now the system distinguishes between a few high-confidence follow-up intents:

  • "continue what we were doing"
  • "retry that"
  • "go back to the previous task"
  • "start a related sibling task"

One of the small routing pieces looks like this:

if (isDescriptiveTaskFollowUp(input) || isNaturalLanguageTaskContinueIntent(input)) {
  return {
    originKind: 'remembered_follow_up',
    reuseTaskIdentity: true
  };
}

Enter fullscreen mode Exit fullscreen mode

That alone is not enough, so the remembered path also carries source-task context forward:

if (originKind === 'remembered_follow_up' && sourceTitle) {
  return `Continuing remembered task "${sourceTitle}" with a fresh execution.`;
}

Enter fullscreen mode Exit fullscreen mode

The important part is the behavior, not the string:

  • if the old runtime is gone, start fresh with remembered context
  • prefer the same provider that handled the original task
  • keep the relationship to the source task explicit

That last part matters more than I expected. Once the new execution records that it came from a remembered follow-up, later status replies and wrap-ups can explain what it is actually continuing.

Mobile follow-ups became much less fragile

After that change, these messages stopped feeling random:

make the button green
另外再做一个:生成部署说明
retry that
return to the previous task
progress
summarize

Enter fullscreen mode Exit fullscreen mode

Some of them should continue work. Some should start a related task. Some should never touch the runtime at all.

For example, CliGate now answers natural-language status questions from remembered task state when possible, instead of blindly forwarding progress or done? into Codex or Claude Code as if those were user prompts for code generation.

That sounds obvious, but it only becomes reliable once the channel conversation stores a durable supervisor brief.

I also had to preserve provider preference

This was another subtle bug.

Say the last successful task ran on Claude Code, but the conversation's default provider is Codex. If the user sends:

把按钮改成绿色

Enter fullscreen mode Exit fullscreen mode

I do not want the channel gateway to silently fall back to the default provider just because the previous session has ended.

So remembered follow-ups prefer the last provider when that intent is high-confidence.

I pinned that with a unit test that effectively checks:

assert.equal(followUp.type, 'runtime_started');
assert.equal(followUp.provider, 'claude-code');
assert.equal(followUp.startedFresh, true);

Enter fullscreen mode Exit fullscreen mode

That was the difference between "this remembers my workflow" and "this is just a chatbot with commands."

The UX outcome I actually wanted

The goal was simple:

  • use /cx or /cc to start work explicitly
  • keep plain-language follow-ups natural
  • let status/wrap-up questions be answered from task memory
  • avoid forcing users to restate the previous task on mobile

This is now built into CliGate's channel layer for Telegram and Feishu, along with conversation records in the dashboard so I can inspect what the gateway thought the task context was.

That combination ended up being more useful than I expected:

  • mobile keeps the fast, messy input style people actually use
  • the dashboard keeps the execution history inspectable
  • the supervisor layer has enough structure to avoid random session drift

If you're building AI tooling over chat, this is the part to not fake

A lot of agent demos look good as long as every message is a fully specified instruction.

Real usage is mostly:

  • "continue that"
  • "change this part"
  • "retry"
  • "what happened?"

If your system cannot survive those messages, it does not really remember the work. It only remembers the last prompt.

If you want to see how I implemented it, the project is here:

https://github.com/codeking-ai/cligate

I'm curious how other people are handling mobile follow-ups for coding agents. Are you keeping strict session binding, remembered task summaries, or something else entirely?