- 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
35 lines
749 B
JavaScript
35 lines
749 B
JavaScript
function c(n) {
|
|
const t = a(n);
|
|
return new ReadableStream(
|
|
{
|
|
async pull(e) {
|
|
const { value: r, done: o } = await t.next();
|
|
o ? e.close() : e.enqueue(r);
|
|
},
|
|
async cancel(e) {
|
|
if (typeof t.return == "function" && typeof await t.return(e) != "object")
|
|
throw new TypeError("return() fulfills with a non-object.");
|
|
return e;
|
|
}
|
|
},
|
|
new CountQueuingStrategy({
|
|
highWaterMark: 0
|
|
})
|
|
);
|
|
}
|
|
function a(n) {
|
|
let t = n[Symbol.asyncIterator]?.bind(n);
|
|
if (t === void 0) {
|
|
const r = n[Symbol.iterator](), o = {
|
|
[Symbol.iterator]: () => r
|
|
};
|
|
t = async function* () {
|
|
return yield* o;
|
|
};
|
|
}
|
|
return t();
|
|
}
|
|
export {
|
|
c as fromAnyIterable
|
|
};
|