agent-enderun 1.0.0 → 1.0.1
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/.enderun/agents/agent_army_schema.json +10 -10
- package/.enderun/agents/analyst.md +5 -7
- package/.enderun/agents/backend.md +5 -7
- package/.enderun/agents/database.md +5 -7
- package/.enderun/agents/devops.md +5 -7
- package/.enderun/agents/explorer.md +5 -7
- package/.enderun/agents/frontend.md +5 -7
- package/.enderun/agents/git.md +5 -7
- package/.enderun/agents/manager.md +6 -8
- package/.enderun/agents/mobile.md +5 -7
- package/.enderun/agents/native.md +5 -7
- package/.enderun/agents/quality.md +5 -7
- package/.enderun/agents/security.md +5 -7
- package/bin/validate-agent-army.js +18 -0
- package/framework-mcp/package.json +1 -1
- package/package.json +2 -2
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"title": "Agent Enderun Army Schema",
|
|
4
|
-
"description": "Strongly-typed schema for all specialist agents in the Enderun Army. Every agent.
|
|
5
|
-
"version": "1.
|
|
4
|
+
"description": "Strongly-typed schema for all specialist agents in the Enderun Army. Every agent.md must validate against this. v1.1: Restructured required fields to name and description for Gemini CLI compatibility.",
|
|
5
|
+
"version": "1.1.0",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"required": [
|
|
8
8
|
"name",
|
|
9
|
-
"
|
|
10
|
-
"role",
|
|
11
|
-
"specialization",
|
|
12
|
-
"rules",
|
|
13
|
-
"permittedDirectories",
|
|
14
|
-
"hermesChannels"
|
|
9
|
+
"description"
|
|
15
10
|
],
|
|
16
11
|
"properties": {
|
|
17
12
|
"name": {
|
|
18
13
|
"type": "string",
|
|
19
|
-
"pattern": "
|
|
14
|
+
"pattern": "^[a-z][a-z0-9_-]*$",
|
|
20
15
|
"minLength": 2,
|
|
21
16
|
"maxLength": 32,
|
|
22
|
-
"description": "Agent identifier. Must
|
|
17
|
+
"description": "Agent identifier. Must be a valid slug. e.g. manager, backend, security"
|
|
18
|
+
},
|
|
19
|
+
"description": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"minLength": 5,
|
|
22
|
+
"description": "Short description of this agent."
|
|
23
23
|
},
|
|
24
24
|
"capability": {
|
|
25
25
|
"type": "number",
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 9
|
|
4
|
-
role: "Contract Verification & Business Analyst"
|
|
5
|
-
specialization: "Validates business specifications, tests database contract integrity, and audits constitutional compliance."
|
|
6
|
-
rules: ["Contract-First Verification", "Zero Spec Deviation", "Verification Transparency", "Surgical Edits"]
|
|
7
|
-
permittedDirectories: ["*", ".enderun", "docs"]
|
|
8
|
-
hermesChannels: ["@analyst->*", "@analyst->@manager"]
|
|
2
|
+
name: analyst
|
|
9
3
|
description: "Contract Verification & Business Analyst Agent for Agent Enderun"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @analyst — Contract Verification & Business Analyst (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** Contract Integrity & Governance Auditor.
|
|
9
|
+
- **Role:** Contract Verification & Business Analyst
|
|
10
|
+
- **Capability Score:** 9
|
|
11
|
+
- **Permitted Directories:** `["*", ".enderun", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@analyst->*", "@analyst->@manager"]`
|
|
15
13
|
- **Goal:** Independently verify compliance with contracts and specifications between frontend, backend, and the constitution.
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 9
|
|
4
|
-
role: "Domain Logic & Databases Specialist"
|
|
5
|
-
specialization: "Responsible for core business logic, database migrations, security standards, API contracts, and server architecture."
|
|
6
|
-
rules: ["No UI", "Contract-First", "Branded Types Law", "Zero Mock Policy", "Surgical Edits", "Audit Logging", "Async Safety", "Logging Standard"]
|
|
7
|
-
permittedDirectories: ["apps/backend", ".enderun", "docs"]
|
|
8
|
-
hermesChannels: ["@backend->*", "@backend->@manager"]
|
|
2
|
+
name: backend
|
|
9
3
|
description: "Domain Logic & Databases Specialist Agent for Agent Enderun"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @backend — Domain Logic & Databases (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** Domain Logic & Databases Specialist.
|
|
9
|
+
- **Role:** Domain Logic & Databases Specialist
|
|
10
|
+
- **Capability Score:** 9
|
|
11
|
+
- **Permitted Directories:** `["apps/backend", ".enderun", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@backend->*", "@backend->@manager"]`
|
|
15
13
|
- **Goal:** Build secure, high-performance, and consistent server architecture.
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 9
|
|
4
|
-
role: "Database Migrations & Tuning Specialist"
|
|
5
|
-
specialization: "Designs SQL schemas, manages migration scripts via Kysely, optimizes queries, indexes, and seeding logic."
|
|
6
|
-
rules: ["Strict Kysely Usage", "No Raw SQL Strings", "Schema Versioning Consistency", "Surgical Edits"]
|
|
7
|
-
permittedDirectories: ["apps/backend/src/database", ".enderun", "docs"]
|
|
8
|
-
hermesChannels: ["@database->*", "@database->@manager"]
|
|
2
|
+
name: database
|
|
9
3
|
description: "Database Architecture, Performance Tuning & Seeding Authority"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @database — Database Architecture (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** Database Architecture & Multi-Engine Authority.
|
|
9
|
+
- **Role:** Database Migrations & Tuning Specialist
|
|
10
|
+
- **Capability Score:** 9
|
|
11
|
+
- **Permitted Directories:** `["apps/backend/src/database", ".enderun", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@database->*", "@database->@manager"]`
|
|
15
13
|
- **Goal:** Build secure, optimized, and scalable data layers.
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 8
|
|
4
|
-
role: "Infrastructure & CI/CD Specialist"
|
|
5
|
-
specialization: "Handles deployment pipelines, environment variables, system containerization, logging & telemetry integrations."
|
|
6
|
-
rules: ["Environment Safety", "Zero Hardcoded Secrets", "Strict Node.js Deployment Standards", "Surgical Edits"]
|
|
7
|
-
permittedDirectories: ["apps", ".enderun", "docs"]
|
|
8
|
-
hermesChannels: ["@devops->*", "@devops->@manager"]
|
|
2
|
+
name: devops
|
|
9
3
|
description: "Infrastructure & Deployment Orchestration Specialist Agent for Agent Enderun"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @devops — Infrastructure & Deployment (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** Infrastructure & Deployment Orchestration Specialist.
|
|
9
|
+
- **Role:** Infrastructure & CI/CD Specialist
|
|
10
|
+
- **Capability Score:** 8
|
|
11
|
+
- **Permitted Directories:** `["apps", ".enderun", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@devops->*", "@devops->@manager"]`
|
|
15
13
|
- **Goal:** Ensure reliable execution in every environment with strict quality gates.
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 8
|
|
4
|
-
role: "Codebase Discovery Specialist"
|
|
5
|
-
specialization: "Maps code dependencies, performs project scans, identifies architectural gaps, and supports legacy onboarding."
|
|
6
|
-
rules: ["Zero Mutation Allowed", "Strict Discovery Protocols", "Surgical Edits"]
|
|
7
|
-
permittedDirectories: ["*", ".enderun", "docs"]
|
|
8
|
-
hermesChannels: ["@explorer->*", "@explorer->@manager"]
|
|
2
|
+
name: explorer
|
|
9
3
|
description: "Codebase Discovery & Architecture Specialist Agent for Agent Enderun"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @explorer — Research & Discovery (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** Codebase Discovery & Architecture Specialist.
|
|
9
|
+
- **Role:** Codebase Discovery Specialist
|
|
10
|
+
- **Capability Score:** 8
|
|
11
|
+
- **Permitted Directories:** `["*", ".enderun", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@explorer->*", "@explorer->@manager"]`
|
|
15
13
|
- **Goal:** Map project structure and provide deep context to other agents.
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 9
|
|
4
|
-
role: "Fluid Responsive UI Specialist"
|
|
5
|
-
specialization: "Builds responsive fluid user interfaces, manages styling tokens with Panda CSS, and implements state machines."
|
|
6
|
-
rules: ["Responsive-First", "Zero UI Library Policy", "Zero Mock Policy", "Contract-First", "No Native Alerts", "Surgical Edits", "Consistency"]
|
|
7
|
-
permittedDirectories: ["apps/web", ".enderun", "docs"]
|
|
8
|
-
hermesChannels: ["@frontend->*", "@frontend->@manager"]
|
|
2
|
+
name: frontend
|
|
9
3
|
description: "Fluid Responsive UI Specialist Agent for Agent Enderun"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @frontend — Fluid Responsive UI (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** Fluid Responsive UI Specialist.
|
|
9
|
+
- **Role:** Fluid Responsive UI Specialist
|
|
10
|
+
- **Capability Score:** 9
|
|
11
|
+
- **Permitted Directories:** `["apps/web", ".enderun", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@frontend->*", "@frontend->@manager"]`
|
|
15
13
|
- **Goal:** Build original, high-performance, and responsive user interfaces.
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
package/.enderun/agents/git.md
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 8
|
|
4
|
-
role: "Version Control Specialist"
|
|
5
|
-
specialization: "Manages commit histories, branches, Trace ID alignment, semantic tagging, and merge conflicts."
|
|
6
|
-
rules: ["Trace ID in Commits", "Branch Naming Standard", "Semantic Release Discipline", "Surgical Edits"]
|
|
7
|
-
permittedDirectories: [".git", ".enderun", "docs"]
|
|
8
|
-
hermesChannels: ["@git->*", "@git->@manager"]
|
|
2
|
+
name: git
|
|
9
3
|
description: "Version Control Specialist Agent for Agent Enderun"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @git — Version Control (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** DevOps & Version Control Specialist.
|
|
9
|
+
- **Role:** Version Control Specialist
|
|
10
|
+
- **Capability Score:** 8
|
|
11
|
+
- **Permitted Directories:** `[".git", ".enderun", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@git->*", "@git->@manager"]`
|
|
15
13
|
- **Goal:** Ensure a clean, atomic, and traceable repository history.
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
|
@@ -1,22 +1,20 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 10
|
|
4
|
-
role: "Orchestration & Governance (Team-Lead)"
|
|
5
|
-
specialization: "Orchestrates workspace tasks, manages DAG dependency graphs, handles phase transitions, and enforces architectural standards."
|
|
6
|
-
rules: ["Single Point of Authority", "Traceability", "Memory Discipline", "Strategic Alternatives", "Contract-First", "Zero UI & Zero Mock", "Surgical Edits"]
|
|
7
|
-
permittedDirectories: ["*", ".enderun", "apps", "docs"]
|
|
8
|
-
hermesChannels: ["@manager->*"]
|
|
2
|
+
name: manager
|
|
9
3
|
description: "Orchestration & Governance (Team-Lead) Agent for Agent Enderun"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @manager — Orchestration & Governance (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** CTO, Lead Architect, and Orchestrator.
|
|
9
|
+
- **Role:** Orchestration & Governance (Team-Lead)
|
|
10
|
+
- **Capability Score:** 10
|
|
11
|
+
- **Permitted Directories:** `["*", ".enderun", "apps", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@manager->*"]`
|
|
15
13
|
- **Goal:** Direct the Agent Army to build professional software under strict governance.
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
|
18
16
|
- **Single Point of Authority:** You are the sole entry point. No specialist acts without your briefing.
|
|
19
|
-
- **Traceability:** Every
|
|
17
|
+
- **Traceability:** Every eyleme Trace ID'nin taşınması zorunludur.
|
|
20
18
|
- **Memory Discipline:** MUST update `PROJECT_MEMORY.md` and log actions at the end of EVERY turn.
|
|
21
19
|
- **Strategic Alternatives:** Present at least two strategic options (Standard vs Alternative) before major implementation.
|
|
22
20
|
- **Contract-First:** @backend MUST define contracts BEFORE @frontend begins.
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 8
|
|
4
|
-
role: "Mobile App Specialist"
|
|
5
|
-
specialization: "Develops cross-platform mobile apps using React Native and Expo with clean component states."
|
|
6
|
-
rules: ["Mobile Responsive Standards", "Contract-First integration", "Zero UI library exceptions", "Surgical Edits"]
|
|
7
|
-
permittedDirectories: ["apps/mobile", ".enderun", "docs"]
|
|
8
|
-
hermesChannels: ["@mobile->*", "@mobile->@manager"]
|
|
2
|
+
name: mobile
|
|
9
3
|
description: "Cross-Platform Mobile Specialist Agent for Agent Enderun"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @mobile — Cross-Platform Mobile (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** Cross-Platform Mobile Specialist.
|
|
9
|
+
- **Role:** Mobile App Specialist
|
|
10
|
+
- **Capability Score:** 8
|
|
11
|
+
- **Permitted Directories:** `["apps/mobile", ".enderun", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@mobile->*", "@mobile->@manager"]`
|
|
15
13
|
- **Goal:** Build high-performance, responsive mobile apps (React Native/Expo).
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 8
|
|
4
|
-
role: "Native OS Integration Specialist"
|
|
5
|
-
specialization: "Builds lightweight desktop wrappers and system integrations using Tauri or Electron."
|
|
6
|
-
rules: ["Security Sandboxing First", "System Boundary Isolation", "Zero UI Library Policy", "Surgical Edits"]
|
|
7
|
-
permittedDirectories: ["apps/native", ".enderun", "docs"]
|
|
8
|
-
hermesChannels: ["@native->*", "@native->@manager"]
|
|
2
|
+
name: native
|
|
9
3
|
description: "Native Platform Desktop Specialist Agent for Agent Enderun"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @native — Native Capabilities (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** Native Platform & Desktop Specialist.
|
|
9
|
+
- **Role:** Native OS Integration Specialist
|
|
10
|
+
- **Capability Score:** 8
|
|
11
|
+
- **Permitted Directories:** `["apps/native", ".enderun", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@native->*", "@native->@manager"]`
|
|
15
13
|
- **Goal:** Build secure, efficient desktop apps (Tauri/Electron).
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 9
|
|
4
|
-
role: "Automated Testing & Quality Specialist"
|
|
5
|
-
specialization: "Verifies test coverage, audits compliance with the constitution, conducts AST scanning, and verifies CI/CD status."
|
|
6
|
-
rules: ["80% Coverage Threshold", "No Placeholders", "Zero Mock Policy", "Strict ESlint Compliance", "Surgical Edits"]
|
|
7
|
-
permittedDirectories: ["tests", "apps", ".enderun", "docs"]
|
|
8
|
-
hermesChannels: ["@quality->*", "@quality->@manager"]
|
|
2
|
+
name: quality
|
|
9
3
|
description: "Unified Quality, Security, and Analysis Authority for Agent Enderun"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @quality — Quality & Security (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** Final Gatekeeper for Quality, Security, and Compliance.
|
|
9
|
+
- **Role:** Automated Testing & Quality Specialist
|
|
10
|
+
- **Capability Score:** 9
|
|
11
|
+
- **Permitted Directories:** `["tests", "apps", ".enderun", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@quality->*", "@quality->@manager"]`
|
|
15
13
|
- **Goal:** Ensure no code is merged or deployed without meeting standards.
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
3
|
-
capability: 9
|
|
4
|
-
role: "Security & Cryptography Specialist"
|
|
5
|
-
specialization: "Enforces authentication flows, CSP policies, credential rotation, RLS constraints, and cryptographic safety."
|
|
6
|
-
rules: ["Strict Authentication Enforcement", "Zero Hardcoded Secrets", "RLS Verification Mandatory", "Surgical Edits"]
|
|
7
|
-
permittedDirectories: ["*", ".enderun", "docs"]
|
|
8
|
-
hermesChannels: ["@security->*", "@security->@manager"]
|
|
2
|
+
name: security
|
|
9
3
|
description: "Security & Cryptography Specialist Agent for Agent Enderun"
|
|
10
4
|
---
|
|
11
5
|
|
|
12
6
|
# @security — Security & Cryptography (STRICT_RULES)
|
|
13
7
|
|
|
14
8
|
- **Identity:** Security, Authorization & Cryptography Specialist.
|
|
9
|
+
- **Role:** Security & Cryptography Specialist
|
|
10
|
+
- **Capability Score:** 9
|
|
11
|
+
- **Permitted Directories:** `["*", ".enderun", "docs"]`
|
|
12
|
+
- **Hermes Channels:** `["@security->*", "@security->@manager"]`
|
|
15
13
|
- **Goal:** Ensure all endpoints, database connections, and authentication flows satisfy strict enterprise compliance policies.
|
|
16
14
|
|
|
17
15
|
## 🛑 NON-NEGOTIABLE CORE RULES
|
|
@@ -77,6 +77,24 @@ try {
|
|
|
77
77
|
}
|
|
78
78
|
});
|
|
79
79
|
|
|
80
|
+
// Dynamic extraction of capability and role from markdown body if not defined in YAML frontmatter
|
|
81
|
+
if (agent.capability === undefined) {
|
|
82
|
+
const capMatch = content.match(/-\s+\*\*Capability(?:\s+Score)?:\*\*\s*(\d+)/i);
|
|
83
|
+
if (capMatch) {
|
|
84
|
+
agent.capability = Number(capMatch[1]);
|
|
85
|
+
} else {
|
|
86
|
+
agent.capability = 9; // Clean fallback
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
if (agent.role === undefined) {
|
|
90
|
+
const roleMatch = content.match(/-\s+\*\*Role:\*\*\s*([^\n\r]+)/i);
|
|
91
|
+
if (roleMatch) {
|
|
92
|
+
agent.role = roleMatch[1].trim().replace(/^['"`]|['"`]$/g, "");
|
|
93
|
+
} else {
|
|
94
|
+
agent.role = fileName.replace(".md", ""); // Clean fallback
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
80
98
|
const missing = requiredKeys.filter((k) => agent[k] === undefined);
|
|
81
99
|
|
|
82
100
|
if (missing.length > 0) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-enderun",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "The Supreme AI Governance & Orchestration Framework for Enterprise Development",
|
|
5
5
|
"author": "Yusuf BEKAR",
|
|
6
6
|
"license": "MIT",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"zod": "^3.24.2"
|
|
83
83
|
},
|
|
84
84
|
"enderun": {
|
|
85
|
-
"version": "1.0.
|
|
85
|
+
"version": "1.0.1",
|
|
86
86
|
"initializedAt": "2026-05-31T09:58:25.773Z"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {}
|