toolpack-cli 0.1.1 → 1.0.1

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/README.md CHANGED
@@ -33,7 +33,7 @@ Run the application:
33
33
  toolpack
34
34
  ```
35
35
 
36
- _(Note: For cloud providers like OpenAI, Anthropic, or Gemini, you will need to set API keys as environment variables such as `TOOLPACK_OPENAI_KEY` inside `.env` or exported to your shell)._
36
+ _(Note: For cloud providers like OpenAI, Anthropic, or Gemini, set the relevant environment variables—e.g., `TOOLPACK_OPENAI_KEY`, `TOOLPACK_ANTHROPIC_KEY`, `TOOLPACK_GEMINI_KEY`—in your shell before running `toolpack`.)_
37
37
 
38
38
  ## Features & Commands
39
39
 
@@ -5,6 +5,6 @@ export function AppInfo() {
5
5
  const { theme } = useTheme();
6
6
  // Hardcoded for now, mimicking original behavior
7
7
  const currentPath = process.cwd();
8
- const version = 'v1.0.0';
8
+ const version = 'v1.0.1';
9
9
  return (_jsxs(Box, { flexDirection: "column", alignItems: "center", marginBottom: 2, children: [_jsx(Text, { color: theme.colors.textSecondary, children: currentPath }), _jsx(Text, { color: theme.colors.textSecondary, children: version })] }));
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "toolpack-cli",
3
- "version": "0.1.1",
3
+ "version": "1.0.1",
4
4
  "description": "Rich interactive command-line interface directly powering the Toolpack SDK",
5
5
  "license": "Apache-2.0",
6
6
  "preferGlobal": true,