opc-agent 4.1.16 → 4.1.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,48 +1,119 @@
1
- # Changelog
2
-
3
- ## [2.0.0] - 2026-04-18
4
-
5
- ### Major Features
6
- - **Interactive CLI** (`opc chat`) — Full TUI with streaming, slash commands, history
7
- - **Daemon Mode** (`opc start/stop/status`) — Run agents as background processes
8
- - **Cron Scheduler** — Built-in job scheduling with cron expressions
9
- - **Autonomous Skill Learning** — Agents create and improve skills from experience
10
- - **Sub-Agent System** Spawn parallel sub-agents for task delegation
11
- - **Built-in Tools** File operations, web fetch, shell exec, datetime
12
- - **MCP Client** Connect to external MCP servers via JSON-RPC
13
- - **Telegram Channel** — Dual-mode (polling + webhook) with Markdown support
14
- - **Discord Channel** — Gateway WebSocket with auto-reconnect
15
- - **Slack Channel** Real Events API + chat.postMessage
16
- - **SOUL.md + CONTEXT.md** — Agent personality and project context files
17
- - **Analytics** Wired into runtime for message tracking, skill usage, errors
18
-
19
- ### Enhanced
20
- - `/health` endpoint returns comprehensive agent info
21
- - `opc init` generates SOUL.md, CONTEXT.md, and richer project templates
22
- - OAD config supports scheduler, learning, and tools sections
23
- - 204 tests passing
24
-
25
- ### CLI Commands
26
- init, chat, run, dev, start, stop, status, jobs, skills, info, build, test, analytics, brain, logs, score, search, deploy, publish, install, plugin, tool, workflow, migrate
27
-
28
- ## 1.4.0 (2026-04-18)
29
- - feat: wire Analytics into AgentRuntime (message timing, skill usage, error tracking)
30
- - feat: expose analytics snapshot on /health and /api/dashboard endpoints
31
- - feat: enhanced /health endpoint with agent name, version, uptime, memory type, skills, channels
32
- - feat: Slack channel real Events API webhook server + chat.postMessage via fetch
33
- - feat: WebChannel metadata setters (version, memory type, skills, channels, analytics provider)
34
- - feat: AgentRuntime.getAnalytics() and getConfig() accessors
35
-
36
- ## 1.3.1 (2026-04-17)
37
- - fix: remove residual DTV/marketplace references
38
- - fix: duplicate WatchPattern export
39
-
40
- ## 1.3.0 (2026-04-17)
41
- - feat: Traces collection (OpenTelemetry-style)
42
- - feat: DeepBrain exporter
43
- - feat: brain/logs/score CLI commands
44
-
45
- ## 1.2.0
46
- - Initial public release
47
- - 11 channels, plugins, analytics
48
- - Declarative OAD configuration
1
+ # Changelog
2
+
3
+ All notable changes to OPC Agent will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
6
+
7
+ ## [4.1.16] - 2025-04-18
8
+
9
+ ### Added
10
+ - Full TUI terminal chat with streaming, markdown rendering, and slash commands
11
+ - One-line install script for macOS/Linux (`install.sh`) and Windows (`install.ps1`)
12
+ - `opc doctor` now checks tool availability and wiring (tools health check)
13
+
14
+ ### Fixed
15
+ - TUI input handling and display improvements
16
+
17
+ ## [4.1.15] - 2025-04-15
18
+
19
+ ### Added
20
+ - 20 new integration tools: Jira, Slack, Notion, Linear, Confluence, Trello, Asana, Zendesk, HubSpot, Salesforce, and more
21
+ - Total built-in tools count reaches **53**
22
+
23
+ ## [4.1.14] - 2025-04-12
24
+
25
+ ### Fixed
26
+ - Process keep-alive reliability agents no longer exit unexpectedly on channel disconnect
27
+ - 33 built-in tools fully wired to runtime (previously some were declared but not connected)
28
+
29
+ ## [4.1.12] - 2025-04-08
30
+
31
+ ### Added
32
+ - Memory compactiondistilled memory reduces storage and improves recall relevance
33
+ - Automatic deduplication of similar memory entries
34
+
35
+ ## [4.1.11] - 2025-04-05
36
+
37
+ ### Added
38
+ - Knowledge Evolve Engine v2.1 — improved clustering, deduplication, and refinement pipeline
39
+ - Ollama-local knowledge distillation (zero API cost)
40
+
41
+ ## [4.1.8] - 2025-03-28
42
+
43
+ ### Added
44
+ - Voice message support (STT/TTS)
45
+ - Whisper integration for speech-to-text
46
+ - Azure Speech and Volcano Engine TTS providers
47
+ - Voice channel support in Telegram and Web UI
48
+
49
+ ## [4.1.7] - 2025-03-22
50
+
51
+ ### Added
52
+ - 40 built-in skills: productivity, knowledge, creative, and developer skill packs
53
+ - ProactiveAgent — agents can initiate conversations based on triggers and schedules
54
+ - `opc skill list` and `opc skill add` CLI commands
55
+
56
+ ## [4.1.6] - 2025-03-18
57
+
58
+ ### Added
59
+ - SQLite persistent memory with full-text search (FTS5)
60
+ - AgentSkills.io format support for skill discovery and sharing
61
+ - Memory search across conversations with relevance ranking
62
+
63
+ ### Changed
64
+ - Default memory provider switched from JSON file to SQLite
65
+
66
+ ## [4.1.5] - 2025-03-14
67
+
68
+ ### Added
69
+ - SkillLearner — agents can learn new skills from demonstrations
70
+ - UserProfiler — automatic user preference tracking and personalization
71
+
72
+ ## [4.1.4] - 2025-03-10
73
+
74
+ ### Added
75
+ - `.npmignore` for cleaner package publishing
76
+ - Local cron scheduler (no external dependencies)
77
+ - FileBackedStore for persistent key-value storage
78
+
79
+ ### Fixed
80
+ - Package size reduced by 60% with proper npmignore
81
+
82
+ ## [4.1.3] - 2025-03-06
83
+
84
+ ### Added
85
+ - Smart model recommendation based on task complexity and available providers
86
+ - `opc setup` auto-detects local Ollama models
87
+
88
+ ## [4.1.2] - 2025-03-02
89
+
90
+ ### Changed
91
+ - Ollama-first UX overhaul — local models are now the default, cloud providers optional
92
+ - `opc init` defaults to Ollama if detected, guides API key setup otherwise
93
+
94
+ ### Fixed
95
+ - Ollama connection reliability on slow startup
96
+
97
+ ## [4.1.1] - 2025-02-26
98
+
99
+ ### Changed
100
+ - Studio UI improvements: better agent card layout, real-time status indicators
101
+ - Dark mode support in Studio
102
+
103
+ ### Fixed
104
+ - Studio WebSocket reconnection on network interruption
105
+
106
+ ## [4.1.0] - 2025-02-20
107
+
108
+ ### Added
109
+ - Initial CLI with `opc init`, `opc run`, `opc chat`, `opc studio` commands
110
+ - Web-based Studio GUI at `http://localhost:4000`
111
+ - OAD (Open Agent Definition) YAML configuration format
112
+ - Multi-channel support: Telegram, Discord, Slack, WeChat, Email
113
+ - OpenAI, Anthropic, Ollama, Azure model providers
114
+ - Basic memory with learn/recall cycle
115
+ - MCP Protocol server and client
116
+ - A2A Protocol support
117
+ - OpenTelemetry tracing
118
+ - `opc doctor` with 13 health checks
119
+ - `opc eval` evaluation framework