Shuge Unlimited
Author

Shuge Unlimited

Formerly "Ops with Skill", now officially upgraded. Fully dedicated to AI, we share both the why (fundamental insights) and the how (practical implementation). From technical operations to breakthrough thinking, we help you understand AI's transformation and master the core abilities needed to shape the future. ShugeX: boundless exploration, skillful execution.

126
Articles
0
Likes
1.0k
Views
0
Comments
Recent Articles

Latest from Shuge Unlimited

100 recent articles max
Shuge Unlimited
Shuge Unlimited
Sep 16, 2026 · Databases

Why Milvus 3.0 Pagination Breaks After Reranking: When Cursor Scores Cross Worlds

Milvus 3.0's search iterator pagination fails after reranking because the cursor uses the last page's score as a boundary, but reranking replaces ANN distances with model predictions (e.g., XGBoost raw scores), causing the filter condition to exclude nothing and return duplicate pages. Milvus now explicitly rejects combining function chains with search iterators rather than fixing pagination, as the fix would require carrying original distances through the entire reduce pipeline—a feature-level change. Workarounds include using offset within single-search limits or moving reranking to the application layer.

MilvusXGBoostfunction chain
0 likes · 21 min read
Why Milvus 3.0 Pagination Breaks After Reranking: When Cursor Scores Cross Worlds
Shuge Unlimited
Shuge Unlimited
Sep 14, 2026 · Databases

Milvus 3.0 Upgrade Is Easy, Rollback Is the Real Danger

This article analyzes why rolling back a Milvus 3.0 upgrade is far riskier than the upgrade itself, explaining how Storage V3, index version changes, WAL message semantics, and SDK/proto contracts create irreversible state boundaries that a simple image tag revert cannot undo.

CompactionLoon FFIMilvus
0 likes · 21 min read
Milvus 3.0 Upgrade Is Easy, Rollback Is the Real Danger
Shuge Unlimited
Shuge Unlimited
Sep 12, 2026 · Artificial Intelligence

Why Your DeepSeek Harness Agent Stops: It's Not a Bug, It's Authorization

DeepSeek Harness uses three distinct continuation mechanisms—Goal, Ralph, and Workflow—each with explicit trade-offs: Goal requires human resume due to non-persisted activation, Ralph runs fresh sessions with shared workspace, and Workflow lets models write orchestration scripts in isolated worker threads.

AI agentsDeepSeek HarnessGoal mechanism
0 likes · 24 min read
Why Your DeepSeek Harness Agent Stops: It's Not a Bug, It's Authorization
Shuge Unlimited
Shuge Unlimited
Sep 7, 2026 · Artificial Intelligence

DeepSeek Harness Approval: A Human-Machine Handoff, Not a Security Gate

This article dissects DeepSeek Harness's approval mechanism, showing it is a fail-closed human-machine handoff rather than a security boundary, covering its four outcome states, dual approval paths, async Cordis flow, per-package vs future-version authorization, host/client execution split, and orthogonal approval-sandbox knobs.

AI agent securityCordis dynamic pluginsDeepSeek Harness
0 likes · 16 min read
DeepSeek Harness Approval: A Human-Machine Handoff, Not a Security Gate
Shuge Unlimited
Shuge Unlimited
Sep 6, 2026 · Artificial Intelligence

Agent Self-Extends in 10 Minutes: DeepSeek Harness's 7-Tool Plugin System

The author demonstrates how an AI agent uses DeepSeek Harness's seven tools to dynamically create, register, run, stop, and version plugins in a sandboxed environment, with syntax validation, append-only versioning, and guided error messages, embodying a 'prevent errors, not malice' philosophy.

AI agentsDeepSeek Harnessdynamic plugins
0 likes · 23 min read
Agent Self-Extends in 10 Minutes: DeepSeek Harness's 7-Tool Plugin System
Shuge Unlimited
Shuge Unlimited
Sep 1, 2026 · Artificial Intelligence

DeepSeek Harness: Inside the 1,600-Line Model Exoskeleton

A deep technical analysis of DeepSeek Harness (dsh), an open-source agent runtime that acts as a model exoskeleton — plugin-based architecture, 1,546-line core loop, session-log-driven design, and built-in data loop via HTTP extensions.

AI Agent RuntimeAgent FrameworkCordis
0 likes · 21 min read
DeepSeek Harness: Inside the 1,600-Line Model Exoskeleton
Shuge Unlimited
Shuge Unlimited
Aug 16, 2026 · Databases

Milvus 3.0 External Tables: Patch‑Add Columns and Query Snapshots as Tables

This article dissects Milvus 3.0’s External Collection feature, explaining how function‑output fields extend source schemas, how additive‑only schema refresh patches manifests without moving source data, and how the milvus‑table format lets snapshots serve as zero‑copy external tables for both batch and serving workloads.

External CollectionMilvusSchema Refresh
0 likes · 19 min read
Milvus 3.0 External Tables: Patch‑Add Columns and Query Snapshots as Tables
Shuge Unlimited
Shuge Unlimited
Jul 25, 2026 · Databases

How Milvus 3.0 Packs 1,031 Patches in One Row with Struct + EmbList, Eliminating Chunk Flattening

The article dissects Milvus 3.0's Struct and EmbList design for storing and querying multi‑vector documents, compares flattening, JSON and named‑vector approaches, explains storage constraints, row‑level vs element‑level search semantics, MAX_SIM integration, a sealed‑segment bug, and practical checklist recommendations.

Array of StructsEmbListHybrid Search
0 likes · 19 min read
How Milvus 3.0 Packs 1,031 Patches in One Row with Struct + EmbList, Eliminating Chunk Flattening