@arcadialdev/arcality 2.4.33 → 2.4.34
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 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,6 +55,20 @@ npm run arcality:run
|
|
|
55
55
|
|
|
56
56
|
---
|
|
57
57
|
|
|
58
|
+
## 💻 CLI Commands Cheatsheet
|
|
59
|
+
|
|
60
|
+
The Arcality flow is designed to be used globally or project-wide via \`npx\`. Below are all currently supported commands:
|
|
61
|
+
|
|
62
|
+
| Command | Description | Internal Behavior |
|
|
63
|
+
| :--- | :--- | :--- |
|
|
64
|
+
| \`npx arcality\` | **Interactive Menu**<br/>Launches a visual menu in the terminal to guide the user. | Prompts for the Mission to execute. Ideal for new users who want a guided experience. |
|
|
65
|
+
| \`npx arcality init\` | **Initial Configuration**<br/>Connects the current project to Arcality Cloud. | Prompts for your API Key and Project ID, generates \`arcality.config.json\`, and validates the ADO / Portal connection. |
|
|
66
|
+
| \`npx arcality setup\` | **Dependency Setup**<br/>Downloads browser binaries. | Silently executes the installation of internal Playwright browsers (Chromium) ensuring the local machine can run tests. |
|
|
67
|
+
| \`npx arcality run\` | **Mission Runner (Agent Mode)**<br/>Launches the QA Agent directly. | Skips the interactive menu, scans the _package.json_ ("Ghost Mode"), injects ephemeral _autoskills_, and unleashes the AI agent. Ideal for CI/CD. |
|
|
68
|
+
| \`npx arcality --logs\` | **History Viewer**<br/>Displays test performance and tokens spent. | Reads the local \`arcality-history.log\` and renders a colorful table listing each mission, token consumption, and success status. |
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
58
72
|
## 🛠️ Internal Architecture
|
|
59
73
|
|
|
60
74
|
Arcality operates on a highly decoupled modular system designed for maximum resilience:
|