From d52ffadf00dbfde22d753f6570f756145d13244b Mon Sep 17 00:00:00 2001 From: AI Engineer Date: Sat, 16 May 2026 09:33:55 +0800 Subject: [PATCH] chore: global index sync and version update (by AICoder) --- README.md | 113 ++++++++++++++++++++++--------------------- README.zh-CN.md | 124 ++++++++++++++++++++++++++++-------------------- 2 files changed, 131 insertions(+), 106 deletions(-) diff --git a/README.md b/README.md index ffb2ac9..06af469 100644 --- a/README.md +++ b/README.md @@ -18,107 +18,108 @@ This project provides an ultra-lean, friction-free, secure, and high-performance Docs: https://apigo.cc/go/ -### go/cast v1.3.2 +### go/cast v1.3.3 Semantic type conversion and generic utilities. -- **API**: `To`, `Convert`, `As`, `ToMap`, `ToSlice`, `FillMap`, `FillSlice`, `ToJSON`, `FromJSON`, `UnmarshalJSON`, `ParseTime`, `FormatTime`, `Int`, `String`, `Bool`, `Duration` +- **API**: `To`, `Convert`, `As`, `ToMap`, `ToSlice`, `FillMap`, `FillSlice`, `ToJSON`, `FromJSON`, `UnmarshalJSON`, `ParseTime`, `FormatTime`, `Int`, `String`, `Bool`, `Duration`, `RealValue`, `GetLowerName`, `GetUpperName`, `FixUpperCase` -### go/rand v1.3.0 +### go/rand v1.3.1 High-concurrency random generation. -- **API**: `Int`, `FastInt`, `Float`, `Byte`, `Bytes`, `Perm`, `Shuffle` +- **API**: `Int`, `FastInt`, `Float`, `FastFloat`, `Byte`, `Bytes`, `Perm`, `Shuffle` -### go/timer v1.3.0 +### go/timer v1.3.1 Time stream control and retries. -- **API**: `Retry`, `Start`, `WithBackoff`, `WithMaxRetries`, `NewDebouncer`, `NewThrottler`, `NewTimeWheel` +- **API**: `Retry`, `Start`, `WithBackoff`, `WithMaxRetries`, `NewDebouncer`, `NewThrottler`, `NewTimeWheel`, `RunTimeout`, `Tracker` -### go/task v1.3.0 +### go/task v1.3.2 Task scheduling and lifecycle management. -- **API**: `Add`, `Start`, `Stop`, `Get`, `List`, `Remove`, `WithPolicy`, `WithTimeout`, `OnSuccess`, `OnError` +- **API**: `Add`, `Start`, `Stop`, `Get`, `List`, `Remove`, `Run`, `WithPolicy`, `WithTimeout` -### go/safe v1.3.0 +### go/safe v1.3.1 Memory protection and secure erasure. -- **API**: `NewSafeBuf`, `NewSafeString`, `LockMemory`, `UnlockMemory`, `DisableCoreDump`, `ZeroMemory`, `EncryptChaCha20`, `DecryptChaCha20` +- **API**: `NewSafeBuf`, `NewSafeString`, `LockMemory`, `UnlockMemory`, `DisableCoreDump`, `ZeroMemory`, `EncryptChaCha20`, `DecryptChaCha20`, `MakeSafeToken`, `Concat`, `Base64`, `Hex`, `UrlEncode` -### go/encoding v1.3.0 +### go/encoding v1.3.1 Standard and integer encoding. -- **API**: `Hex`, `Base64`, `UrlEncode`, `HtmlEscape`, `NewIntEncoder`, `EncodeInt`, `DecodeInt`, `HashInt` +- **API**: `Hex`, `HexToString`, `Base64`, `Base64ToString`, `UrlBase64`, `UrlEncode`, `HtmlEscape`, `HtmlUnescape`, `Utf8Valid`, `NewIntEncoder`, `EncodeInt`, `AppendInt`, `DecodeInt`, `ExchangeInt`, `FillInt`, `HashInt`, `SortJoin` -### go/crypto v1.3.0 +### go/crypto v1.3.1 Mainstream and hybrid encryption. -- **API**: `NewAESGCM`, `NewRSA`, `NewECDSA`, `NewED25519`, `NewX25519`, `EncryptBytes`, `DecryptBytes`, `Sign`, `Verify`, `MD5`, `Sha256`, `HmacSha256` +- **API**: `NewAESGCM`, `NewRSA`, `NewECDSA`, `NewED25519`, `NewX25519`, `EncryptBytes`, `DecryptBytes`, `Sign`, `Verify`, `MD5`, `Sha1`, `Sha256`, `Sha512`, `HmacSha256` -### go/crypto-sm v1.3.0 +### go/crypto-sm v1.3.1 National Cryptographic Standard (SM2/3/4). -- **API**: `NewSM2`, `Sm3`, `Sm3ToHex`, `NewSM4CBC`, `NewSM4GCM`, `Encrypt`, `Decrypt` +- **API**: `NewSM2`, `Sm3`, `Sm3ToHex`, `Sm3ToBase64`, `Sm3ToUrlBase64`, `NewSM4CBC`, `NewSM4GCM`, `Encrypt`, `Decrypt` -### go/id v1.3.0 +### go/id v1.3.1 Distributed and DB-optimized IDs. -- **API**: `NewIDMaker`, `Get8Bytes4KPerSecond`, `Get12BytesUltraPerSecond`, `GetForMysql` +- **API**: `NewIDMaker`, `Get8Bytes4KPerSecond`, `Get9Bytes90KPerSecond`, `Get10Bytes14MPerSecond`, `Get11Bytes900MPerSecond`, `Get12BytesUltraPerSecond`, `GetForMysql` -### go/file v1.3.0 +### go/file v1.3.2 High-performance IO and memory files. -- **API**: `Exists`, `Read`, `Write`, `Copy`, `Move`, `Remove`, `Search`, `UnmarshalFile`, `MarshalFile`, `Archive`, `Compress`, `LoadFileToMemory` +- **API**: `Exists`, `EnsureParentDir`, `Read`, `ReadBytes`, `Write`, `WriteBytes`, `Copy`, `Move`, `Remove`, `Mkdir`, `Search`, `UnmarshalFile`, `MarshalFile`, `PatchFile`, `Archive`, `Compress`, `LoadFileToMemory` -### go/shell v1.3.0 + +### go/shell v1.3.1 Terminal styling and command execution. -- **API**: `Run`, `Pipeline`, `Style`, `Red`, `Green`, `Blue`, `Yellow` +- **API**: `Run`, `RunCommand`, `InteractiveRun`, `Pipeline`, `PipelineCommands`, `Style`, `StripANSI`, `Red`, `Green`, `Blue`, `Yellow` -### go/config v1.3.0 +### go/config v1.3.1 Configuration loading with env overrides. -- **API**: `Load` +- **API**: `Load`, `To` -### go/log v1.3.2 +### go/log v1.3.4 Meta-driven asynchronous logging. -- **API**: `Debug`, `Info`, `Warning`, `Error`, `As`, `New`, `SetLevel`, `Viewable`, `GetEntry`, `PutEntry` +- **API**: `Debug`, `Info`, `Warning`, `Error`, `As`, `New`, `SetDefaultName`, `Viewable`, `GetEntry`, `PutEntry` -### go/http v1.3.0 +### go/http v1.3.2 High-performance HTTP client. -- **API**: `NewClient`, `NewClientH2C`, `Get`, `Post`, `Put`, `Delete`, `Do`, `Result`, `Multipart` +- **API**: `NewClient`, `NewClientH2C`, `Get`, `Post`, `Put`, `Delete`, `Do`, `Result`, `To`, `Multipart` -### go/redis v1.3.0 +### go/redis v1.3.2 Redis client with Pub/Sub. - **API**: `GetRedis`, `NewRedis`, `Do`, `Subscribe`, `PUBLISH`, `NewIDMaker` -### go/db v1.3.1 -Lean database abstraction. -- **API**: `GetDB`, `Sync`, `Insert`, `Update`, `Delete`, `Query`, `Exec`, `Begin` +### go/db v1.3.4 +Convention-over-configuration ORM with shadow-delete, auto-versioning, and FTS. +- **API**: `GetDB`, `Sync`, `To`, `ToSlice`, `Insert`, `Replace`, `Update`, `Delete`, `Query`, `Exec`, `Begin` -### go/discover v1.3.0 +### go/discover v1.3.2 Service discovery and load balancing. -- **API**: `Start`, `NewCaller`, `Get`, `Post`, `SetLoadBalancer`, `SetRoute` +- **API**: `New`, `Start`, `Open`, `NewCaller`, `Get`, `Post`, `SetLoadBalancer`, `SetRoute` -### go/service v1.3.1 +### go/service v1.3.4 Core microservice framework. -- **API**: `Start`, `AsyncStart`, `Register`, `Restful`, `RegisterWebsocket`, `Static`, `Proxy`, `VerifyStruct` +- **API**: `Start`, `AsyncStart`, `Host`, `Register`, `Restful`, `RegisterWebsocket`, `Static`, `Proxy`, `VerifyStruct`, `GetInjectT` -### go/watch v1.3.0 +### go/watch v1.3.2 AI-friendly file watching. - **API**: `Start`, `EasyStart`, `Watcher` -### go/keys v1.3.0 +### go/keys v1.3.2 Secret management and cross-language encryption tool. -- **API**: `GenerateKey`, `Encrypt`, `Decrypt`, `ExportGo`, `ExportJS`, `ExportPython`, `ExportJava`, `ExportPHP` +- **CLI Commands**: `keys keystore list/create/export`, `keys password list/create/encrypt/decrypt` -### go/starter v1.3.0 +### go/starter v1.0.5 Service lifecycle and background management. -- **API**: `SetInfo`, `SetPidFile`, `SetLogFile`, `OnStart`, `OnStop`, `OnReload`, `Run`, `AddCmd` +- **API**: `Register`, `Run`, `SetAppInfo`, `SetInfo`, `SetUsage`, `AddCmd`, `AddCommand` -### go/sandbox v1.0.4 +### go/sandbox v1.0.6 Cross-platform isolation and runtime environment manager. -- **API**: `Start`, `Restore`, `Query`, `Fetch`, `SetRoot`, `Sandbox.Status`, `Sandbox.Wait`, `Sandbox.Kill`, `Sandbox.Cleanup` +- **API**: `Start`, `Restore`, `Query`, `Fetch`, `SetRoot`, `NewService`, `DefaultService`, `Sandbox.Status`, `Sandbox.Wait`, `Sandbox.Kill`, `Sandbox.Cleanup` -### go/api v1.3.0 +### go/api v1.3.2 Third-party API orchestration engine. - **API**: `Call[T]`, `Load`, `RegisterSigner`, `GetSigner`, `Action` -### go/mail v1.0.0 +### go/mail v1.0.3 Lean and high-performance email client. -- **API**: `Send`, `MustSend`, `Recv`, `MustRecv`, `New`, `MustNew`, `NewWithConfig`, `ParseAddr`, `FormatAddr` +- **API**: `Send`, `MustSend`, `Recv`, `MustRecv`, `New`, `MustNew`, `NewWithConfig`, `GetMailbox`, `ParseAddr`, `FormatAddr` -### go/document v1.0.6 +### go/document v1.0.8 Lean and high-performance Office bridge, supporting Excel/Word/PPT/PDF/Graph/CSV/MD to JSON/Markdown conversion. - **API**: `Open`, `Create`, `Save`, `ToJSON`, `ToMarkdown` -### go/vision v1.0.5 +### go/vision v1.0.8 High-performance image processing, QR/Barcode, FFmpeg video orchestration, and transformations. - **API**: `Load`, `Save`, `Convert`, `New`, `ParseColor`, `RandColor`, `Capture`, `Recognize`, `NewAnimation` @@ -126,14 +127,18 @@ High-performance image processing, QR/Barcode, FFmpeg video orchestration, and t AI Knowledge Base engine with hybrid search and identity-driven APIs. - **API**: `Auth`, `App.Doc`, `App.Table`, `App.Search`, `App.Query`, `Table.List`, `Table.Set`, `Table.Fields`, `DocStore.Get`, `DocStore.Set`, `DocStore.GetSections` -### go/gateway v2.0.0 +### go/indexDB v1.1.2 +Unified hybrid search engine supporting Fulltext + Vector with RRF. +- **API**: `GetDB`, `Auth`, `Add`, `Remove`, `Search`, `ScanDocuments` + +### go/gateway v2.0.1 High-performance, event-driven dynamic API gateway. -- **API**: `NewGatewayApp`, `GatewayApp.Init`, `GatewayApp.Stop` +- **API**: `NewGatewayApp`, `GatewayApp.Start`, `GatewayApp.Stop`, `GatewayApp.Reload`, `GatewayApp.Status` -### go/docDB v1.0.0 +### go/docDB v1.0.10 Standalone document storage engine with version control and event hooks. -- **API**: `New`, `DocDB.Auth`, `App.SetDoc`, `App.SetMeta`, `App.Get`, `App.Remove`, `DocDB.OnCreatedDoc`, `DocDB.OnUpdatedDoc`, `DocDB.OnRemoved`, `ExtractToC` +- **API**: `GetDB`, `Auth`, `SetDoc`, `SetMeta`, `Move`, `Get`, `GetByVersion`, `Remove`, `ExtractToC` -### go/tableDB v1.1.6 +### go/tableDB v1.1.9 Higher-level DB abstraction for dynamic schemas, auth isolation, and lifecycle hooks. -- **API**: `GetDB`, `App.Auth`, `App.SyncSchema`, `App.Table`, `Table.Set`, `Table.Get`, `Table.List`, `Table.Count`, `Table.Remove` +- **API**: `GetDB`, `Auth`, `Tables`, `SetTable`, `Table`, `Set`, `Get`, `List`, `Query`, `Count`, `Remove` diff --git a/README.zh-CN.md b/README.zh-CN.md index de00455..707abf1 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -18,106 +18,126 @@ 详细文档: https://apigo.cc/go/ -### go/cast v1.2.10 +### go/cast v1.3.3 语义化类型强转与泛型工具。 -- **API**: `To`, `Convert`, `As`, `ToMap`, `ToSlice`, `FillMap`, `FillSlice`, `ToJSON`, `FromJSON`, `UnmarshalJSON`, `ParseTime`, `FormatTime`, `Int`, `String`, `Bool`, `Duration` +- **API**: `To`, `Convert`, `As`, `ToMap`, `ToSlice`, `FillMap`, `FillSlice`, `ToJSON`, `FromJSON`, `UnmarshalJSON`, `ParseTime`, `FormatTime`, `Int`, `String`, `Bool`, `Duration`, `RealValue`, `GetLowerName`, `GetUpperName`, `FixUpperCase` -### go/rand v1.0.6 +### go/rand v1.3.1 高并发场景下的随机数与字节生成。 -- **API**: `Int`, `FastInt`, `Float`, `Byte`, `Bytes`, `Perm`, `Shuffle` +- **API**: `Int`, `FastInt`, `Float`, `FastFloat`, `Byte`, `Bytes`, `Perm`, `Shuffle` -### go/timer v1.0.7 +### go/timer v1.3.1 高性能时间流管控与退避重试。 -- **API**: `Retry`, `Start`, `WithBackoff`, `WithMaxRetries`, `NewDebouncer`, `NewThrottler`, `NewTimeWheel` +- **API**: `Retry`, `Start`, `WithBackoff`, `WithMaxRetries`, `NewDebouncer`, `NewThrottler`, `NewTimeWheel`, `RunTimeout`, `Tracker` -### go/safe v1.0.7 +### go/task v1.3.2 +轻量级任务调度与生命周期管理。 +- **API**: `Add`, `Start`, `Stop`, `Get`, `List`, `Remove`, `Run`, `WithPolicy`, `WithTimeout` + +### go/safe v1.3.1 内存保护、安全擦除与防核心转储。 -- **API**: `NewSafeBuf`, `NewSafeString`, `LockMemory`, `UnlockMemory`, `DisableCoreDump`, `ZeroMemory`, `EncryptChaCha20`, `DecryptChaCha20` +- **API**: `NewSafeBuf`, `NewSafeString`, `LockMemory`, `UnlockMemory`, `DisableCoreDump`, `ZeroMemory`, `EncryptChaCha20`, `DecryptChaCha20`, `MakeSafeToken`, `Concat`, `Base64`, `Hex`, `UrlEncode` -### go/encoding v1.1.2 +### go/encoding v1.3.1 标准及整数填充编解码。 -- **API**: `Hex`, `Base64`, `UrlEncode`, `HtmlEscape`, `NewIntEncoder`, `EncodeInt`, `DecodeInt`, `HashInt` +- **API**: `Hex`, `HexToString`, `Base64`, `Base64ToString`, `UrlBase64`, `UrlEncode`, `HtmlEscape`, `HtmlUnescape`, `Utf8Valid`, `NewIntEncoder`, `EncodeInt`, `AppendInt`, `DecodeInt`, `ExchangeInt`, `FillInt`, `HashInt`, `SortJoin` -### go/crypto v1.1.1 +### go/crypto v1.3.1 主流加解密算法与混合加密体系。 -- **API**: `NewAESGCM`, `NewRSA`, `NewECDSA`, `NewED25519`, `NewX25519`, `EncryptBytes`, `DecryptBytes`, `Sign`, `Verify`, `MD5`, `Sha256`, `HmacSha256` +- **API**: `NewAESGCM`, `NewRSA`, `NewECDSA`, `NewED25519`, `NewX25519`, `EncryptBytes`, `DecryptBytes`, `Sign`, `Verify`, `MD5`, `Sha1`, `Sha256`, `Sha512`, `HmacSha256` -### go/crypto-sm v1.1.1 +### go/crypto-sm v1.3.1 国密 (SM2/3/4) 标准实现。 -- **API**: `NewSM2`, `Sm3`, `Sm3ToHex`, `NewSM4CBC`, `NewSM4GCM`, `Encrypt`, `Decrypt` +- **API**: `NewSM2`, `Sm3`, `Sm3ToHex`, `Sm3ToBase64`, `Sm3ToUrlBase64`, `NewSM4CBC`, `NewSM4GCM`, `Encrypt`, `Decrypt` -### go/id v1.0.7 +### go/id v1.3.1 分布式与数据库性能优化的 ID 生成。 -- **API**: `NewIDMaker`, `Get8Bytes4KPerSecond`, `Get12BytesUltraPerSecond`, `GetForMysql` +- **API**: `NewIDMaker`, `Get8Bytes4KPerSecond`, `Get9Bytes90KPerSecond`, `Get10Bytes14MPerSecond`, `Get11Bytes900MPerSecond`, `Get12BytesUltraPerSecond`, `GetForMysql` -### go/file v1.0.8 +### go/file v1.3.2 高性能磁盘 IO 与嵌入式内存文件。 -- **API**: `Exists`, `Read`, `Write`, `Copy`, `Move`, `Remove`, `Search`, `UnmarshalFile`, `MarshalFile`, `Archive`, `Compress`, `LoadFileToMemory` +- **API**: `Exists`, `EnsureParentDir`, `Read`, `ReadBytes`, `Write`, `WriteBytes`, `Copy`, `Move`, `Remove`, `Mkdir`, `Search`, `UnmarshalFile`, `MarshalFile`, `PatchFile`, `Archive`, `Compress`, `LoadFileToMemory` -### go/shell v1.0.6 +### go/shell v1.3.1 终端样式美化与命令链管道执行。 -- **API**: `Run`, `Pipeline`, `Style`, `Red`, `Green`, `Blue`, `Yellow` +- **API**: `Run`, `RunCommand`, `InteractiveRun`, `Pipeline`, `PipelineCommands`, `Style`, `StripANSI`, `Red`, `Green`, `Blue`, `Yellow` -### go/config v1.0.8 +### go/config v1.3.1 支持环境变量覆盖的配置文件加载。 -- **API**: `Load` +- **API**: `Load`, `To` -### go/log v1.3.2 +### go/log v1.3.4 高性能 Meta 驱动的异步脱敏日志。 -- **API**: `Debug`, `Info`, `Warning`, `Error`, `As`, `New`, `SetLevel`, `Viewable`, `GetEntry`, `PutEntry` +- **API**: `Debug`, `Info`, `Warning`, `Error`, `As`, `New`, `SetDefaultName`, `Viewable`, `GetEntry`, `PutEntry` -### go/http v1.0.11 +### go/http v1.3.2 极致精简的高性能 HTTP 客户端。 -- **API**: `NewClient`, `NewClientH2C`, `Get`, `Post`, `Put`, `Delete`, `Do`, `Result`, `Multipart` +- **API**: `NewClient`, `NewClientH2C`, `Get`, `Post`, `Put`, `Delete`, `Do`, `Result`, `To`, `Multipart` -### go/redis v1.0.9 +### go/redis v1.3.2 集成 Pub/Sub 的高性能 Redis 客户端。 - **API**: `GetRedis`, `NewRedis`, `Do`, `Subscribe`, `PUBLISH`, `NewIDMaker` -### go/db v1.0.11 -意图优先的极简数据库抽象层。 -- **API**: `GetDB`, `Sync`, `Insert`, `Update`, `Delete`, `Query`, `Exec`, `Begin` +### go/db v1.3.4 +意图优先的极简数据库抽象层,支持影子删除与自动版本。 +- **API**: `GetDB`, `Sync`, `To`, `ToSlice`, `Insert`, `Replace`, `Update`, `Delete`, `Query`, `Exec`, `Begin` -### go/discover v1.0.11 +### go/discover v1.3.2 极简的服务发现与负载均衡调用。 -- **API**: `Start`, `NewCaller`, `Get`, `Post`, `SetLoadBalancer`, `SetRoute` +- **API**: `New`, `Start`, `Open`, `NewCaller`, `Get`, `Post`, `SetLoadBalancer`, `SetRoute` -### go/service v1.1.1 +### go/service v1.3.4 核心微服务框架,支持自动注入与路由映射。 -- **API**: `Start`, `AsyncStart`, `Register`, `Restful`, `RegisterWebsocket`, `Static`, `Proxy`, `VerifyStruct` +- **API**: `Start`, `AsyncStart`, `Host`, `Register`, `Restful`, `RegisterWebsocket`, `Static`, `Proxy`, `VerifyStruct`, `GetInjectT` -### go/watch v1.1.2 +### go/watch v1.3.2 高性能、AI 友好的文件变动监听。 - **API**: `Start`, `EasyStart`, `Watcher` -### go/vision v1.0.0 -高性能图像处理、验证码、二维码与感知哈希工具。 -- **API**: `New`, `Load`, `Save`, `Resize`, `Fit`, `Fill`, `Rotate`, `Blur`, `Grayscale`, `SetFont`, `DrawText`, `GenerateCaptcha`, `GenerateQRCode`, `PHash`, `Distance` - -### go/keys v1.0.1 +### go/keys v1.3.2 密钥管理与跨语言加固加密工具。 -- **API**: `GenerateKey`, `Encrypt`, `Decrypt`, `ExportGo`, `ExportJS`, `ExportPython`, `ExportJava`, `ExportPHP` +- **CLI 命令**: `keys keystore list/create/export`, `keys password list/create/encrypt/decrypt` -### go/starter v1.0.0 +### go/starter v1.0.5 服务生命周期与后台运行管控。 -- **API**: `SetInfo`, `SetPidFile`, `SetLogFile`, `OnStart`, `OnStop`, `OnReload`, `Run`, `AddCmd` +- **API**: `Register`, `Run`, `SetAppInfo`, `SetInfo`, `SetUsage`, `AddCmd`, `AddCommand` -### go/api v1.0.4 +### go/sandbox v1.0.6 +跨平台隔离与运行时环境管理器。 +- **API**: `Start`, `Restore`, `Query`, `Fetch`, `SetRoot`, `NewService`, `DefaultService`, `Sandbox.Status`, `Sandbox.Wait`, `Sandbox.Kill`, `Sandbox.Cleanup` + +### go/api v1.3.2 第三方 API 调度引擎,消除 SDK 摩擦。 - **API**: `Call[T]`, `Load`, `RegisterSigner`, `GetSigner`, `Action` -### go/mail v1.0.0 +### go/mail v1.0.3 极致精简的高性能邮件客户端。 -- **API**: `Send`, `MustSend`, `Recv`, `MustRecv`, `New`, `MustNew`, `NewWithConfig`, `ParseAddr`, `FormatAddr` +- **API**: `Send`, `MustSend`, `Recv`, `MustRecv`, `New`, `MustNew`, `NewWithConfig`, `GetMailbox`, `ParseAddr`, `FormatAddr` -### go/document v1.0.6 +### go/document v1.0.8 极简、高效的 Office 文档桥梁,支持 Excel/Word/PPT/PDF/Graph/CSV/MD 与 JSON/Markdown 互转。 - **API**: `Open`, `Create`, `Save`, `ToJSON`, `ToMarkdown` -### go/gateway v2.0.0 -基于 @go/service 和 Redis 的高性能、事件驱动动态 API 网关。 -- **API**: `NewGatewayApp`, `GatewayApp.Init`, `GatewayApp.Stop` +### go/vision v1.0.8 +高性能图像处理、验证码、二维码与感知哈希工具。 +- **API**: `Load`, `Save`, `Convert`, `New`, `ParseColor`, `RandColor`, `Capture`, `Recognize`, `NewAnimation` -### go/tableDB v1.1.6 +### go/knowbase v1.0.5 +AI 知识库引擎,支持混合检索与身份驱动 API。 +- **API**: `Auth`, `App.Doc`, `App.Table`, `App.Search`, `App.Query`, `Table.List`, `Table.Set`, `Table.Fields`, `DocStore.Get`, `DocStore.Set`, `DocStore.GetSections` + +### go/indexDB v1.1.2 +统一混合检索引擎,支持全文 + 向量及 RRF 融合。 +- **API**: `GetDB`, `Auth`, `Add`, `Remove`, `Search`, `ScanDocuments` + +### go/gateway v2.0.1 +高性能、事件驱动的动态 API 网关。 +- **API**: `NewGatewayApp`, `GatewayApp.Start`, `GatewayApp.Stop`, `GatewayApp.Reload`, `GatewayApp.Status` + +### go/docDB v1.0.10 +独立的高级文档存储引擎,支持版本管理与生命周期钩子。 +- **API**: `GetDB`, `Auth`, `SetDoc`, `SetMeta`, `Move`, `Get`, `GetByVersion`, `Remove`, `ExtractToC` + +### go/tableDB v1.1.9 建立在 go/db 基础上的更高层抽象工具库,提供动态表、权限隔离和生命周期追踪。 -- **API**: `GetDB`, `App.Auth`, `App.SyncSchema`, `App.Table`, `Table.Set`, `Table.Get`, `Table.List`, `Table.Count`, `Table.Remove` +- **API**: `GetDB`, `Auth`, `Tables`, `SetTable`, `Table`, `Set`, `Get`, `List`, `Query`, `Count`, `Remove`