crewx 0.1.0
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/LICENSE +13 -0
- package/README.md +48 -0
- package/bin/crewx.js +20 -0
- package/package.json +30 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright (c) 2025 Doha Park
|
|
2
|
+
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are the proprietary
|
|
6
|
+
and confidential property of Doha Park.
|
|
7
|
+
|
|
8
|
+
Unauthorized copying, distribution, modification, public display, or public performance
|
|
9
|
+
of this Software, via any medium, is strictly prohibited.
|
|
10
|
+
|
|
11
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
12
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
13
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# crewx
|
|
2
|
+
|
|
3
|
+
> Execute AI crews instantly without installation
|
|
4
|
+
|
|
5
|
+
## 🚀 Coming Soon
|
|
6
|
+
|
|
7
|
+
`crewx` is part of the **CrewCode AI Agent Platform** - the npm for AI agents.
|
|
8
|
+
|
|
9
|
+
### What is crewx?
|
|
10
|
+
|
|
11
|
+
- 🎯 Execute any AI crew from the registry without installation
|
|
12
|
+
- ⚡ Similar to `npx` for npm packages
|
|
13
|
+
- 🔥 One-liner crew execution
|
|
14
|
+
|
|
15
|
+
### Example Usage (Coming Soon)
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# Run crews instantly
|
|
19
|
+
crewx <scope>/<crew-name> "task description"
|
|
20
|
+
|
|
21
|
+
# Specific agent in a crew
|
|
22
|
+
crewx <scope>/<crew-name>:<agent> "task description"
|
|
23
|
+
|
|
24
|
+
# Specific version
|
|
25
|
+
crewx <scope>/<crew-name>@1.2.3 "task description"
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## 📦 Part of CrewCode Ecosystem
|
|
29
|
+
|
|
30
|
+
- **crewcode**: Project management and local agents
|
|
31
|
+
- **crewx**: Instant crew execution (this package)
|
|
32
|
+
- **CrewCode Registry**: AI agent marketplace
|
|
33
|
+
|
|
34
|
+
## 🎯 Vision
|
|
35
|
+
|
|
36
|
+
Just like `npx` revolutionized trying npm packages, `crewx` will make AI crews instantly accessible.
|
|
37
|
+
|
|
38
|
+
## 📝 License
|
|
39
|
+
|
|
40
|
+
Copyright © 2025 Doha Park. All rights reserved.
|
|
41
|
+
|
|
42
|
+
This software is proprietary and confidential.
|
|
43
|
+
|
|
44
|
+
## 🔗 Links
|
|
45
|
+
|
|
46
|
+
- Website: https://crewcode.ai
|
|
47
|
+
- GitHub: https://github.com/crewcode/crewx
|
|
48
|
+
- Registry: https://registry.crewcode.ai (coming soon)
|
package/bin/crewx.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
console.log('🚀 crewx v0.1.0 - Coming Soon!');
|
|
4
|
+
console.log('');
|
|
5
|
+
console.log('Execute AI crews instantly without installation.');
|
|
6
|
+
console.log('Part of CrewCode AI Agent Platform');
|
|
7
|
+
console.log('');
|
|
8
|
+
console.log('📦 What is crewx?');
|
|
9
|
+
console.log(' - Like npx for AI agents');
|
|
10
|
+
console.log(' - Run any crew from the registry');
|
|
11
|
+
console.log(' - No installation needed');
|
|
12
|
+
console.log('');
|
|
13
|
+
console.log('💡 Example (coming soon):');
|
|
14
|
+
console.log(' crewx <scope>/<crew-name> "task description"');
|
|
15
|
+
console.log(' crewx <scope>/<crew-name>:<agent> "task description"');
|
|
16
|
+
console.log('');
|
|
17
|
+
console.log('🌐 Learn more: https://crewcode.ai');
|
|
18
|
+
console.log('');
|
|
19
|
+
|
|
20
|
+
process.exit(0);
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "crewx",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Execute AI crews instantly without installation - Part of CrewCode AI Agent Platform",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"crewx": "./bin/crewx.js"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"ai",
|
|
11
|
+
"agents",
|
|
12
|
+
"crew",
|
|
13
|
+
"ai-agents",
|
|
14
|
+
"llm",
|
|
15
|
+
"development",
|
|
16
|
+
"automation",
|
|
17
|
+
"crewcode"
|
|
18
|
+
],
|
|
19
|
+
"author": "Doha Park <dohapark81@gmail.com>",
|
|
20
|
+
"license": "UNLICENSED",
|
|
21
|
+
"private": false,
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "https://github.com/crewcode/crewx.git"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://crewcode.ai",
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18.0.0"
|
|
29
|
+
}
|
|
30
|
+
}
|