orchagent 0.3.29
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 +45 -0
- package/index.js +15 -0
- package/package.json +37 -0
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# orchagent
|
|
2
|
+
|
|
3
|
+
Convenience wrapper for [@orchagent/cli](https://www.npmjs.com/package/@orchagent/cli).
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Use directly with npx (no installation)
|
|
9
|
+
npx orchagent skill install owner/repo
|
|
10
|
+
|
|
11
|
+
# Or install globally
|
|
12
|
+
npm install -g orchagent
|
|
13
|
+
orchagent skill install owner/repo
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## What is this package?
|
|
17
|
+
|
|
18
|
+
This is a thin wrapper that provides a shorter `npx` command for the orchagent CLI.
|
|
19
|
+
|
|
20
|
+
**Both packages work identically:**
|
|
21
|
+
- `npx orchagent` (this package - shorter!)
|
|
22
|
+
- `npx @orchagent/cli` (main package)
|
|
23
|
+
|
|
24
|
+
**For global installation, we recommend the main package:**
|
|
25
|
+
```bash
|
|
26
|
+
npm install -g @orchagent/cli
|
|
27
|
+
orch skill install owner/repo # Short alias!
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Full Documentation
|
|
31
|
+
|
|
32
|
+
See the main package for complete documentation:
|
|
33
|
+
- [@orchagent/cli on npm](https://www.npmjs.com/package/@orchagent/cli)
|
|
34
|
+
- [Official documentation](https://orchagent.io/docs/cli)
|
|
35
|
+
- [GitHub repository](https://github.com/orchagent/orchagent)
|
|
36
|
+
|
|
37
|
+
## Why Two Packages?
|
|
38
|
+
|
|
39
|
+
The scoped package `@orchagent/cli` is our main package and allows us to publish future packages under the `@orchagent/*` namespace (like `@orchagent/sdk` for TypeScript).
|
|
40
|
+
|
|
41
|
+
This unscoped wrapper exists purely for `npx` convenience - it forwards all commands to `@orchagent/cli`.
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
MIT
|
package/index.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Thin wrapper for @orchagent/cli
|
|
5
|
+
*
|
|
6
|
+
* This package exists to provide a shorter npx command:
|
|
7
|
+
* npx orchagent skill install org/skill
|
|
8
|
+
*
|
|
9
|
+
* Instead of:
|
|
10
|
+
* npx @orchagent/cli skill install org/skill
|
|
11
|
+
*
|
|
12
|
+
* All functionality is provided by @orchagent/cli.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
require('@orchagent/cli/dist/index.js');
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "orchagent",
|
|
3
|
+
"version": "0.3.29",
|
|
4
|
+
"description": "Convenience wrapper for @orchagent/cli - AI agent marketplace CLI",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "orchagent <hello@orchagent.io>",
|
|
7
|
+
"homepage": "https://orchagent.io",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/orchagent/orchagent.git",
|
|
11
|
+
"directory": "cli-wrapper"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/orchagent/orchagent/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"orchagent",
|
|
18
|
+
"ai",
|
|
19
|
+
"agents",
|
|
20
|
+
"cli",
|
|
21
|
+
"marketplace",
|
|
22
|
+
"llm"
|
|
23
|
+
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18"
|
|
26
|
+
},
|
|
27
|
+
"bin": {
|
|
28
|
+
"orchagent": "index.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"index.js",
|
|
32
|
+
"README.md"
|
|
33
|
+
],
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@orchagent/cli": "^0.3.29"
|
|
36
|
+
}
|
|
37
|
+
}
|