agentics 0.1.21 → 0.2.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.
Binary file
Binary file
@@ -20,7 +20,7 @@ function getPlatform() {
20
20
  os = 'linux';
21
21
  break;
22
22
  case 'win32':
23
- os = 'windows';
23
+ os = 'win';
24
24
  break;
25
25
  default:
26
26
  throw new Error(`Unsupported platform: ${platform}`);
@@ -43,7 +43,7 @@ function getPlatform() {
43
43
 
44
44
  function getBinaryName() {
45
45
  const { os, cpu } = getPlatform();
46
- const ext = os === 'windows' ? '.exe' : '';
46
+ const ext = os === 'win' ? '.exe' : '';
47
47
  return `agentics-${os}-${cpu}${ext}`;
48
48
  }
49
49
 
package/package.json CHANGED
@@ -1,47 +1,43 @@
1
1
  {
2
2
  "name": "agentics",
3
- "version": "0.1.21",
4
- "description": "The Agentics CLI - AI infrastructure platform for developers",
5
- "type": "module",
6
- "license": "MIT",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://gitlab.com/agentics-ai/agentics.git"
10
- },
11
- "homepage": "https://agentics.co.za",
12
- "author": "Agentics <connor@agentics.co.za>",
13
- "keywords": [
14
- "ai",
15
- "cli",
16
- "agentics",
17
- "openai",
18
- "llm",
19
- "inference",
20
- "chatgpt",
21
- "gpt",
22
- "agent"
23
- ],
3
+ "version": "0.2.1",
4
+ "description": "Agentics terminal renderer with powerboard layouts, voice reactivity and realtime API streaming",
5
+ "main": "./dist/cli.js",
6
+ "type": "module",
24
7
  "bin": {
25
- "agentics": "bin/run.js"
8
+ "agentics": "./dist/cli.js"
26
9
  },
27
- "files": [
28
- "bin",
29
- "scripts"
30
- ],
31
10
  "scripts": {
32
- "postinstall": "node scripts/postinstall.js",
33
- "build": "./scripts/build.sh"
11
+ "start": "node ./dist/cli.js"
34
12
  },
35
- "os": [
36
- "darwin",
37
- "linux",
38
- "win32"
39
- ],
40
- "cpu": [
41
- "x64",
42
- "arm64"
13
+ "files": [
14
+ "dist",
15
+ "LICENSE",
16
+ "README.md"
43
17
  ],
44
18
  "engines": {
45
- "node": ">=16"
19
+ "node": ">=22"
20
+ },
21
+ "keywords": [
22
+ "agentics",
23
+ "orb",
24
+ "terminal",
25
+ "tui",
26
+ "voice",
27
+ "realtime",
28
+ "powerboard"
29
+ ],
30
+ "author": "Agentics (Pty) Ltd <connor@agentics.co.za>",
31
+ "license": "SEE LICENSE IN LICENSE",
32
+ "homepage": "https://agentics.co.za",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/agentics/orb.git"
36
+ },
37
+ "devDependencies": {
38
+ "@types/bun": "latest"
39
+ },
40
+ "peerDependencies": {
41
+ "typescript": "^5"
46
42
  }
47
43
  }
package/README.md DELETED
@@ -1,62 +0,0 @@
1
- # AGENTICS
2
-
3
- The official Agentics CLI for project scaffolding, authentication, and launching the Agentics Inference CLI.
4
-
5
- ## Usage
6
-
7
- Simply run:
8
-
9
- ```bash
10
- npx agentics
11
- ```
12
-
13
- ## Features
14
-
15
- - **Interactive Setup Wizard** - Guided project creation and configuration
16
- - **Authentication** - Login/register for Agentics API access
17
- - **Project Templates** - Scaffold chat apps, voice apps, agents, and more
18
- - **CLI Launcher** - Automatically installs and launches `agentics-cli` for AI inference
19
-
20
- This opens an interactive TUI where you can:
21
-
22
- 1. **Launch CLI** - Access the Agentics Inference CLI for chatting with AI models
23
- 2. **Create Projects** - Choose from API examples, application templates, and integrations
24
- 3. **Manage Auth** - Login, register, or logout
25
-
26
- ## Project Templates
27
-
28
- ### API Examples
29
- - Chat Completions
30
- - Image Generation
31
- - Text-to-Speech
32
- - Speech-to-Text
33
- - Tool Calling
34
- - Live Audio
35
- - Realtime Voice
36
- - Embeddings
37
-
38
- ### Application Templates
39
- - Chat Application
40
- - Voice Assistant
41
- - AI Agent
42
- - Multimodal App
43
-
44
- ### Integrations
45
- - Voice Orb Widget
46
- - SDK Packages
47
- - WebSocket Integration
48
- - Embeddings API
49
-
50
- ## Requirements
51
-
52
- - Node.js 16+
53
- - npm or yarn
54
-
55
- ## Links
56
-
57
- - Website: https://agentics.co.za
58
- - API Docs: https://api.agentics.co.za/docs
59
-
60
- ## License
61
-
62
- Proprietary - © Agentics (Pty) Ltd
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,33 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- import { chmod } from 'fs/promises';
4
- import { existsSync } from 'fs';
5
- import { fileURLToPath } from 'url';
6
- import { dirname, join } from 'path';
7
-
8
- const __dirname = dirname(fileURLToPath(import.meta.url));
9
- const binDir = join(__dirname, '..', 'bin');
10
-
11
- async function postinstall() {
12
- const binaries = [
13
- 'agentics-darwin-amd64',
14
- 'agentics-darwin-arm64',
15
- 'agentics-linux-amd64',
16
- 'agentics-linux-arm64'
17
- ];
18
-
19
- for (const binary of binaries) {
20
- const binaryPath = join(binDir, binary);
21
- if (existsSync(binaryPath)) {
22
- try {
23
- await chmod(binaryPath, 0o755);
24
- } catch (err) {
25
- }
26
- }
27
- }
28
-
29
- console.log('⚡ Agentics CLI installed successfully!');
30
- console.log(' Run "npx agentics" to get started.');
31
- }
32
-
33
- postinstall().catch(console.error);