ramorie 2.3.0 → 3.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
@@ -1,6 +1,6 @@
1
1
  # Ramorie CLI
2
2
 
3
- AI-powered task and memory management CLI.
3
+ AI-powered task and memory management CLI for developers and AI agents.
4
4
 
5
5
  ## Installation
6
6
 
@@ -10,34 +10,56 @@ npm install -g ramorie
10
10
 
11
11
  ## Alternative Installation Methods
12
12
 
13
- ### macOS / Linux (Homebrew)
13
+ ### Homebrew (macOS/Linux)
14
14
  ```bash
15
- brew install terzigolu/tap/ramorie
15
+ brew tap kutbudev/tap
16
+ brew install ramorie
16
17
  ```
17
18
 
18
19
  ### Direct Download
19
- Download the latest release from [GitHub Releases](https://github.com/terzigolu/ramorie/releases).
20
+ Download pre-built binaries from [GitHub Releases](https://github.com/kutbudev/ramorie-cli/releases/latest).
20
21
 
21
- ## Usage
22
+ ### Go Install
23
+ ```bash
24
+ go install github.com/kutbudev/ramorie-cli/cmd/jbraincli@latest
25
+ ```
26
+
27
+ ## Quick Start
22
28
 
23
29
  ```bash
24
- # Configure API connection
25
- ramorie config set-api <your-api-key>
30
+ # Create an account
31
+ ramorie setup register
26
32
 
27
- # List tasks
28
- ramorie task list
33
+ # Create your first project
34
+ ramorie project init "My Project"
35
+ ramorie project use "My Project"
29
36
 
30
37
  # Create a task
31
- ramorie task add "My new task"
38
+ ramorie task create "Implement user authentication" --priority H
39
+
40
+ # View kanban board
41
+ ramorie kanban
32
42
 
33
- # AI-powered features
34
- ramorie task analyze <task-id>
35
- ramorie memory add "Important note"
43
+ # Store knowledge
44
+ ramorie remember "Use bcrypt with 12 rounds for password hashing"
45
+
46
+ # Search memories
47
+ ramorie memory recall "password"
36
48
  ```
37
49
 
50
+ ## Features
51
+
52
+ - šŸŽÆ **Smart Task Management** - Priorities, progress tracking, subtasks
53
+ - 🧠 **Memory System** - Store and search development insights
54
+ - šŸ¤– **AI Integration** - Gemini-powered suggestions and analysis
55
+ - šŸ“Š **Visual Dashboards** - Kanban boards, burndown charts, statistics
56
+ - šŸ”— **MCP Support** - Model Context Protocol for AI agents (Cursor, Claude, etc.)
57
+
38
58
  ## Documentation
39
59
 
40
- Full documentation available at [ramorie.com](https://ramorie.com)
60
+ - **Website:** [ramorie.com](https://ramorie.com)
61
+ - **Docs:** [ramorie.com/docs](https://ramorie.com/docs)
62
+ - **GitHub:** [github.com/kutbudev/ramorie-cli](https://github.com/kutbudev/ramorie-cli)
41
63
 
42
64
  ## License
43
65
 
package/bin/ramorie CHANGED
@@ -25,8 +25,8 @@ This usually means the postinstall script failed.
25
25
  Try reinstalling: npm install -g ramorie
26
26
 
27
27
  Or install via other methods:
28
- • brew install ramorie
29
- • go install github.com/terzigolu/josepshbrain-go/cmd/jbraincli@latest
28
+ • brew install kutbudev/tap/ramorie
29
+ • go install github.com/kutbudev/ramorie-cli/cmd/jbraincli@latest
30
30
  `);
31
31
  process.exit(1);
32
32
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "ramorie",
3
- "version": "2.3.0",
3
+ "version": "3.0.1",
4
4
  "description": "AI-powered task and memory management CLI",
5
5
  "homepage": "https://ramorie.com",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/terzigolu/ramorie.git"
8
+ "url": "https://github.com/kutbudev/ramorie-cli.git"
9
9
  },
10
10
  "license": "MIT",
11
11
  "author": "terzigolu",
package/postinstall.js CHANGED
@@ -13,7 +13,7 @@ const path = require('path');
13
13
  const { execSync } = require('child_process');
14
14
 
15
15
  const VERSION = require('./package.json').version;
16
- const REPO = 'terzigolu/ramorie';
16
+ const REPO = 'kutbudev/ramorie-cli';
17
17
 
18
18
  // Platform/arch mapping
19
19
  const PLATFORM_MAP = {
@@ -59,7 +59,7 @@ async function main() {
59
59
 
60
60
  if (!platform || !arch) {
61
61
  console.error(`āŒ Unsupported platform: ${process.platform}/${process.arch}`);
62
- console.error('Please install manually from: https://github.com/terzigolu/ramorie/releases');
62
+ console.error('Please install manually from: https://github.com/kutbudev/ramorie-cli/releases');
63
63
  process.exit(0); // Don't fail npm install
64
64
  }
65
65
 
@@ -129,9 +129,9 @@ async function main() {
129
129
  } catch (error) {
130
130
  console.error(`\nāš ļø Binary installation skipped: ${error.message}`);
131
131
  console.error('\nAlternative installation methods:');
132
- console.error(' • macOS/Linux: brew install terzigolu/tap/ramorie');
132
+ console.error(' • macOS/Linux: brew install kutbudev/tap/ramorie');
133
133
  console.error(' • Windows: scoop install ramorie');
134
- console.error(' • All: https://github.com/terzigolu/ramorie/releases');
134
+ console.error(' • All: https://github.com/kutbudev/ramorie-cli/releases');
135
135
 
136
136
  // Don't fail the npm install
137
137
  process.exit(0);