cai-method-cli 1.0.1 → 1.0.2
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 +48 -11
- package/package.json +1 -1
- package/tools/installer/cai-cli.js +0 -6
package/README.md
CHANGED
|
@@ -1,14 +1,51 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1 align="center">CAI (Client Acquisition Intelligence)</h1>
|
|
3
|
+
<p align="center">
|
|
4
|
+
<strong>A systematic, high-stakes B2B lead generation ecosystem.</strong><br>
|
|
5
|
+
Built on the <b>BMAD-METHOD</b> operational framework.
|
|
6
|
+
</p>
|
|
7
|
+
<br>
|
|
8
|
+
<p align="center">
|
|
9
|
+
<a href="https://www.npmjs.com/package/cai-method-cli"><img src="https://img.shields.io/npm/v/cai-method-cli.svg" alt="NPM Version"></a>
|
|
10
|
+
<a href="https://github.com/your-username/cai/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License"></a>
|
|
11
|
+
</p>
|
|
12
|
+
</div>
|
|
2
13
|
|
|
3
|
-
|
|
14
|
+
---
|
|
4
15
|
|
|
5
|
-
##
|
|
6
|
-
-
|
|
7
|
-
- `src/core-skills/`: Foundational utilities.
|
|
8
|
-
- `tools/installer/`: CLI-based deployment system.
|
|
9
|
-
- `docs/`: Operational blueprints and methodology.
|
|
16
|
+
## 🚀 The Core Philosophy
|
|
17
|
+
**Manual-First, Systematized, Performance-Guaranteed.**
|
|
10
18
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
- **
|
|
19
|
+
CAI is not just a framework; it's an operational architecture. We believe in stabilizing quality through manual excellence before scaling with automation. Our recursive feedback loops connect your free content nurture directly to paid ad-efficiency.
|
|
20
|
+
|
|
21
|
+
## 🛠 Features
|
|
22
|
+
- **Architectural Modularity:** Separated concerns for Content, Ads, and Auditing.
|
|
23
|
+
- **BMAD Workflow Integration:** Built-in blueprints for scaling and monetization.
|
|
24
|
+
- **CLI Deployment:** Fast-start your operations with a standardized CLI tool.
|
|
25
|
+
- **Operational Clarity:** Comprehensive documentation on how to build and deploy.
|
|
26
|
+
|
|
27
|
+
## 📦 Installation
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npx cai-method-cli
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## 📚 Documentation
|
|
34
|
+
- [Philosophy & Methodology](docs/explanation/philosophy.md)
|
|
35
|
+
- [Deployment Guide](docs/deployment/npx-setup.md)
|
|
36
|
+
- [Architecture & Modules](docs/reference/modules.md)
|
|
37
|
+
- [How-to Guides](docs/how-to/)
|
|
38
|
+
|
|
39
|
+
## 🧱 Project Structure
|
|
40
|
+
```text
|
|
41
|
+
src/
|
|
42
|
+
├── cai-skills/ # Specialized operational modules
|
|
43
|
+
├── cai-workflows/ # Business-logic pipelines
|
|
44
|
+
└── templates/ # Boilerplate project configurations
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## 🤝 Contribution
|
|
48
|
+
CAI is a community-first ecosystem. Check our internal blueprints in `/docs` to understand how we structure agent-driven development.
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
<p align="center">Built with 🧠 for the systematic architect.</p>
|
package/package.json
CHANGED
|
@@ -41,12 +41,6 @@ async function run() {
|
|
|
41
41
|
const structure = ['content', 'ads', 'audits', 'credentials', '.ai-config'];
|
|
42
42
|
structure.forEach(s => fs.ensureDirSync(path.join(targetDir, s)));
|
|
43
43
|
|
|
44
|
-
// Install Skills
|
|
45
|
-
answers.skills.forEach(skill => {
|
|
46
|
-
console.log(chalk.green(`Installing skill: ${skill}`));
|
|
47
|
-
fs.copySync(path.join(SKILLS_DIR, skill), path.join(targetDir, '.ai-config', skill));
|
|
48
|
-
});
|
|
49
|
-
|
|
50
44
|
// Install AI Configs
|
|
51
45
|
answers.aiTools.forEach(tool => {
|
|
52
46
|
console.log(chalk.green(`Configuring AI tool: ${tool}`));
|