@arcadialdev/arcality 2.2.2 → 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/package.json +1 -2
- package/src/KnowledgeService.ts +1 -1
- package/src/configLoader.mjs +1 -1
- package/.env.example +0 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcadialdev/arcality",
|
|
3
|
-
"version": "2.2.
|
|
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": {
|
package/src/KnowledgeService.ts
CHANGED
|
@@ -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 || '
|
|
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
|
}
|
package/src/configLoader.mjs
CHANGED
|
@@ -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 || '
|
|
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=
|