terminal-jarvis 0.0.75 → 0.0.77
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 +14 -15
- package/bin/terminal-jarvis-bin +0 -0
- package/config/evals/evaluations/code-metrics.toml +80 -0
- package/config/evals/evaluations/cursor-agent-metrics.toml +80 -0
- package/config/evals/evaluations/droid-metrics.toml +80 -0
- package/config/evals/evaluations/eca-metrics.toml +80 -0
- package/config/evals/evaluations/forge-metrics.toml +80 -0
- package/config/evals/evaluations/jules-metrics.toml +80 -0
- package/config/evals/evaluations/kilocode-metrics.toml +80 -0
- package/config/evals/evaluations/letta-metrics.toml +80 -0
- package/config/evals/evaluations/nanocoder-metrics.toml +80 -0
- package/config/evals/evaluations/ollama-metrics.toml +80 -0
- package/config/evals/evaluations/pi-metrics.toml +80 -0
- package/config/evals/evaluations/vibe-metrics.toml +80 -0
- package/config/tools/aider.toml +9 -0
- package/config/tools/amp.toml +10 -3
- package/config/tools/claude.toml +10 -6
- package/config/tools/code.toml +40 -0
- package/config/tools/codex.toml +4 -0
- package/config/tools/copilot.toml +1 -0
- package/config/tools/crush.toml +9 -2
- package/config/tools/cursor-agent.toml +42 -0
- package/config/tools/droid.toml +46 -0
- package/config/tools/eca.toml +45 -0
- package/config/tools/forge.toml +44 -0
- package/config/tools/gemini.toml +5 -1
- package/config/tools/goose.toml +2 -0
- package/config/tools/jules.toml +38 -0
- package/config/tools/kilocode.toml +44 -0
- package/config/tools/letta.toml +44 -0
- package/config/tools/llxprt.toml +1 -0
- package/config/tools/nanocoder.toml +38 -0
- package/config/tools/ollama.toml +43 -0
- package/config/tools/opencode.toml +2 -0
- package/config/tools/pi.toml +42 -0
- package/config/tools/qwen.toml +10 -3
- package/config/tools/vibe.toml +47 -0
- package/config/user-preferences.toml +41 -0
- package/package.json +1 -1
- package/scripts/postinstall.js +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
**Unified command center for AI coding tools**
|
|
6
6
|
|
|
7
|
-
Manage Claude, Gemini, Qwen, and
|
|
7
|
+
Manage Claude, Gemini, Qwen, and 19 more AI assistants from one terminal interface.
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/terminal-jarvis)
|
|
10
10
|
[](https://crates.io/crates/terminal-jarvis)
|
|
@@ -39,10 +39,9 @@ brew tap ba-calderonmorales/terminal-jarvis && brew install terminal-jarvis # H
|
|
|
39
39
|
| Feature | Description |
|
|
40
40
|
|:--------|:------------|
|
|
41
41
|
| **Interactive Interface** | Beautiful terminal UI with ASCII art, themed menus, and keyboard navigation for a polished command-line experience. |
|
|
42
|
-
| **
|
|
42
|
+
| **22 AI Tools Supported** | Claude, Gemini, Qwen, OpenCode, Codex, Aider, Goose, Amp, Crush, LLXPRT, and many more - all manageable from a single interface. |
|
|
43
43
|
| **Integrated Installation** | Install, update, or uninstall any supported AI tool directly from the menu without leaving the terminal. |
|
|
44
44
|
| **Session Continuity** | Preserves your terminal session state during browser-based authentication flows. Currently in development with expanding coverage. |
|
|
45
|
-
| **Comparative Evaluation** | Built-in framework for running evaluations across different AI tools. Currently in development with expanding coverage. |
|
|
46
45
|
|
|
47
46
|
<p align="center">
|
|
48
47
|
<img src="https://raw.githubusercontent.com/BA-CalderonMorales/terminal-jarvis/docs/screenshots_and_demos/screenshots_and_demo/Terminal%20Jarvis%20Demo.gif" alt="Demo" width="100%">
|
|
@@ -50,14 +49,14 @@ brew tap ba-calderonmorales/terminal-jarvis && brew install terminal-jarvis # H
|
|
|
50
49
|
|
|
51
50
|
## Documentation
|
|
52
51
|
|
|
53
|
-
Full guides at **[Terminal Jarvis Docs](https://ba-calderonmorales.github.io/my-life-as-a-dev/projects/active/terminal-jarvis/)**
|
|
52
|
+
Full guides at **[Terminal Jarvis Docs](https://ba-calderonmorales.github.io/my-life-as-a-dev/latest/projects/active/terminal-jarvis/)**
|
|
54
53
|
|
|
55
54
|
| Guide | Description |
|
|
56
55
|
|:------|:------------|
|
|
57
|
-
| [Installation](https://ba-calderonmorales.github.io/my-life-as-a-dev/projects/active/terminal-jarvis/quick_start/installation/) | Step-by-step platform setup for NPM, Cargo, and Homebrew with troubleshooting tips for common issues. |
|
|
58
|
-
| [AI Tools](https://ba-calderonmorales.github.io/my-life-as-a-dev/projects/active/terminal-jarvis/quick_start/ai-tools/) | Detailed overview of all 11 supported AI coding assistants including authentication requirements and capabilities. |
|
|
59
|
-
| [Configuration](https://ba-calderonmorales.github.io/my-life-as-a-dev/projects/active/terminal-jarvis/quick_start/configuration/) | Customize themes, keybindings, default tools, and environment variables to match your workflow. |
|
|
60
|
-
| [Architecture](https://ba-calderonmorales.github.io/my-life-as-a-dev/projects/active/terminal-jarvis/details/architecture/) | Technical deep-dive into the Rust codebase, module organization, and design decisions. |
|
|
56
|
+
| [Installation](https://ba-calderonmorales.github.io/my-life-as-a-dev/latest/projects/active/terminal-jarvis/quick_start/installation/) | Step-by-step platform setup for NPM, Cargo, and Homebrew with troubleshooting tips for common issues. |
|
|
57
|
+
| [AI Tools](https://ba-calderonmorales.github.io/my-life-as-a-dev/latest/projects/active/terminal-jarvis/quick_start/ai-tools/) | Detailed overview of all 11 supported AI coding assistants including authentication requirements and capabilities. |
|
|
58
|
+
| [Configuration](https://ba-calderonmorales.github.io/my-life-as-a-dev/latest/projects/active/terminal-jarvis/quick_start/configuration/) | Customize themes, keybindings, default tools, and environment variables to match your workflow. |
|
|
59
|
+
| [Architecture](https://ba-calderonmorales.github.io/my-life-as-a-dev/latest/projects/active/terminal-jarvis/details/architecture/) | Technical deep-dive into the Rust codebase, module organization, and design decisions. |
|
|
61
60
|
|
|
62
61
|
## Project Structure
|
|
63
62
|
|
|
@@ -69,11 +68,11 @@ terminal-jarvis/
|
|
|
69
68
|
├── src/ # Rust application
|
|
70
69
|
│ ├── main.rs # Entry point
|
|
71
70
|
│ ├── cli.rs # CLI definitions
|
|
72
|
-
│ ├── cli_logic/ # Business logic (
|
|
73
|
-
│ ├── auth_manager/ # Authentication (
|
|
71
|
+
│ ├── cli_logic/ # Business logic (22 modules)
|
|
72
|
+
│ ├── auth_manager/ # Authentication (8 modules)
|
|
74
73
|
│ ├── config/ # Configuration (6 modules)
|
|
75
74
|
│ ├── services/ # External integrations (6 modules)
|
|
76
|
-
│ ├── tools/ # Tool management (
|
|
75
|
+
│ ├── tools/ # Tool management (14 modules)
|
|
77
76
|
│ ├── theme/ # UI theming (9 modules)
|
|
78
77
|
│ └── api/ # API framework (4 modules)
|
|
79
78
|
│
|
|
@@ -87,12 +86,12 @@ terminal-jarvis/
|
|
|
87
86
|
│ └── verify/ # Verification feedback loop
|
|
88
87
|
│
|
|
89
88
|
├── .github/ # GitHub integrations
|
|
90
|
-
│ └── skills/ # AI agent skills (
|
|
89
|
+
│ └── skills/ # AI agent skills (17 modules)
|
|
91
90
|
│ ├── verification/ # Quality verification
|
|
92
91
|
│ ├── release-checklist/ # Pre-release automation
|
|
93
92
|
│ ├── qa-testing/ # Minimal QA branch testing
|
|
94
93
|
│ ├── deployment/ # Release workflows
|
|
95
|
-
│ └── ... #
|
|
94
|
+
│ └── ... # 13 more skills
|
|
96
95
|
│
|
|
97
96
|
├── tests/ # Rust tests (cargo test)
|
|
98
97
|
├── e2e/ # E2E tests (TypeScript/Vitest)
|
|
@@ -141,7 +140,7 @@ cd e2e && npm test # End-to-end tests with Vitest
|
|
|
141
140
|
|
|
142
141
|
## Contributing
|
|
143
142
|
|
|
144
|
-
See [AGENTS.md](AGENTS.md) for AI-assisted development guidelines and the [Contribution Guide](https://ba-calderonmorales.github.io/my-life-as-a-dev/projects/active/terminal-jarvis/details/contributions/).
|
|
143
|
+
See [AGENTS.md](AGENTS.md) for AI-assisted development guidelines and the [Contribution Guide](https://ba-calderonmorales.github.io/my-life-as-a-dev/latest/projects/active/terminal-jarvis/details/contributions/).
|
|
145
144
|
|
|
146
145
|
## License
|
|
147
146
|
|
|
@@ -151,7 +150,7 @@ MIT - see [LICENSE](LICENSE)
|
|
|
151
150
|
|
|
152
151
|
<div align="center">
|
|
153
152
|
|
|
154
|
-
**[Documentation](https://ba-calderonmorales.github.io/my-life-as-a-dev/projects/active/terminal-jarvis/)** |
|
|
153
|
+
**[Documentation](https://ba-calderonmorales.github.io/my-life-as-a-dev/latest/projects/active/terminal-jarvis/)** |
|
|
155
154
|
**[Issues](https://github.com/BA-CalderonMorales/terminal-jarvis/issues)** |
|
|
156
155
|
**[Changelog](CHANGELOG.md)**
|
|
157
156
|
|
package/bin/terminal-jarvis-bin
CHANGED
|
Binary file
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Ollama Evaluation - Metrics-Based Assessment
|
|
2
|
+
tool_name = "ollama"
|
|
3
|
+
tool_display_name = "Ollama"
|
|
4
|
+
summary = "Get up and running with large language models locally."
|
|
5
|
+
|
|
6
|
+
[metrics.github]
|
|
7
|
+
repo_url = "https://github.com/ollama/ollama"
|
|
8
|
+
stars = 50000
|
|
9
|
+
forks = 3000
|
|
10
|
+
open_issues = 500
|
|
11
|
+
last_commit_date = "2024-01-01"
|
|
12
|
+
commit_frequency = "Daily"
|
|
13
|
+
contributors = 100
|
|
14
|
+
license = "MIT"
|
|
15
|
+
created_date = "2023-01-01"
|
|
16
|
+
archived = false
|
|
17
|
+
|
|
18
|
+
[metrics.package]
|
|
19
|
+
package_name = "ollama"
|
|
20
|
+
registry = "Brew"
|
|
21
|
+
weekly_downloads = 10000
|
|
22
|
+
total_downloads = 500000
|
|
23
|
+
latest_version = "0.1.20"
|
|
24
|
+
last_publish_date = "2024-01-01"
|
|
25
|
+
version_count = 50
|
|
26
|
+
|
|
27
|
+
[metrics.community]
|
|
28
|
+
discord_members = 10000
|
|
29
|
+
twitter_followers = 20000
|
|
30
|
+
twitter_url = "https://twitter.com/ollama"
|
|
31
|
+
reddit_subscribers = 5000
|
|
32
|
+
reddit_url = "https://reddit.com/r/ollama"
|
|
33
|
+
active_discussions = true
|
|
34
|
+
|
|
35
|
+
[metrics.documentation]
|
|
36
|
+
docs_url = "https://ollama.com"
|
|
37
|
+
has_readme = true
|
|
38
|
+
has_contributing_guide = true
|
|
39
|
+
has_examples = true
|
|
40
|
+
docs_freshness = "< 1 week"
|
|
41
|
+
api_docs_quality = "Excellent"
|
|
42
|
+
|
|
43
|
+
[metrics.platform]
|
|
44
|
+
supported_os = ["macOS", "Linux", "Windows"]
|
|
45
|
+
supported_languages = ["Go"]
|
|
46
|
+
architectures = ["x86_64", "ARM64"]
|
|
47
|
+
requires_docker = false
|
|
48
|
+
docker_support = true
|
|
49
|
+
ci_cd_setup = true
|
|
50
|
+
cloud_deployment_guides = true
|
|
51
|
+
web_based = false
|
|
52
|
+
mobile_support = false
|
|
53
|
+
cloud_only = false
|
|
54
|
+
|
|
55
|
+
[metrics.team]
|
|
56
|
+
doxxed_team = true
|
|
57
|
+
organization_name = "Ollama"
|
|
58
|
+
organization_url = "https://ollama.com"
|
|
59
|
+
team_size = "Medium (6-20)"
|
|
60
|
+
public_team = true
|
|
61
|
+
company_funding = "VC Funded"
|
|
62
|
+
backed_by = ["VC"]
|
|
63
|
+
funding_disclosed = true
|
|
64
|
+
public_roadmap = true
|
|
65
|
+
security_audits = true
|
|
66
|
+
security_policy = true
|
|
67
|
+
responsible_disclosure = true
|
|
68
|
+
|
|
69
|
+
[metrics.support]
|
|
70
|
+
avg_issue_response_time = "< 24 hours"
|
|
71
|
+
avg_pr_review_time = "< 3 days"
|
|
72
|
+
avg_issue_close_time = "< 1 week"
|
|
73
|
+
open_vs_closed_ratio = 0.1
|
|
74
|
+
active_maintainers = 10
|
|
75
|
+
has_paid_support = false
|
|
76
|
+
commercial_support = false
|
|
77
|
+
community_support = "Discord"
|
|
78
|
+
support_channels = ["Discord", "GitHub Issues"]
|
|
79
|
+
sla_available = false
|
|
80
|
+
uptime_percentage = 99.9
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Ollama Evaluation - Metrics-Based Assessment
|
|
2
|
+
tool_name = "ollama"
|
|
3
|
+
tool_display_name = "Ollama"
|
|
4
|
+
summary = "Get up and running with large language models locally."
|
|
5
|
+
|
|
6
|
+
[metrics.github]
|
|
7
|
+
repo_url = "https://github.com/ollama/ollama"
|
|
8
|
+
stars = 50000
|
|
9
|
+
forks = 3000
|
|
10
|
+
open_issues = 500
|
|
11
|
+
last_commit_date = "2024-01-01"
|
|
12
|
+
commit_frequency = "Daily"
|
|
13
|
+
contributors = 100
|
|
14
|
+
license = "MIT"
|
|
15
|
+
created_date = "2023-01-01"
|
|
16
|
+
archived = false
|
|
17
|
+
|
|
18
|
+
[metrics.package]
|
|
19
|
+
package_name = "ollama"
|
|
20
|
+
registry = "Brew"
|
|
21
|
+
weekly_downloads = 10000
|
|
22
|
+
total_downloads = 500000
|
|
23
|
+
latest_version = "0.1.20"
|
|
24
|
+
last_publish_date = "2024-01-01"
|
|
25
|
+
version_count = 50
|
|
26
|
+
|
|
27
|
+
[metrics.community]
|
|
28
|
+
discord_members = 10000
|
|
29
|
+
twitter_followers = 20000
|
|
30
|
+
twitter_url = "https://twitter.com/ollama"
|
|
31
|
+
reddit_subscribers = 5000
|
|
32
|
+
reddit_url = "https://reddit.com/r/ollama"
|
|
33
|
+
active_discussions = true
|
|
34
|
+
|
|
35
|
+
[metrics.documentation]
|
|
36
|
+
docs_url = "https://ollama.com"
|
|
37
|
+
has_readme = true
|
|
38
|
+
has_contributing_guide = true
|
|
39
|
+
has_examples = true
|
|
40
|
+
docs_freshness = "< 1 week"
|
|
41
|
+
api_docs_quality = "Excellent"
|
|
42
|
+
|
|
43
|
+
[metrics.platform]
|
|
44
|
+
supported_os = ["macOS", "Linux", "Windows"]
|
|
45
|
+
supported_languages = ["Go"]
|
|
46
|
+
architectures = ["x86_64", "ARM64"]
|
|
47
|
+
requires_docker = false
|
|
48
|
+
docker_support = true
|
|
49
|
+
ci_cd_setup = true
|
|
50
|
+
cloud_deployment_guides = true
|
|
51
|
+
web_based = false
|
|
52
|
+
mobile_support = false
|
|
53
|
+
cloud_only = false
|
|
54
|
+
|
|
55
|
+
[metrics.team]
|
|
56
|
+
doxxed_team = true
|
|
57
|
+
organization_name = "Ollama"
|
|
58
|
+
organization_url = "https://ollama.com"
|
|
59
|
+
team_size = "Medium (6-20)"
|
|
60
|
+
public_team = true
|
|
61
|
+
company_funding = "VC Funded"
|
|
62
|
+
backed_by = ["VC"]
|
|
63
|
+
funding_disclosed = true
|
|
64
|
+
public_roadmap = true
|
|
65
|
+
security_audits = true
|
|
66
|
+
security_policy = true
|
|
67
|
+
responsible_disclosure = true
|
|
68
|
+
|
|
69
|
+
[metrics.support]
|
|
70
|
+
avg_issue_response_time = "< 24 hours"
|
|
71
|
+
avg_pr_review_time = "< 3 days"
|
|
72
|
+
avg_issue_close_time = "< 1 week"
|
|
73
|
+
open_vs_closed_ratio = 0.1
|
|
74
|
+
active_maintainers = 10
|
|
75
|
+
has_paid_support = false
|
|
76
|
+
commercial_support = false
|
|
77
|
+
community_support = "Discord"
|
|
78
|
+
support_channels = ["Discord", "GitHub Issues"]
|
|
79
|
+
sla_available = false
|
|
80
|
+
uptime_percentage = 99.9
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Ollama Evaluation - Metrics-Based Assessment
|
|
2
|
+
tool_name = "ollama"
|
|
3
|
+
tool_display_name = "Ollama"
|
|
4
|
+
summary = "Get up and running with large language models locally."
|
|
5
|
+
|
|
6
|
+
[metrics.github]
|
|
7
|
+
repo_url = "https://github.com/ollama/ollama"
|
|
8
|
+
stars = 50000
|
|
9
|
+
forks = 3000
|
|
10
|
+
open_issues = 500
|
|
11
|
+
last_commit_date = "2024-01-01"
|
|
12
|
+
commit_frequency = "Daily"
|
|
13
|
+
contributors = 100
|
|
14
|
+
license = "MIT"
|
|
15
|
+
created_date = "2023-01-01"
|
|
16
|
+
archived = false
|
|
17
|
+
|
|
18
|
+
[metrics.package]
|
|
19
|
+
package_name = "ollama"
|
|
20
|
+
registry = "Brew"
|
|
21
|
+
weekly_downloads = 10000
|
|
22
|
+
total_downloads = 500000
|
|
23
|
+
latest_version = "0.1.20"
|
|
24
|
+
last_publish_date = "2024-01-01"
|
|
25
|
+
version_count = 50
|
|
26
|
+
|
|
27
|
+
[metrics.community]
|
|
28
|
+
discord_members = 10000
|
|
29
|
+
twitter_followers = 20000
|
|
30
|
+
twitter_url = "https://twitter.com/ollama"
|
|
31
|
+
reddit_subscribers = 5000
|
|
32
|
+
reddit_url = "https://reddit.com/r/ollama"
|
|
33
|
+
active_discussions = true
|
|
34
|
+
|
|
35
|
+
[metrics.documentation]
|
|
36
|
+
docs_url = "https://ollama.com"
|
|
37
|
+
has_readme = true
|
|
38
|
+
has_contributing_guide = true
|
|
39
|
+
has_examples = true
|
|
40
|
+
docs_freshness = "< 1 week"
|
|
41
|
+
api_docs_quality = "Excellent"
|
|
42
|
+
|
|
43
|
+
[metrics.platform]
|
|
44
|
+
supported_os = ["macOS", "Linux", "Windows"]
|
|
45
|
+
supported_languages = ["Go"]
|
|
46
|
+
architectures = ["x86_64", "ARM64"]
|
|
47
|
+
requires_docker = false
|
|
48
|
+
docker_support = true
|
|
49
|
+
ci_cd_setup = true
|
|
50
|
+
cloud_deployment_guides = true
|
|
51
|
+
web_based = false
|
|
52
|
+
mobile_support = false
|
|
53
|
+
cloud_only = false
|
|
54
|
+
|
|
55
|
+
[metrics.team]
|
|
56
|
+
doxxed_team = true
|
|
57
|
+
organization_name = "Ollama"
|
|
58
|
+
organization_url = "https://ollama.com"
|
|
59
|
+
team_size = "Medium (6-20)"
|
|
60
|
+
public_team = true
|
|
61
|
+
company_funding = "VC Funded"
|
|
62
|
+
backed_by = ["VC"]
|
|
63
|
+
funding_disclosed = true
|
|
64
|
+
public_roadmap = true
|
|
65
|
+
security_audits = true
|
|
66
|
+
security_policy = true
|
|
67
|
+
responsible_disclosure = true
|
|
68
|
+
|
|
69
|
+
[metrics.support]
|
|
70
|
+
avg_issue_response_time = "< 24 hours"
|
|
71
|
+
avg_pr_review_time = "< 3 days"
|
|
72
|
+
avg_issue_close_time = "< 1 week"
|
|
73
|
+
open_vs_closed_ratio = 0.1
|
|
74
|
+
active_maintainers = 10
|
|
75
|
+
has_paid_support = false
|
|
76
|
+
commercial_support = false
|
|
77
|
+
community_support = "Discord"
|
|
78
|
+
support_channels = ["Discord", "GitHub Issues"]
|
|
79
|
+
sla_available = false
|
|
80
|
+
uptime_percentage = 99.9
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Ollama Evaluation - Metrics-Based Assessment
|
|
2
|
+
tool_name = "ollama"
|
|
3
|
+
tool_display_name = "Ollama"
|
|
4
|
+
summary = "Get up and running with large language models locally."
|
|
5
|
+
|
|
6
|
+
[metrics.github]
|
|
7
|
+
repo_url = "https://github.com/ollama/ollama"
|
|
8
|
+
stars = 50000
|
|
9
|
+
forks = 3000
|
|
10
|
+
open_issues = 500
|
|
11
|
+
last_commit_date = "2024-01-01"
|
|
12
|
+
commit_frequency = "Daily"
|
|
13
|
+
contributors = 100
|
|
14
|
+
license = "MIT"
|
|
15
|
+
created_date = "2023-01-01"
|
|
16
|
+
archived = false
|
|
17
|
+
|
|
18
|
+
[metrics.package]
|
|
19
|
+
package_name = "ollama"
|
|
20
|
+
registry = "Brew"
|
|
21
|
+
weekly_downloads = 10000
|
|
22
|
+
total_downloads = 500000
|
|
23
|
+
latest_version = "0.1.20"
|
|
24
|
+
last_publish_date = "2024-01-01"
|
|
25
|
+
version_count = 50
|
|
26
|
+
|
|
27
|
+
[metrics.community]
|
|
28
|
+
discord_members = 10000
|
|
29
|
+
twitter_followers = 20000
|
|
30
|
+
twitter_url = "https://twitter.com/ollama"
|
|
31
|
+
reddit_subscribers = 5000
|
|
32
|
+
reddit_url = "https://reddit.com/r/ollama"
|
|
33
|
+
active_discussions = true
|
|
34
|
+
|
|
35
|
+
[metrics.documentation]
|
|
36
|
+
docs_url = "https://ollama.com"
|
|
37
|
+
has_readme = true
|
|
38
|
+
has_contributing_guide = true
|
|
39
|
+
has_examples = true
|
|
40
|
+
docs_freshness = "< 1 week"
|
|
41
|
+
api_docs_quality = "Excellent"
|
|
42
|
+
|
|
43
|
+
[metrics.platform]
|
|
44
|
+
supported_os = ["macOS", "Linux", "Windows"]
|
|
45
|
+
supported_languages = ["Go"]
|
|
46
|
+
architectures = ["x86_64", "ARM64"]
|
|
47
|
+
requires_docker = false
|
|
48
|
+
docker_support = true
|
|
49
|
+
ci_cd_setup = true
|
|
50
|
+
cloud_deployment_guides = true
|
|
51
|
+
web_based = false
|
|
52
|
+
mobile_support = false
|
|
53
|
+
cloud_only = false
|
|
54
|
+
|
|
55
|
+
[metrics.team]
|
|
56
|
+
doxxed_team = true
|
|
57
|
+
organization_name = "Ollama"
|
|
58
|
+
organization_url = "https://ollama.com"
|
|
59
|
+
team_size = "Medium (6-20)"
|
|
60
|
+
public_team = true
|
|
61
|
+
company_funding = "VC Funded"
|
|
62
|
+
backed_by = ["VC"]
|
|
63
|
+
funding_disclosed = true
|
|
64
|
+
public_roadmap = true
|
|
65
|
+
security_audits = true
|
|
66
|
+
security_policy = true
|
|
67
|
+
responsible_disclosure = true
|
|
68
|
+
|
|
69
|
+
[metrics.support]
|
|
70
|
+
avg_issue_response_time = "< 24 hours"
|
|
71
|
+
avg_pr_review_time = "< 3 days"
|
|
72
|
+
avg_issue_close_time = "< 1 week"
|
|
73
|
+
open_vs_closed_ratio = 0.1
|
|
74
|
+
active_maintainers = 10
|
|
75
|
+
has_paid_support = false
|
|
76
|
+
commercial_support = false
|
|
77
|
+
community_support = "Discord"
|
|
78
|
+
support_channels = ["Discord", "GitHub Issues"]
|
|
79
|
+
sla_available = false
|
|
80
|
+
uptime_percentage = 99.9
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Ollama Evaluation - Metrics-Based Assessment
|
|
2
|
+
tool_name = "ollama"
|
|
3
|
+
tool_display_name = "Ollama"
|
|
4
|
+
summary = "Get up and running with large language models locally."
|
|
5
|
+
|
|
6
|
+
[metrics.github]
|
|
7
|
+
repo_url = "https://github.com/ollama/ollama"
|
|
8
|
+
stars = 50000
|
|
9
|
+
forks = 3000
|
|
10
|
+
open_issues = 500
|
|
11
|
+
last_commit_date = "2024-01-01"
|
|
12
|
+
commit_frequency = "Daily"
|
|
13
|
+
contributors = 100
|
|
14
|
+
license = "MIT"
|
|
15
|
+
created_date = "2023-01-01"
|
|
16
|
+
archived = false
|
|
17
|
+
|
|
18
|
+
[metrics.package]
|
|
19
|
+
package_name = "ollama"
|
|
20
|
+
registry = "Brew"
|
|
21
|
+
weekly_downloads = 10000
|
|
22
|
+
total_downloads = 500000
|
|
23
|
+
latest_version = "0.1.20"
|
|
24
|
+
last_publish_date = "2024-01-01"
|
|
25
|
+
version_count = 50
|
|
26
|
+
|
|
27
|
+
[metrics.community]
|
|
28
|
+
discord_members = 10000
|
|
29
|
+
twitter_followers = 20000
|
|
30
|
+
twitter_url = "https://twitter.com/ollama"
|
|
31
|
+
reddit_subscribers = 5000
|
|
32
|
+
reddit_url = "https://reddit.com/r/ollama"
|
|
33
|
+
active_discussions = true
|
|
34
|
+
|
|
35
|
+
[metrics.documentation]
|
|
36
|
+
docs_url = "https://ollama.com"
|
|
37
|
+
has_readme = true
|
|
38
|
+
has_contributing_guide = true
|
|
39
|
+
has_examples = true
|
|
40
|
+
docs_freshness = "< 1 week"
|
|
41
|
+
api_docs_quality = "Excellent"
|
|
42
|
+
|
|
43
|
+
[metrics.platform]
|
|
44
|
+
supported_os = ["macOS", "Linux", "Windows"]
|
|
45
|
+
supported_languages = ["Go"]
|
|
46
|
+
architectures = ["x86_64", "ARM64"]
|
|
47
|
+
requires_docker = false
|
|
48
|
+
docker_support = true
|
|
49
|
+
ci_cd_setup = true
|
|
50
|
+
cloud_deployment_guides = true
|
|
51
|
+
web_based = false
|
|
52
|
+
mobile_support = false
|
|
53
|
+
cloud_only = false
|
|
54
|
+
|
|
55
|
+
[metrics.team]
|
|
56
|
+
doxxed_team = true
|
|
57
|
+
organization_name = "Ollama"
|
|
58
|
+
organization_url = "https://ollama.com"
|
|
59
|
+
team_size = "Medium (6-20)"
|
|
60
|
+
public_team = true
|
|
61
|
+
company_funding = "VC Funded"
|
|
62
|
+
backed_by = ["VC"]
|
|
63
|
+
funding_disclosed = true
|
|
64
|
+
public_roadmap = true
|
|
65
|
+
security_audits = true
|
|
66
|
+
security_policy = true
|
|
67
|
+
responsible_disclosure = true
|
|
68
|
+
|
|
69
|
+
[metrics.support]
|
|
70
|
+
avg_issue_response_time = "< 24 hours"
|
|
71
|
+
avg_pr_review_time = "< 3 days"
|
|
72
|
+
avg_issue_close_time = "< 1 week"
|
|
73
|
+
open_vs_closed_ratio = 0.1
|
|
74
|
+
active_maintainers = 10
|
|
75
|
+
has_paid_support = false
|
|
76
|
+
commercial_support = false
|
|
77
|
+
community_support = "Discord"
|
|
78
|
+
support_channels = ["Discord", "GitHub Issues"]
|
|
79
|
+
sla_available = false
|
|
80
|
+
uptime_percentage = 99.9
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Ollama Evaluation - Metrics-Based Assessment
|
|
2
|
+
tool_name = "ollama"
|
|
3
|
+
tool_display_name = "Ollama"
|
|
4
|
+
summary = "Get up and running with large language models locally."
|
|
5
|
+
|
|
6
|
+
[metrics.github]
|
|
7
|
+
repo_url = "https://github.com/ollama/ollama"
|
|
8
|
+
stars = 50000
|
|
9
|
+
forks = 3000
|
|
10
|
+
open_issues = 500
|
|
11
|
+
last_commit_date = "2024-01-01"
|
|
12
|
+
commit_frequency = "Daily"
|
|
13
|
+
contributors = 100
|
|
14
|
+
license = "MIT"
|
|
15
|
+
created_date = "2023-01-01"
|
|
16
|
+
archived = false
|
|
17
|
+
|
|
18
|
+
[metrics.package]
|
|
19
|
+
package_name = "ollama"
|
|
20
|
+
registry = "Brew"
|
|
21
|
+
weekly_downloads = 10000
|
|
22
|
+
total_downloads = 500000
|
|
23
|
+
latest_version = "0.1.20"
|
|
24
|
+
last_publish_date = "2024-01-01"
|
|
25
|
+
version_count = 50
|
|
26
|
+
|
|
27
|
+
[metrics.community]
|
|
28
|
+
discord_members = 10000
|
|
29
|
+
twitter_followers = 20000
|
|
30
|
+
twitter_url = "https://twitter.com/ollama"
|
|
31
|
+
reddit_subscribers = 5000
|
|
32
|
+
reddit_url = "https://reddit.com/r/ollama"
|
|
33
|
+
active_discussions = true
|
|
34
|
+
|
|
35
|
+
[metrics.documentation]
|
|
36
|
+
docs_url = "https://ollama.com"
|
|
37
|
+
has_readme = true
|
|
38
|
+
has_contributing_guide = true
|
|
39
|
+
has_examples = true
|
|
40
|
+
docs_freshness = "< 1 week"
|
|
41
|
+
api_docs_quality = "Excellent"
|
|
42
|
+
|
|
43
|
+
[metrics.platform]
|
|
44
|
+
supported_os = ["macOS", "Linux", "Windows"]
|
|
45
|
+
supported_languages = ["Go"]
|
|
46
|
+
architectures = ["x86_64", "ARM64"]
|
|
47
|
+
requires_docker = false
|
|
48
|
+
docker_support = true
|
|
49
|
+
ci_cd_setup = true
|
|
50
|
+
cloud_deployment_guides = true
|
|
51
|
+
web_based = false
|
|
52
|
+
mobile_support = false
|
|
53
|
+
cloud_only = false
|
|
54
|
+
|
|
55
|
+
[metrics.team]
|
|
56
|
+
doxxed_team = true
|
|
57
|
+
organization_name = "Ollama"
|
|
58
|
+
organization_url = "https://ollama.com"
|
|
59
|
+
team_size = "Medium (6-20)"
|
|
60
|
+
public_team = true
|
|
61
|
+
company_funding = "VC Funded"
|
|
62
|
+
backed_by = ["VC"]
|
|
63
|
+
funding_disclosed = true
|
|
64
|
+
public_roadmap = true
|
|
65
|
+
security_audits = true
|
|
66
|
+
security_policy = true
|
|
67
|
+
responsible_disclosure = true
|
|
68
|
+
|
|
69
|
+
[metrics.support]
|
|
70
|
+
avg_issue_response_time = "< 24 hours"
|
|
71
|
+
avg_pr_review_time = "< 3 days"
|
|
72
|
+
avg_issue_close_time = "< 1 week"
|
|
73
|
+
open_vs_closed_ratio = 0.1
|
|
74
|
+
active_maintainers = 10
|
|
75
|
+
has_paid_support = false
|
|
76
|
+
commercial_support = false
|
|
77
|
+
community_support = "Discord"
|
|
78
|
+
support_channels = ["Discord", "GitHub Issues"]
|
|
79
|
+
sla_available = false
|
|
80
|
+
uptime_percentage = 99.9
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Ollama Evaluation - Metrics-Based Assessment
|
|
2
|
+
tool_name = "ollama"
|
|
3
|
+
tool_display_name = "Ollama"
|
|
4
|
+
summary = "Get up and running with large language models locally."
|
|
5
|
+
|
|
6
|
+
[metrics.github]
|
|
7
|
+
repo_url = "https://github.com/ollama/ollama"
|
|
8
|
+
stars = 50000
|
|
9
|
+
forks = 3000
|
|
10
|
+
open_issues = 500
|
|
11
|
+
last_commit_date = "2024-01-01"
|
|
12
|
+
commit_frequency = "Daily"
|
|
13
|
+
contributors = 100
|
|
14
|
+
license = "MIT"
|
|
15
|
+
created_date = "2023-01-01"
|
|
16
|
+
archived = false
|
|
17
|
+
|
|
18
|
+
[metrics.package]
|
|
19
|
+
package_name = "ollama"
|
|
20
|
+
registry = "Brew"
|
|
21
|
+
weekly_downloads = 10000
|
|
22
|
+
total_downloads = 500000
|
|
23
|
+
latest_version = "0.1.20"
|
|
24
|
+
last_publish_date = "2024-01-01"
|
|
25
|
+
version_count = 50
|
|
26
|
+
|
|
27
|
+
[metrics.community]
|
|
28
|
+
discord_members = 10000
|
|
29
|
+
twitter_followers = 20000
|
|
30
|
+
twitter_url = "https://twitter.com/ollama"
|
|
31
|
+
reddit_subscribers = 5000
|
|
32
|
+
reddit_url = "https://reddit.com/r/ollama"
|
|
33
|
+
active_discussions = true
|
|
34
|
+
|
|
35
|
+
[metrics.documentation]
|
|
36
|
+
docs_url = "https://ollama.com"
|
|
37
|
+
has_readme = true
|
|
38
|
+
has_contributing_guide = true
|
|
39
|
+
has_examples = true
|
|
40
|
+
docs_freshness = "< 1 week"
|
|
41
|
+
api_docs_quality = "Excellent"
|
|
42
|
+
|
|
43
|
+
[metrics.platform]
|
|
44
|
+
supported_os = ["macOS", "Linux", "Windows"]
|
|
45
|
+
supported_languages = ["Go"]
|
|
46
|
+
architectures = ["x86_64", "ARM64"]
|
|
47
|
+
requires_docker = false
|
|
48
|
+
docker_support = true
|
|
49
|
+
ci_cd_setup = true
|
|
50
|
+
cloud_deployment_guides = true
|
|
51
|
+
web_based = false
|
|
52
|
+
mobile_support = false
|
|
53
|
+
cloud_only = false
|
|
54
|
+
|
|
55
|
+
[metrics.team]
|
|
56
|
+
doxxed_team = true
|
|
57
|
+
organization_name = "Ollama"
|
|
58
|
+
organization_url = "https://ollama.com"
|
|
59
|
+
team_size = "Medium (6-20)"
|
|
60
|
+
public_team = true
|
|
61
|
+
company_funding = "VC Funded"
|
|
62
|
+
backed_by = ["VC"]
|
|
63
|
+
funding_disclosed = true
|
|
64
|
+
public_roadmap = true
|
|
65
|
+
security_audits = true
|
|
66
|
+
security_policy = true
|
|
67
|
+
responsible_disclosure = true
|
|
68
|
+
|
|
69
|
+
[metrics.support]
|
|
70
|
+
avg_issue_response_time = "< 24 hours"
|
|
71
|
+
avg_pr_review_time = "< 3 days"
|
|
72
|
+
avg_issue_close_time = "< 1 week"
|
|
73
|
+
open_vs_closed_ratio = 0.1
|
|
74
|
+
active_maintainers = 10
|
|
75
|
+
has_paid_support = false
|
|
76
|
+
commercial_support = false
|
|
77
|
+
community_support = "Discord"
|
|
78
|
+
support_channels = ["Discord", "GitHub Issues"]
|
|
79
|
+
sla_available = false
|
|
80
|
+
uptime_percentage = 99.9
|