@bastani/atomic 0.8.9 → 0.8.10-0
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 +10 -0
- package/dist/builtin/intercom/package.json +1 -1
- package/dist/builtin/mcp/package.json +1 -1
- package/dist/builtin/subagents/package.json +1 -1
- package/dist/builtin/web-access/package.json +1 -1
- package/dist/builtin/workflows/package.json +1 -1
- package/dist/core/agent-session.d.ts +1 -0
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +42 -5
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/atomic-guide-command.d.ts +41 -0
- package/dist/core/atomic-guide-command.d.ts.map +1 -0
- package/dist/core/atomic-guide-command.js +299 -0
- package/dist/core/atomic-guide-command.js.map +1 -0
- package/dist/core/slash-commands.d.ts +2 -0
- package/dist/core/slash-commands.d.ts.map +1 -1
- package/dist/core/slash-commands.js +6 -0
- package/dist/core/slash-commands.js.map +1 -1
- package/dist/core/system-prompt.d.ts +2 -0
- package/dist/core/system-prompt.d.ts.map +1 -1
- package/dist/core/system-prompt.js +13 -9
- package/dist/core/system-prompt.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +6 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.8.10-0] - 2026-05-20
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Reintroduced `/atomic` as an interactive guide with options for overview, examples, workflows, and release notes.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Prepared the 0.8.10-0 prerelease.
|
|
14
|
+
|
|
5
15
|
## [0.8.9] - 2026-05-19
|
|
6
16
|
|
|
7
17
|
### Changed
|
|
@@ -318,6 +318,7 @@ export declare class AgentSession {
|
|
|
318
318
|
* @throws Error if no model selected or no API key available (when not streaming)
|
|
319
319
|
*/
|
|
320
320
|
prompt(text: string, options?: PromptOptions): Promise<void>;
|
|
321
|
+
private _tryExecuteBuiltinSlashCommand;
|
|
321
322
|
private _tryExecuteExtensionCommand;
|
|
322
323
|
/**
|
|
323
324
|
* Expand skill commands (/skill:name args) to their full content.
|