@arcadialdev/arcality 2.2.1 → 2.2.3

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 CHANGED
@@ -1,17 +1,15 @@
1
1
  <div align="center">
2
- <img src="https://raw.githubusercontent.com/microsoft/playwright/main/packages/playwright-core/src/server/chromium/test-results/favicon.ico" width="80" alt="Arcality Logo" />
2
+ <img src="./public/logo-arcadial-blanco.png" width="120" alt="Arcality Logo" />
3
3
  <br>
4
4
  <h1>Arcality Engine</h1>
5
5
  <p><b>Autonomous AI-Powered E2E Web Testing Agent</b></p>
6
6
 
7
7
  [![NPM Version](https://img.shields.io/npm/v/@arcadialdev/arcality?color=c084fc&label=NPM&style=for-the-badge)](https://www.npmjs.com/package/@arcadialdev/arcality)
8
- [![Playwright Powered](https://img.shields.io/badge/Powered_by-Playwright-2EAD33?style=for-the-badge&logo=playwright)](https://playwright.dev)
9
- [![AI Core](https://img.shields.io/badge/AI_Core-Anthropic_Claude-D97757?style=for-the-badge&logo=anthropic)](https://anthropic.com)
10
8
  </div>
11
9
 
12
10
  <br>
13
11
 
14
- **Arcality** is an enterprise-grade autonomous testing agent designed by Arcadial. It replaces brittle, hard-coded UI automation with an intelligent, self-healing agent that understands natural language. Powered by Anthropic's Claude and Playwright, Arcality navigates web portals, fills forms dynamically, and verifies business logic without requiring you to write a single line of test code.
12
+ **Arcality** is an enterprise-grade autonomous testing agent designed by Arcadial. It replaces brittle, hard-coded UI automation with an intelligent, self-healing agent that understands natural language. Powered by our proprietary AI Cognitive Core and Headless Execution Engine, Arcality navigates web portals, fills forms dynamically, and verifies business logic without requiring you to write a single line of test code.
15
13
 
16
14
  ## ✨ Core Capabilities
17
15
 
@@ -62,9 +60,9 @@ Arcality operates on a highly decoupled modular system designed for maximum resi
62
60
 
63
61
  1. **The CLI Wrapper:** A Node.js CLI that orchestrates Playwright subprocesses, parses configurations (`arcality.config.json`), and manages the CLI spinner aesthetic using `@clack/prompts`.
64
62
  2. **The Vision Engine:** Instead of capturing raw DOM, Arcality strips out CSS/JS noise and builds an `Interactive Component Tree` using `aria-labels` and `roles`.
65
- 3. **The LLM Gateway (`AIAgentHelper`):** Handles bidirectional communication with Anthropic. It uses advanced recursive Tool Calling to perform `UI actions` (click, type, scroll) and `Forensic actions` (capture_console_errors).
66
- 4. **Skill Injection (`.agents/skills/`):** At runtime, the agent injects external E2E standards (e.g., *Playwright Best Practices*, *E2E Testing Expert*) directly into the System Prompt to enforce strict QA policies.
67
- 5. **The Reporter:** A custom Playwright reporter (`ArcalityReporter.ts`) that filters out robotic hooks and renders the Agent's pure cognitive decision tree into an HTML dashboard.
63
+ 3. **The Cognitive Gateway (`AIAgentHelper`):** Handles bidirectional communication with the central AI Brain. It uses advanced recursive Tool Calling to perform `UI actions` (click, type, scroll) and `Forensic actions` (capture_console_errors).
64
+ 4. **Skill Injection (`.agents/skills/`):** At runtime, the agent injects external E2E standards directly into the System Prompt to enforce strict QA policies and intelligent locator strategies.
65
+ 5. **The Reporter:** A custom execution reporter (`ArcalityReporter.ts`) that filters out robotic hooks and renders the Agent's pure cognitive decision tree into an HTML dashboard.
68
66
 
69
67
  ---
70
68
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcadialdev/arcality",
3
- "version": "2.2.1",
3
+ "version": "2.2.3",
4
4
  "description": "AI-powered QA testing tool — Autonomous web testing agent by Arcadial",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -19,7 +19,6 @@
19
19
  "tests/_helpers/",
20
20
  ".agents/",
21
21
  "playwright.config.ts",
22
- ".env.example",
23
22
  "README.md"
24
23
  ],
25
24
  "publishConfig": {
@@ -44,7 +44,7 @@ export class KnowledgeService {
44
44
 
45
45
  private constructor() {
46
46
  // API URL is internal-only, loaded from the tool's .env via dotenv
47
- this.apiBase = process.env.ARCALITY_API_URL || 'http://localhost:5164';
47
+ this.apiBase = process.env.ARCALITY_API_URL || 'https://arcalityqadev.arcadial.lat';
48
48
  this.apiKey = process.env.ARCALITY_API_KEY || '';
49
49
  this.projectId = process.env.ARCALITY_PROJECT_ID || null;
50
50
  }
@@ -18,7 +18,7 @@ export const CONFIG_FILE = path.join(CONFIG_DIR, 'config.json');
18
18
  * @returns {string}
19
19
  */
20
20
  export function getApiUrl() {
21
- return process.env.ARCALITY_API_URL || 'http://localhost:5164';
21
+ return process.env.ARCALITY_API_URL || 'https://arcalityqadev.arcadial.lat';
22
22
  }
23
23
 
24
24
  /**
package/.env.example DELETED
@@ -1,21 +0,0 @@
1
- # ===================================================
2
- # Arcality — Internal Tool Configuration
3
- #
4
- # RECOMMENDED: Use `arcality init` to configure your
5
- # project. This creates an arcality.config file with
6
- # all settings (API key, project, credentials).
7
- #
8
- # This .env file contains INTERNAL tool settings only.
9
- # ===================================================
10
-
11
- # ─── INTERNAL (do not modify) ───────────────────────
12
- # API URL for the Arcality backend
13
- # This is an internal setting. NOT user-configurable.
14
- ARCALITY_API_URL=http://localhost:5164
15
-
16
- # ─── AI Configuration ──────────────────────────────
17
- # AI model for test generation and autonomous agent
18
- CLAUDE_MODEL=claude-4-5-sonnet-20250929
19
-
20
- # [Optional] Anthropic API Key (only needed if not using AI proxy)
21
- # ANTHROPIC_API_KEY=