galaxy-code 0.1.1 → 0.1.3

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.
Files changed (2) hide show
  1. package/dist/app.js +2 -2
  2. package/package.json +2 -1
package/dist/app.js CHANGED
@@ -15,7 +15,7 @@ import { ClaudeAgent, GeminiAgent, OllamaAgent, } from '@workspace/agent-core/pr
15
15
  import { configManager } from '@workspace/agent-core';
16
16
  import { formatMessage } from '@workspace/agent-core/utils/message-formatters';
17
17
  import { toolEventEmitter } from '@workspace/agent-core/tools';
18
- const cliVersion = '2.0.0';
18
+ const cliVersion = '0.1.3';
19
19
  const getTerminalWidth = () => {
20
20
  const width = process.stdout?.columns;
21
21
  return typeof width === 'number' && Number.isFinite(width) ? width : 80;
@@ -34,7 +34,7 @@ const getInforLines = (config) => {
34
34
  { id: 'version', text: cliVersion },
35
35
  {
36
36
  id: 'hints',
37
- text: 'ENTER to send • \\ + ENTER for a new line • @ to mention files',
37
+ text: 'ENTER to send • \\ + ENTER for a new line ',
38
38
  },
39
39
  { id: 'cwd', text: `Current folder: ${process.cwd()}` },
40
40
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "galaxy-code",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "license": "MIT",
5
5
  "description": "Galaxy Code - AI-powered coding assistant with MCP integration",
6
6
  "author": "Galaxy Agent <galaxy.ai.dev@gmail.com> (https://github.com/galaxy-agent)",
@@ -42,6 +42,7 @@
42
42
  },
43
43
  "files": [
44
44
  "dist",
45
+ "dist/node_modules",
45
46
  "README.md",
46
47
  "LICENSE"
47
48
  ],