- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
30 lines
1.1 KiB
JavaScript
30 lines
1.1 KiB
JavaScript
"use strict";
|
|
/*
|
|
* Copyright The OpenTelemetry Authors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.detectResources = void 0;
|
|
const api_1 = require("@opentelemetry/api");
|
|
const ResourceImpl_1 = require("./ResourceImpl");
|
|
/**
|
|
* Runs all resource detectors and returns the results merged into a single Resource.
|
|
*
|
|
* @param config Configuration for resource detection
|
|
*/
|
|
const detectResources = (config = {}) => {
|
|
const resources = (config.detectors || []).map(d => {
|
|
try {
|
|
const resource = (0, ResourceImpl_1.resourceFromDetectedResource)(d.detect(config));
|
|
api_1.diag.debug(`${d.constructor.name} found resource.`, resource);
|
|
return resource;
|
|
}
|
|
catch (e) {
|
|
api_1.diag.debug(`${d.constructor.name} failed: ${e.message}`);
|
|
return (0, ResourceImpl_1.emptyResource)();
|
|
}
|
|
});
|
|
return resources.reduce((acc, resource) => acc.merge(resource), (0, ResourceImpl_1.emptyResource)());
|
|
};
|
|
exports.detectResources = detectResources;
|
|
//# sourceMappingURL=detect-resources.js.map
|