content large_stringlengths 3 20.5k | url large_stringlengths 53 192 ⌀ | branch large_stringclasses 4
values | source large_stringclasses 51
values | embeddings listlengths 384 384 | score float64 -0.21 0.65 |
|---|---|---|---|---|---|
node negate.js { logfile: 'default.log', color: undefined } $ node negate.js --no-logfile --no-color { logfile: false, color: false } $ node negate.js --logfile=test.log --color { logfile: 'test.log', color: true } $ node negate.js --no-logfile --logfile=test.log --color --no-color { logfile: 'test.log', color: false }... | https://github.com/nodejs/node/blob/main/doc/api/util.md | main | nodejs | [
-0.027742018923163414,
0.041898779571056366,
0.05194559320807457,
0.0142345717176795,
0.08428254723548889,
-0.1185048446059227,
0.02117488905787468,
-0.005872497335076332,
0.07963379472494125,
0.001570986583828926,
-0.030246468260884285,
-0.015598814934492111,
0.0016190445749089122,
0.0419... | 0.111373 |
=> { return getPromiseSomehow(); }; const promisified = promisify(doSomething); console.log(promisified === doSomething[promisify.custom]); // prints 'true' ``` This can be useful for cases where the original function does not follow the standard format of taking an error-first callback as the last argument. For exampl... | https://github.com/nodejs/node/blob/main/doc/api/util.md | main | nodejs | [
-0.056561145931482315,
0.0622905008494854,
0.05263066664338112,
0.0619732066988945,
-0.023517563939094543,
-0.02284012734889984,
0.03353065997362137,
0.028643786907196045,
0.031267233192920685,
-0.04445691034197807,
-0.03364225849509239,
0.018521111458539963,
-0.025014029815793037,
0.00134... | 0.084455 |
101, 108, 108, 111]); console.log(decoder.decode(u8arr)); // Hello ``` ### WHATWG supported encodings Per the [WHATWG Encoding Standard][], the encodings supported by the `TextDecoder` API are outlined in the tables below. For each encoding, one or more aliases may be used. Different Node.js build configurations suppor... | https://github.com/nodejs/node/blob/main/doc/api/util.md | main | nodejs | [
-0.01899157650768757,
-0.0310356505215168,
-0.009589824825525284,
-0.028266221284866333,
-0.015325107611715794,
-0.01645987294614315,
-0.054768677800893784,
0.00818517804145813,
0.05949145182967186,
-0.027668438851833344,
-0.04930770769715309,
-0.029418304562568665,
-0.0410909540951252,
-0... | 0.010433 |
supported encodings or an alias. The `TextDecoder` class is also available on the global object. ### `textDecoder.decode([input[, options]])` \* `input` {ArrayBuffer|DataView|TypedArray} An `ArrayBuffer`, `DataView`, or `TypedArray` instance containing the encoded data. \* `options` {Object} \* `stream` {boolean} `true... | https://github.com/nodejs/node/blob/main/doc/api/util.md | main | nodejs | [
-0.04572272673249245,
-0.007855403237044811,
-0.04617808014154434,
0.02479681745171547,
-0.06902173906564713,
-0.07763450592756271,
0.04158208519220352,
0.0034100536722689867,
-0.03547819331288338,
-0.07327543199062347,
-0.03152918443083763,
-0.005916626192629337,
-0.015217263251543045,
0.... | 0.033395 |
`dependent` as the resource, indicating the promise should only resolve // if `dependent` is still in memory when the signal is aborted. aborted(dependent.signal, dependent).then(() => { // This code runs when `dependent` is aborted. console.log('Dependent resource was aborted.'); }); // Simulate an event that triggers... | https://github.com/nodejs/node/blob/main/doc/api/util.md | main | nodejs | [
-0.08246003091335297,
0.052682407200336456,
0.07144784182310104,
0.06344746798276901,
0.05190868303179741,
0.002678034594282508,
-0.021725505590438843,
0.04741748422384262,
0.07625138759613037,
-0.00015256810002028942,
-0.0483323372900486,
0.08740980178117752,
-0.021019792184233665,
0.0552... | 0.09506 |
// Returns true ``` ### `util.types.isBooleanObject(value)` \* `value` {any} \* Returns: {boolean} Returns `true` if the value is a boolean object, e.g. created by `new Boolean()`. ```js util.types.isBooleanObject(false); // Returns false util.types.isBooleanObject(true); // Returns false util.types.isBooleanObject(new... | https://github.com/nodejs/node/blob/main/doc/api/util.md | main | nodejs | [
0.02371036820113659,
0.05397755652666092,
-0.03101138211786747,
0.04649534821510315,
-0.0029168627224862576,
0.027600834146142006,
0.05523663014173508,
-0.03892070800065994,
-0.03133850917220116,
0.004345728084445,
-0.07692872732877731,
-0.06856358796358109,
-0.05958673730492592,
0.0038817... | 0.101214 |
generator function. This only reports back what the JavaScript engine is seeing; in particular, the return value may not match the original source code if a transpilation tool was used. ```js function\* foo() {} const generator = foo(); util.types.isGeneratorObject(generator); // Returns true ``` ### `util.types.isInt8... | https://github.com/nodejs/node/blob/main/doc/api/util.md | main | nodejs | [
-0.06651153415441513,
0.10147735476493835,
-0.029276136308908463,
0.07067341357469559,
-0.010653934441506863,
-0.011043088510632515,
0.02156398445367813,
-0.04913735389709473,
-0.01517436746507883,
-0.09561339765787125,
-0.08947344124317169,
-0.08261863887310028,
-0.033099617809057236,
-0.... | 0.07566 |
{Promise}. ```js util.types.isPromise(Promise.resolve(42)); // Returns true ``` ### `util.types.isProxy(value)` \* `value` {any} \* Returns: {boolean} Returns `true` if the value is a {Proxy} instance. ```js const target = {}; const proxy = new Proxy(target, {}); util.types.isProxy(target); // Returns false util.types.... | https://github.com/nodejs/node/blob/main/doc/api/util.md | main | nodejs | [
-0.09974328428506851,
0.07762978225946426,
0.07892898470163345,
0.02714107744395733,
-0.021999815478920937,
0.04353369027376175,
0.07942228764295578,
0.010586418211460114,
0.05502292513847351,
0.000021216053937678225,
-0.08646218478679657,
-0.010074896737933159,
-0.021728217601776123,
0.03... | 0.049312 |
and used it anyway. It is deprecated and should not be used in new code. JavaScript comes with very similar built-in functionality through [`Object.assign()`][]. An automated migration is available ([source](https://github.com/nodejs/userland-migrations/tree/main/recipes/util-extend-to-object-assign)): ```bash npx code... | https://github.com/nodejs/node/blob/main/doc/api/util.md | main | nodejs | [
-0.008169990964233875,
0.014612949453294277,
0.0011216538259759545,
0.0576225146651268,
0.05154640972614288,
-0.029012436047196388,
0.024384744465351105,
-0.03800719976425171,
0.0008029958116821945,
-0.02179574780166149,
-0.03170856088399887,
0.0577840730547905,
-0.050039008259773254,
0.05... | 0.160784 |
# Single executable applications > Stability: 1.1 - Active development This feature allows the distribution of a Node.js application conveniently to a system that does not have Node.js installed. Node.js supports the creation of [single executable applications][] by allowing the injection of a blob prepared by Node.js,... | https://github.com/nodejs/node/blob/main/doc/api/single-executable-applications.md | main | nodejs | [
-0.025600498542189598,
-0.011211355216801167,
-0.02008516527712345,
0.03957515209913254,
0.07554324716329575,
-0.05259304121136665,
-0.06052253022789955,
0.09712335467338562,
0.03964465856552124,
0.0029434412717819214,
-0.058538444340229034,
0.04953832924365997,
0.016035636886954308,
-0.04... | 0.211397 |
them into the preparation blob. In the generated executable, users can retrieve the assets using the [`sea.getAsset()`][] and [`sea.getAssetAsBlob()`][] APIs. ```json { "main": "/path/to/bundled/script.js", "output": "/path/to/write/the/generated/executable", "assets": { "a.jpg": "/path/to/a.jpg", "b.txt": "/path/to/b.... | https://github.com/nodejs/node/blob/main/doc/api/single-executable-applications.md | main | nodejs | [
-0.03534797579050064,
0.06383350491523743,
-0.06955751776695251,
0.02059052884578705,
-0.005548011511564255,
-0.024227257817983627,
0.02135833352804184,
0.08688627183437347,
0.024346081539988518,
-0.03786057233810425,
0.015568908303976059,
0.0014799509663134813,
-0.0022799463476985693,
0.0... | 0.064796 |
with the `--no-warnings` and `--max-old-space-size=2048` flags. In the scripts embedded in the executable, these flags can be accessed using the `process.execArgv` property: ```js // If the executable is launched with `sea user-arg1 user-arg2` console.log(process.execArgv); // Prints: ['--no-warnings', '--max-old-space... | https://github.com/nodejs/node/blob/main/doc/api/single-executable-applications.md | main | nodejs | [
-0.02072826772928238,
0.009860166348516941,
-0.09877835959196091,
-0.012084230780601501,
0.04533601924777031,
-0.09071334451436996,
0.0173791516572237,
0.11567725241184235,
0.013969742693006992,
0.0005354310269467533,
0.015734072774648666,
0.006387646310031414,
-0.02046249434351921,
0.0114... | 0.115301 |
keys of the assets embedded in the executable. If no assets are embedded, returns an empty array. This method can be used to retrieve an array of all the keys of assets embedded into the single-executable application. An error is thrown when not running inside a single-executable application. ## In the injected main sc... | https://github.com/nodejs/node/blob/main/doc/api/single-executable-applications.md | main | nodejs | [
-0.014761725440621376,
0.027032943442463875,
-0.05283898115158081,
0.002179550239816308,
0.03567594662308693,
-0.03772088140249252,
-0.00919242575764656,
0.10640203207731247,
0.005930734798312187,
-0.03268582001328468,
0.023159010335803032,
0.021083353087306023,
0.06123492121696472,
-0.051... | 0.097622 |
single-executable application is produced by postject running on a Linux arm64 docker container, [the produced ELF binary does not have the correct hash table to load the addons][postject-linux-arm64-issue] and will crash on `process.dlopen()`. Build the single-executable application on other platforms, or at least on ... | https://github.com/nodejs/node/blob/main/doc/api/single-executable-applications.md | main | nodejs | [
-0.003115694969892502,
0.04185374826192856,
0.023780537769198418,
-0.027165193110704422,
0.05388881266117096,
-0.06521961092948914,
-0.05933048576116562,
0.04747649282217026,
0.0016142706153914332,
0.05913257971405983,
-0.05391790717840195,
-0.03850121423602104,
-0.0030395740177482367,
-0.... | 0.032805 |
of the blob created in step 1. \* `--sentinel-fuse NODE\_SEA\_FUSE\_fce680ab2cc467b6e072b8b5df1996b2` - The [fuse][] used by the Node.js project to detect if a file has been injected. \* `--macho-segment-name NODE\_SEA` (only needed on macOS) - The name of the segment in the binary where the contents of the blob will b... | https://github.com/nodejs/node/blob/main/doc/api/single-executable-applications.md | main | nodejs | [
-0.003451865166425705,
-0.008375577628612518,
-0.04883330315351486,
0.01970209926366806,
0.06027592346072197,
-0.05888951197266579,
0.0311351977288723,
0.043780598789453506,
0.007532360963523388,
0.009742947295308113,
-0.015595785342156887,
-0.050650741904973984,
-0.00844911951571703,
0.01... | 0.205132 |
# Net > Stability: 2 - Stable The `node:net` module provides an asynchronous network API for creating stream-based TCP or [IPC][] servers ([`net.createServer()`][]) and clients ([`net.createConnection()`][]). It can be accessed using: ```mjs import net from 'node:net'; ``` ```cjs const net = require('node:net'); ``` ##... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.09857505559921265,
-0.022219229489564896,
-0.07258561998605728,
0.006602015346288681,
-0.013304315507411957,
-0.09553398936986923,
-0.036402154713869095,
0.08036878705024719,
0.0319441482424736,
0.0202056672424078,
-0.07426782697439194,
0.026576371863484383,
-0.002384565304964781,
-0.04... | 0.124121 |
type])` \* `address` {string|net.SocketAddress} The IP address to check \* `type` {string} Either `'ipv4'` or `'ipv6'`. \*\*Default:\*\* `'ipv4'`. \* Returns: {boolean} Returns `true` if the given IP address matches any of the rules added to the `BlockList`. ```js const blockList = new net.BlockList(); blockList.addAdd... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.01840278133749962,
0.016821498051285744,
0.0024402253329753876,
-0.02201233245432377,
0.027108684182167053,
0.0025582348462194204,
0.03916768729686737,
-0.028786087408661842,
0.014739799313247204,
-0.020713642239570618,
-0.008270030841231346,
0.01001015305519104,
-0.06297484040260315,
0... | 0.059832 |
For a server listening on a pipe or Unix domain socket, the name is returned as a string. ```js const server = net.createServer((socket) => { socket.end('goodbye\n'); }).on('error', (err) => { // Handle errors here. throw err; }); // Grab an arbitrary unused port. server.listen(() => { console.log('opened server on', s... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.10561168938875198,
-0.013196689076721668,
-0.013115382753312588,
0.02555500715970993,
-0.022912124171853065,
-0.09669036418199539,
0.02268245257437229,
0.013079219497740269,
0.12935063242912292,
-0.03648709878325462,
-0.05366681143641472,
0.06323068588972092,
-0.06901911646127701,
-0.02... | 0.124197 |
disable dual-stack support, i.e., binding to host `::` won't make `0.0.0.0` be bound. \*\*Default:\*\* `false`. \* `reusePort` {boolean} For TCP servers, setting `reusePort` to `true` allows multiple sockets on the same host to bind to the same port. Incoming connections are distributed by the operating system to liste... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.032243743538856506,
-0.0010496177710592747,
-0.04641944169998169,
-0.03263193368911743,
-0.0673038512468338,
-0.01975947432219982,
0.004244585987180471,
-0.0008025200222618878,
0.03707870841026306,
0.001633947598747909,
0.011347307823598385,
-0.021336793899536133,
0.002203696873039007,
... | 0.042266 |
process is not running in cluster mode, Node.js will close the connection. 2. If the process is running in cluster mode, Node.js will, by default, route the connection to another worker process. To close the connection instead, set [`server.dropMaxConnection`][] to `true`. It is not recommended to use this option once ... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.0577128566801548,
-0.0630171075463295,
-0.011472178623080254,
0.035658154636621475,
0.0297493077814579,
-0.05761058256030083,
0.00833942461758852,
0.021776577457785606,
-0.009409144520759583,
0.041854340583086014,
-0.03461400419473648,
0.048657502979040146,
-0.02675674483180046,
-0.0362... | 0.095819 |
`buffer` and a reference to `buffer`. Return `false` from this function to implicitly `pause()` the socket. This function will be executed in the global context. \* `readable` {boolean} Allow reads on the socket when an `fd` is passed, otherwise ignored. \*\*Default:\*\* `false`. \* `signal` {AbortSignal} An Abort sign... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.07836559414863586,
-0.024458225816488266,
-0.09232651442289352,
-0.002795381937175989,
0.004986249841749668,
-0.009484692476689816,
0.07139210402965546,
-0.015369659289717674,
0.04011096432805061,
0.018423935398459435,
-0.017091913148760796,
0.10615669935941696,
-0.041191473603248596,
0... | 0.215529 |
error occurs. The `'close'` event will be called directly following this event. ### Event: `'lookup'` Emitted after resolving the host name but before connecting. Not applicable to Unix sockets. \* `err` {Error|null} The error object. See [`dns.lookup()`][]. \* `address` {string} The IP address. \* `family` {number|nul... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.09229526668787003,
0.006979659199714661,
-0.04935997352004051,
0.04628607630729675,
-0.03587552160024643,
-0.05688567832112312,
-0.022431958466768265,
-0.008903219364583492,
0.061910249292850494,
0.03387163579463959,
-0.025960169732570648,
0.044458016753196716,
-0.05645477771759033,
-0.... | 0.093767 |
to `true`, it enables a family autodetection algorithm that loosely implements section 5 of [RFC 8305][]. The `all` option passed to lookup is set to `true` and the sockets attempts to connect to all obtained IPv6 and IPv4 addresses, in sequence, until a connection is established. The first returned AAAA address is tri... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.09183572232723236,
0.019489169120788574,
-0.032639794051647186,
0.02139985002577305,
-0.04499376192688942,
0.003461991436779499,
-0.04087568446993828,
-0.0933716669678688,
0.029102563858032227,
-0.009540009312331676,
0.0008607334457337856,
0.0124822361394763,
-0.040139395743608475,
-0.0... | 0.096587 |
emitted the socket is destroyed immediately. If the socket is still writable it implicitly calls `socket.end()`. ### `socket.end([data[, encoding]][, callback])` \* `data` {string|Buffer|Uint8Array} \* `encoding` {string} Only used when data is `string`. \*\*Default:\*\* `'utf8'`. \* `callback` {Function} Optional call... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.022458244115114212,
0.021720418706536293,
-0.008801372721791267,
0.07660840451717377,
-0.03941315785050392,
-0.0625561997294426,
0.004974715411663055,
-0.014330407604575157,
0.06289695203304291,
0.036052245646715164,
-0.0334099605679512,
0.13827642798423767,
-0.042522724717855453,
0.002... | 0.0796 |
`TCP\_KEEPCNT=10` \* `TCP\_KEEPINTVL=1` ### `socket.setNoDelay([noDelay])` \* `noDelay` {boolean} \*\*Default:\*\* `true` \* Returns: {net.Socket} The socket itself. Enable/disable the use of Nagle's algorithm. When a TCP connection is created, it will have Nagle's algorithm enabled. Nagle's algorithm delays data befor... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.07145630568265915,
0.027882680296897888,
-0.047421518713235855,
0.09190784394741058,
-0.02509060688316822,
-0.07012433558702469,
0.02007230743765831,
-0.07376674562692642,
0.03153620660305023,
-0.046174127608537674,
-0.06944884359836578,
0.09316036105155945,
0.0010983182583004236,
-0.05... | 0.176378 |
`Writable` stream [`write()`][stream\_writable\_write] method for more information. ### `socket.readyState` \* Type: {string} This property represents the state of the connection as a string. \* If the stream is connecting `socket.readyState` is `opening`. \* If the stream is readable and writable, it is `open`. \* If ... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.03402604162693024,
-0.023390714079141617,
-0.0862346813082695,
-0.008086564019322395,
-0.05220577493309975,
-0.04487033188343048,
0.017395049333572388,
0.03538025915622711,
-0.00008414579497184604,
-0.0018775848438963294,
-0.03748243674635887,
0.06783495843410492,
-0.02302180789411068,
... | 0.087027 |
{ // Received data is available in `buf` from 0 to `nread`. console.log(buf.toString('utf8', 0, nread)); }, }, }); ``` ### `net.createConnection(path[, connectListener])` \* `path` {string} Path the socket should connect to. Will be passed to [`socket.connect(path[, connectListener])`][`socket.connect(path)`]. See [Ide... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.06549395620822906,
-0.045558005571365356,
-0.10843035578727722,
0.04023147001862526,
-0.08181643486022949,
0.022473197430372238,
0.006594739854335785,
-0.0023990231566131115,
0.027523484081029892,
-0.007610540371388197,
-0.04902320355176926,
0.03302735835313797,
-0.0339888297021389,
-0.... | 0.117796 |
data being read by the original process. To begin reading data from a paused socket, call [`socket.resume()`][]. The server can be a TCP server or an [IPC][] server, depending on what it [`listen()`][`server.listen()`] to. Here is an example of a TCP echo server which listens for connections on port 8124: ```mjs import... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.03425683453679085,
0.00165336683858186,
-0.05412079766392708,
0.00630149943754077,
-0.03231247514486313,
-0.050467733293771744,
0.023609334602952003,
0.022236419841647148,
0.033403024077415466,
-0.004450283478945494,
-0.04123508185148239,
0.09285151213407516,
-0.042610444128513336,
-0.0... | 0.110995 |
[`server.listen(path)`]: #serverlistenpath-backlog-callback [`server.listen(port)`]: #serverlistenport-host-backlog-callback [`server.maxConnections`]: #servermaxconnections [`socket(7)`]: https://man7.org/linux/man-pages/man7/socket.7.html [`socket.connect()`]: #socketconnect [`socket.connect(options)`]: #socketconnec... | https://github.com/nodejs/node/blob/main/doc/api/net.md | main | nodejs | [
-0.04954054579138756,
-0.07233334332704544,
-0.10589439421892166,
0.03993401303887367,
-0.06448327749967575,
-0.027528323233127594,
-0.050907012075185776,
-0.04517727345228195,
-0.02247278206050396,
0.033307623118162155,
0.014775131829082966,
0.06822323799133301,
-0.039868637919425964,
0.0... | 0.036945 |
# DTLS > Stability: 1 - Experimental The `node:dtls` module provides an implementation of the Datagram Transport Layer Security (DTLS) protocol over UDP. DTLS provides TLS-equivalent security guarantees for datagram-based communication, including confidentiality, integrity, and authentication. To use this module, it mu... | https://github.com/nodejs/node/blob/main/doc/api/dtls.md | main | nodejs | [
-0.07604052871465683,
0.010912524536252022,
-0.022615483030676842,
0.0018336873035877943,
-0.018934519961476326,
-0.1124688982963562,
-0.0052941227331757545,
0.012015698477625847,
0.026603562757372856,
-0.02727450430393219,
-0.03990398347377777,
0.0006741833640262485,
0.037204671651124954,
... | 0.05848 |
completes. ```mjs import { connect } from 'node:dtls'; import { readFileSync } from 'node:fs'; const session = connect('localhost', 4433, { ca: [readFileSync('ca-cert.pem')], }); await session.opened; session.send('hello'); session.onmessage = (data) => { console.log('Received:', data.toString()); }; ``` ## Class: `DTL... | https://github.com/nodejs/node/blob/main/doc/api/dtls.md | main | nodejs | [
-0.06746754050254822,
0.04071584716439247,
0.008603544905781746,
0.01817166991531849,
-0.04176507890224457,
-0.06795727461576462,
0.017472269013524055,
0.02226773090660572,
0.07110059261322021,
0.04161373898386955,
-0.07397677004337311,
0.0022187326103448868,
0.005264096427708864,
0.054591... | 0.049491 |
The negotiated ALPN protocol. ### `session.srtpProfile` \* Returns: {string|undefined} The negotiated SRTP protection profile name. ### `session.stats` \* Type: {DTLSSession.Stats} The statistics collected for this session. Read only. The stats object is live and updated as data flows through the session. ### `session.... | https://github.com/nodejs/node/blob/main/doc/api/dtls.md | main | nodejs | [
-0.09292196482419968,
0.033115364611148834,
-0.0844927579164505,
0.023829912766814232,
-0.015750877559185028,
-0.024314312264323235,
0.0660548210144043,
0.03900161013007164,
0.07854891568422318,
0.022688183933496475,
-0.015354461967945099,
0.030639871954917908,
-0.0034911283291876316,
-0.0... | 0.067876 |
# Global objects > Stability: 2 - Stable These objects are available in all modules. The following variables may appear to be global but are not. They exist only in the scope of [CommonJS modules][]: \* [`\_\_dirname`][] \* [`\_\_filename`][] \* [`exports`][] \* [`module`][] \* [`require()`][] The objects listed here a... | https://github.com/nodejs/node/blob/main/doc/api/globals.md | main | nodejs | [
-0.1113816574215889,
0.0026408210396766663,
0.0047312453389167786,
0.07288447767496109,
0.10915080457925797,
-0.026518894359469414,
0.017100028693675995,
0.035254884511232376,
0.01905054785311222,
-0.034775637090206146,
0.01746334321796894,
0.09755814075469971,
-0.02626044489443302,
-0.016... | 0.166993 |
Stability: 3 - Legacy. Use `buf.toString('base64')` instead. Global alias for [`buffer.btoa()`][]. An automated migration is available ([source](https://github.com/nodejs/userland-migrations/tree/main/recipes/buffer-atob-btoa)): ```bash npx codemod@latest @nodejs/buffer-atob-btoa ``` ## Class: `Buffer` \* Type: {Functi... | https://github.com/nodejs/node/blob/main/doc/api/globals.md | main | nodejs | [
0.04435821622610092,
0.031836915761232376,
-0.05061940476298332,
-0.01471236627548933,
0.03269347548484802,
-0.0613124743103981,
0.0051424880512058735,
0.012784932740032673,
-0.008061221800744534,
0.00590589689090848,
-0.04456433653831482,
-0.028263282030820847,
-0.06095921993255615,
-0.02... | 0.113563 |
implementation of [`localStorage`][]. Data is stored unencrypted in the file specified by the [`--localstorage-file`][] CLI flag. The maximum amount of data that can be stored is 10 MB. Any modification of this data outside of the Web Storage API is not supported. `localStorage` data is not stored per user or per reque... | https://github.com/nodejs/node/blob/main/doc/api/globals.md | main | nodejs | [
0.04687902331352234,
0.0069727227091789246,
-0.02311444841325283,
0.054850298911333084,
0.02892434038221836,
-0.09745382517576218,
0.059107329696416855,
0.014045806601643562,
0.03232226148247719,
-0.015422205440700054,
0.07493358850479126,
0.03829159587621689,
0.007379524875432253,
0.03579... | 0.059579 |
Type: {string} The `navigator.userAgent` read-only property returns user agent consisting of the runtime name and major version number. ```js console.log(`The user-agent is ${navigator.userAgent}`); // Prints "Node.js/21" ``` ## `performance` The [`perf\_hooks.performance`][] object. ## Class: `PerformanceEntry` The `P... | https://github.com/nodejs/node/blob/main/doc/api/globals.md | main | nodejs | [
0.050930436700582504,
0.046305932104587555,
-0.03969442471861839,
0.044102489948272705,
0.027083508670330048,
-0.05564644932746887,
0.02471982315182686,
0.015508923679590225,
-0.021637577563524246,
-0.0591699481010437,
-0.0372498445212841,
0.015582962892949581,
-0.053323689848184586,
-0.01... | 0.081424 |
[`URLPattern`][] section. ## Class: `URLSearchParams` The WHATWG `URLSearchParams` class. See the [`URLSearchParams`][] section. ## Class: `WebAssembly` \* Type: {Object} The object that acts as the namespace for all W3C [WebAssembly][webassembly-org] related functionality. See the [Mozilla Developer Network][webassemb... | https://github.com/nodejs/node/blob/main/doc/api/globals.md | main | nodejs | [
-0.08426126837730408,
-0.044013697654008865,
-0.0379861481487751,
-0.0023544663563370705,
-0.06715935468673706,
-0.050182588398456573,
-0.03211548551917076,
-0.048060137778520584,
-0.028892798349261284,
-0.09687170386314392,
-0.017808157950639725,
-0.00010521871445234865,
-0.0159534234553575... | 0.035246 |
# Usage and example ## Usage `node [options] [V8 options] [script.js | -e "script" | - ] [arguments]` Please see the [Command-line options][] document for more information. ## Example An example of a [web server][] written with Node.js which responds with `'Hello, World!'`: Commands in this document start with `$` or `... | https://github.com/nodejs/node/blob/main/doc/api/synopsis.md | main | nodejs | [
-0.005618548020720482,
0.0021349056623876095,
0.0062352330423891544,
0.03327685222029686,
0.0665125623345375,
-0.02142336219549179,
-0.026351256296038628,
0.06348077952861786,
0.033613771200180054,
0.05230621248483658,
-0.008121508173644543,
0.003547817934304476,
0.011326294392347336,
-0.0... | 0.039367 |
OpenClaw defaults to \*\*host-local time for transport timestamps\*\* and \*\*user timezone only in the system prompt\*\*. Provider timestamps are preserved so tools keep their native semantics (current time is available via `session\_status`). ## Message envelopes (local by default) Inbound messages are wrapped with a... | https://github.com/openclaw/openclaw/blob/main/docs/date-time.md | main | opebclaw | [
0.0009830044582486153,
0.05891374126076698,
0.003917620051652193,
0.0341608040034771,
0.03703606128692627,
-0.11762232333421707,
-0.07940574735403061,
-0.06246061250567436,
0.06489109992980957,
0.01354056503623724,
-0.033199019730091095,
-0.028583839535713196,
-0.07799648493528366,
0.07820... | -0.023335 |
This hub links the core docs for how OpenClaw connects, pairs, and secures devices across localhost, LAN, and tailnet. ## Core model Most operations flow through the Gateway (`openclaw gateway`), a single long-running process that owns channel connections and the WebSocket control plane. - \*\*Loopback first\*\*: the G... | https://github.com/openclaw/openclaw/blob/main/docs/network.md | main | opebclaw | [
-0.055750709027051926,
-0.027295943349599838,
-0.09970147162675858,
0.019120177254080772,
-0.020604608580470085,
-0.08874957263469696,
0.003094051033258438,
0.02531016618013382,
-0.04347086325287819,
-0.06944306939840317,
0.011292465031147003,
-0.00031527254031971097,
0.05236915498971939,
... | 0.052861 |
OpenProse is a portable, markdown-first workflow format for orchestrating AI sessions. In OpenClaw it ships as a plugin that installs an OpenProse skill pack and a `/prose` slash command. Programs live in `.prose` files and can spawn multiple sub-agents with explicit control flow. Enable the OpenProse plugin and restar... | https://github.com/openclaw/openclaw/blob/main/docs/prose.md | main | opebclaw | [
0.005220662336796522,
-0.059208471328020096,
-0.11016581952571869,
0.034673139452934265,
-0.005641997791826725,
-0.01004854030907154,
-0.012105780653655529,
0.05392441153526306,
0.04120698571205139,
-0.003199370112270117,
-0.03749812766909599,
0.008483843877911568,
-0.02337987907230854,
0.... | 0.170217 |
A sane workflow for working on the OpenClaw agent runtime in OpenClaw. ## Type checking and linting - Default local gate: `pnpm check` - Build gate: `pnpm build` when the change can affect build output, packaging, or lazy-loading/module boundaries - Full landing gate for agent-runtime changes: `pnpm check && pnpm test`... | https://github.com/openclaw/openclaw/blob/main/docs/openclaw-agent-runtime.md | main | opebclaw | [
-0.023711733520030975,
-0.011021755635738373,
-0.11329204589128494,
0.06647800654172897,
0.04747208207845688,
-0.04550906643271446,
-0.03895135968923569,
-0.009333662688732147,
-0.07525047659873962,
0.026132140308618546,
0.05680684372782707,
-0.011662125587463379,
-0.050107140094041824,
0.... | -0.008464 |
Run the OpenClaw Gateway on any Linux server or cloud VPS. This page helps you pick a provider, explains how cloud deployments work, and covers generic Linux tuning that applies everywhere. ## Pick a provider One-click, browser setup One-click, browser setup Simple paid VPS Always Free ARM tier Fly Machines Docker on H... | https://github.com/openclaw/openclaw/blob/main/docs/vps.md | main | opebclaw | [
0.019955705851316452,
-0.051196273416280746,
0.00661111157387495,
-0.02807306870818138,
-0.009093633852899075,
-0.032387711107730865,
-0.11809921264648438,
-0.017270656302571297,
0.01636659912765026,
0.04265496879816055,
0.05436979606747627,
-0.03330368548631668,
0.01826835609972477,
-0.06... | -0.046047 |
```ini [Service] Environment=OPENCLAW\_NO\_RESPAWN=1 Environment=NODE\_COMPILE\_CACHE=/var/tmp/openclaw-compile-cache Restart=always RestartSec=2 TimeoutStartSec=90 ``` If you deliberately installed a system unit instead, edit `openclaw-gateway.service` via `sudo systemctl edit openclaw-gateway.service`. How `Restart=`... | https://github.com/openclaw/openclaw/blob/main/docs/vps.md | main | opebclaw | [
-0.06063637137413025,
-0.029222723096609116,
-0.10317979007959366,
0.03628164529800415,
0.04050543159246445,
-0.10541434586048126,
-0.02496975101530552,
0.040855031460523605,
0.021217498928308487,
0.02187521755695343,
0.0059003266505897045,
0.0611838698387146,
-0.025532208383083344,
-0.005... | 0.147216 |
This document defines the canonical credential eligibility and resolution semantics used across: - `resolveAuthProfileOrder` - `resolveApiKeyForProfile` - `models status --probe` - `doctor-auth` The goal is to keep selection-time and runtime behavior aligned. ## Stable probe reason codes - `ok` - `excluded\_by\_auth\_o... | https://github.com/openclaw/openclaw/blob/main/docs/auth-credential-semantics.md | main | opebclaw | [
-0.09067122638225555,
-0.05654982849955559,
-0.014274089597165585,
-0.035590048879384995,
-0.029503637924790382,
-0.024936595931649208,
-0.023264089599251747,
0.11652792990207672,
0.008065898902714252,
0.01459590159356594,
-0.004977866541594267,
-0.016429349780082703,
0.11800741404294968,
... | 0.087176 |
provider/profile set. - Read-only/status paths pass `allowKeychainPrompt: false`; they use file-backed external CLI credentials only and do not read or reuse macOS Keychain results. ## OAuth SecretRef Policy Guard - SecretRef input is for static credentials only. - If a profile credential is `type: "oauth"`, SecretRef ... | https://github.com/openclaw/openclaw/blob/main/docs/auth-credential-semantics.md | main | opebclaw | [
-0.04853060469031334,
-0.00889537762850523,
-0.01845652237534523,
-0.03441142663359642,
0.09931168705224991,
-0.06200137361884117,
0.013875550590455532,
0.07103239744901657,
-0.0344366580247879,
-0.02615216001868248,
0.03942391276359558,
0.020716307684779167,
0.03742191195487976,
0.0552681... | -0.005033 |
# OpenClaw 🦞> \_"EXFOLIATE! EXFOLIATE!"\_ — A space lobster, probably **Any OS gateway for AI agents across Discord, Google Chat, iMessage, Matrix, Microsoft Teams, Signal, Slack, Telegram, WhatsApp, Zalo, and more.** Send a message, get an agent response from your pocket. Run one Gateway across built-in channels, bun... | https://github.com/openclaw/openclaw/blob/main/docs/index.md | main | opebclaw | [
-0.08320902287960052,
-0.07562890648841858,
-0.022055860608816147,
0.03253502771258354,
-0.0037337138783186674,
-0.12736251950263977,
0.05100959539413452,
-0.002094839233905077,
0.028813200071454048,
-0.0142182856798172,
0.022729918360710144,
-0.030618326738476753,
0.00908290222287178,
-0.... | 0.208723 |
WhatsApp, Telegram, Discord, and more. iOS and Android nodes with pairing, Canvas, camera, and device actions. Common fixes and troubleshooting entry point. ## Learn more Complete channel, routing, and media capabilities. Workspace isolation and per-agent sessions. Tokens, allowlists, and safety controls. Gateway diagn... | https://github.com/openclaw/openclaw/blob/main/docs/index.md | main | opebclaw | [
-0.02832796610891819,
-0.06064143031835556,
0.04296499490737915,
-0.06890953332185745,
0.043280769139528275,
-0.036680106073617935,
0.020548945292830467,
-0.003224516985937953,
0.023129329085350037,
0.08371231704950333,
0.04570246860384941,
0.013216683641076088,
0.0014195075491443276,
0.05... | 0.164304 |
OpenClaw has two main log surfaces: - \*\*File logs\*\* (JSON lines) written by the Gateway. - \*\*Console output\*\* shown in terminals and the Gateway Debug UI. The Control UI \*\*Logs\*\* tab tails the gateway file log. This page explains where logs live, how to read them, and how to configure log levels and formats... | https://github.com/openclaw/openclaw/blob/main/docs/logging.md | main | opebclaw | [
0.03252432867884636,
0.016280150040984154,
-0.04759319871664047,
0.08116473257541656,
0.07042711973190308,
-0.15079490840435028,
-0.09303493797779083,
-0.03323664143681526,
0.0755462646484375,
0.008814533241093159,
-0.012523826211690903,
0.0636291652917862,
-0.02780463919043541,
-0.0146777... | 0.003547 |
when available, but omit transcript text, audio payloads, turn ids, call ids, and provider item ids. ### Console output Console logs are \*\*TTY-aware\*\* and formatted for readability: - Subsystem prefixes (e.g. `gateway/channels/whatsapp`) - Level coloring (info/warn/error) - Optional compact or JSON mode Console for... | https://github.com/openclaw/openclaw/blob/main/docs/logging.md | main | opebclaw | [
0.01132139377295971,
-0.03275684267282486,
-0.039898667484521866,
0.019466079771518707,
0.05976239964365959,
-0.03132255747914314,
0.007714634761214256,
0.02857234515249729,
0.017075443640351295,
0.01755434274673462,
-0.020037228241562843,
0.025406988337635994,
-0.057349950075149536,
0.053... | 0.092283 |
response content: - `requestPayloadBytes`: UTF-8 byte size of the final model request payload - `responseStreamBytes`: UTF-8 byte size of streamed model response events, excluding accumulated `partial` snapshots on delta events - `timeToFirstByteMs`: elapsed time before the first streamed response event - `durationMs`:... | https://github.com/openclaw/openclaw/blob/main/docs/logging.md | main | opebclaw | [
-0.04788016900420189,
-0.0437028668820858,
-0.04358480125665665,
0.030467472970485687,
0.03282850235700607,
-0.06588919460773468,
0.008879880420863628,
0.08445911854505539,
0.05921139568090439,
0.0154804028570652,
-0.03535531833767891,
-0.04952021315693855,
-0.044299401342868805,
0.0036867... | 0.174861 |
OpenClaw owns the built-in agent runtime directly. The runtime code lives under `src/agents/`, model/provider helpers live under `src/llm/`, and plugin-facing contracts are exposed through `openclaw/plugin-sdk/\*` barrels. ## Runtime Layout - `src/agents/embedded-agent-runner/`: built-in agent attempt loop, provider st... | https://github.com/openclaw/openclaw/blob/main/docs/agent-runtime-architecture.md | main | opebclaw | [
-0.07254099100828171,
-0.023049360141158104,
-0.1281030774116516,
0.06266361474990845,
0.03273119777441025,
-0.05478721484541893,
-0.06131071224808693,
-0.01084287278354168,
-0.01883082278072834,
0.012310153804719448,
-0.009139424189925194,
-0.006201333366334438,
0.01035608071833849,
0.002... | 0.143236 |
# Docs Guide This directory owns docs authoring, Mintlify link rules, and docs i18n policy. ## Mintlify Rules - Docs are hosted on Mintlify (`https://docs.openclaw.ai`). - Internal doc links in `docs/\*\*/\*.md` must stay root-relative with no `.md` or `.mdx` suffix (example: `[Config](/gateway/configuration)`). - Sect... | https://github.com/openclaw/openclaw/blob/main/docs/AGENTS.md | main | opebclaw | [
-0.08479510992765427,
0.016029784455895424,
-0.0038736851420253515,
0.021533483639359474,
0.07385625690221786,
-0.02426195703446865,
-0.08935365825891495,
0.05724817141890526,
-0.019778022542595863,
-0.00012000626884400845,
-0.01448869239538908,
0.05282548442482948,
0.08873482793569565,
0.... | 0.063549 |
OpenClaw CI runs on every push to `main` and every pull request. The `preflight` job classifies the diff and turns expensive lanes off when only unrelated areas changed. Manual `workflow\_dispatch` runs intentionally bypass smart scoping and fan out the full graph for release candidates and broad validation. Android la... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.029356257990002632,
0.03243999555706978,
0.0404549315571785,
-0.03501952812075615,
-0.0066071199253201485,
-0.1708614081144333,
-0.09955418854951859,
-0.06687939912080765,
0.027492443099617958,
-0.011261116713285446,
0.02991342917084694,
-0.02812165580689907,
-0.019099373370409012,
-0.1... | 0.032693 |
channel, core-support-boundary, and gateway-watch failures directly instead of queuing tiny verifier jobs. The automatic CI concurrency key is versioned (`CI-v7-\*`) so a GitHub-side zombie in an old queue group cannot indefinitely block newer main runs. Manual full-suite runs use `CI-manual-v1-\*` and do not cancel in... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.05761796608567238,
-0.025766057893633842,
-0.007498666178435087,
0.029862577095627785,
0.04596168175339699,
-0.07168598473072052,
-0.09741854667663574,
-0.017684966325759888,
0.004970309790223837,
0.0732613131403923,
0.01911150850355625,
-0.011992119252681732,
-0.03437374532222748,
-0.0... | 0.093567 |
cheap core-test fixture edits, and narrow plugin contract helper/test-routing edits\*\* use a fast Node-only manifest path: `preflight`, security, and a single `checks-fast-core` task. That path skips build artifacts, Node 22 compatibility, channel contracts, full core shards, bundled-plugin shards, and additional guar... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.030989738181233406,
-0.025179589167237282,
-0.019143393263220787,
0.045974213629961014,
0.06773154437541962,
-0.04949508234858513,
-0.08167918771505356,
0.009337124414741993,
-0.08202838152647018,
0.03312812000513077,
-0.015415113419294357,
-0.010616783052682877,
-0.04537639021873474,
-... | 0.191294 |
- `github\_activity` for general GitHub activity that the ClawSweeper agent may inspect. The `github\_activity` lane forwards normalized metadata only: event type, action, actor, repository, item number, URL, title, state, and short excerpts for comments or reviews when present. It intentionally avoids forwarding the f... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.0384242944419384,
-0.038884785026311874,
-0.03120736964046955,
0.018884900957345963,
0.05056231841444969,
-0.13492290675640106,
0.002065695123746991,
-0.03768535330891609,
0.056162383407354355,
0.015146196819841862,
0.010674398392438889,
-0.0369296595454216,
0.03478878363966942,
-0.0072... | 0.145432 |
tsgo + sharded lint + parallel fast guards pnpm check:test-types pnpm check:timed # same gate with per-stage timings pnpm build:strict-smoke pnpm check:architecture pnpm test:gateway:watch-regression node scripts/run-vitest.mjs run --config test/vitest/vitest.tui-pty.config.ts pnpm test # vitest tests pnpm test:changed... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.03481450304389,
-0.015698881819844246,
0.02961101569235325,
0.04228614643216133,
0.08815541863441467,
-0.035357050597667694,
-0.02726445533335209,
0.003671781625598669,
-0.07006422430276871,
0.08500933647155762,
0.005905570928007364,
-0.041325245052576065,
-0.09763075411319733,
-0.00381... | 0.088019 |
checks, Package Acceptance, Docker, cross-OS, and Telegram without rebuilding. Use `npm\_telegram\_package\_spec` only when Telegram must prove a different package. The Codex plugin live package lane uses the same selected state by default: published `release\_package\_spec=openclaw@` derives `codex\_plugin\_spec=npm:@... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.036075688898563385,
-0.00140934728551656,
-0.009765546768903732,
0.0069510117173194885,
0.027917547151446342,
-0.10322673618793488,
-0.06319596618413925,
-0.04730575904250145,
-0.026604492217302322,
0.08069852739572525,
0.03168163821101189,
-0.030375048518180847,
-0.05217638984322548,
0... | 0.063044 |
matching published plugin spec derived from `release\_package\_spec`, pass the operator-supplied `codex\_plugin\_spec`, or leave the input blank so the Docker script packs the selected checkout's Codex plugin. Duplicate `Full Release Validation` runs for `ref=main` and `rerun\_group=all` supersede the older umbrella. T... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
0.0031837804708629847,
0.009784047491848469,
0.015150604769587517,
0.015215358696877956,
0.10338608920574188,
-0.08134809881448746,
-0.06078753247857094,
-0.05715783312916756,
-0.014060688205063343,
0.04501558467745781,
0.061468303203582764,
-0.007914329878985882,
-0.046147868037223816,
0.... | -0.020873 |
trusted `package\_ref` branch, tag, or full commit SHA. The resolver fetches OpenClaw branches/tags, verifies the selected commit is reachable from repository branch history or a release tag, installs deps in a detached worktree, and packs it with `scripts/package-openclaw-for-docker.mjs`. - `source=url` downloads a pu... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.05318635329604149,
0.029446493834257126,
-0.03118876740336418,
0.005867774598300457,
0.0642482340335846,
-0.11409253627061844,
-0.058118462562561035,
-0.03401888906955719,
0.06925671547651291,
0.040658582001924515,
0.041977062821388245,
0.0036345720291137695,
0.0360083244740963,
-0.0152... | 0.01079 |
aggregate runs can pass exact package specs with `OPENCLAW\_UPGRADE\_SURVIVOR\_BASELINE\_SPECS`, keep a single lane with `OPENCLAW\_UPGRADE\_SURVIVOR\_BASELINE\_SPEC` such as `openclaw@2026.4.15`, or set `OPENCLAW\_UPGRADE\_SURVIVOR\_SCENARIOS` for the scenario matrix. The published lane configures the baseline with a ... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.05541403219103813,
-0.019713787361979485,
-0.07905038446187973,
0.04919867590069771,
0.028191210702061653,
-0.07212930172681808,
-0.09514151513576508,
0.0038415740709751844,
-0.07560646533966064,
-0.05869137495756149,
0.04572153836488724,
-0.015361165627837181,
-0.0010854071006178856,
0... | -0.010951 |
delete shared-workspace CLI smoke, runs the container gateway-network e2e, verifies a bundled extension build arg, and runs the bounded bundled-plugin Docker profile under a 240-second aggregate command timeout (each scenario's Docker run capped separately). - \*\*Full path\*\* keeps QR package install and installer Do... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.017604906111955643,
0.035689547657966614,
0.09464400261640549,
-0.03787030279636383,
0.028539886698126793,
-0.0873575285077095,
-0.047483619302511215,
-0.0518217608332634,
0.0287140104919672,
0.005586651619523764,
0.06163310259580612,
-0.01825280487537384,
-0.009211188182234764,
0.03475... | 0.017765 |
GHCR Docker E2E images through Blacksmith's Docker layer cache when the plan needs package-installed lanes; and reuses provided `docker\_e2e\_bare\_image`/`docker\_e2e\_functional\_image` inputs or existing package-digest images instead of rebuilding. Docker image pulls are retried with a bounded 180-second per-attempt... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.04385824128985405,
0.07883517444133759,
0.06822982430458069,
0.009476360864937305,
0.014434081502258778,
-0.16571153700351715,
-0.0711294561624527,
0.0011712752748280764,
-0.002501139882951975,
-0.024575768038630486,
-0.017026904970407486,
-0.0564926452934742,
-0.003806540509685874,
-0.... | 0.030822 |
lane, live Matrix lane, and live Telegram and Discord lanes as parallel jobs. Live jobs use the `qa-live-shared` environment, and Telegram/Discord use Convex leases. Release checks run Matrix and Telegram live transport lanes with the deterministic mock provider and mock-qualified models (`mock-openai/gpt-5.5` and `moc... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.015113639645278454,
-0.012409277260303497,
-0.13010436296463013,
0.03171699121594429,
-0.05122943967580795,
-0.040252938866615295,
-0.023171547800302505,
-0.04796498641371727,
0.03551509231328964,
0.03797676041722298,
0.03884955868124962,
0.07452812790870667,
-0.015312500298023224,
0.02... | 0.096229 |
all twelve PR quality shards. Manual dispatch accepts: ``` profile=all|agent-runtime-boundary|config-boundary|core-auth-secrets|channel-runtime-boundary|gateway-runtime-boundary|memory-runtime-boundary|mcp-process-runtime-boundary|plugin-boundary|plugin-sdk-package-contract|plugin-sdk-reply-runtime|provider-runtime-bou... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
0.027133191004395485,
-0.04102374240756035,
-0.029424922540783882,
-0.03975135460495949,
-0.060696203261613846,
-0.08924083411693573,
-0.038621772080659866,
0.018087316304445267,
-0.027188928797841072,
0.03194349259138107,
0.001308455946855247,
-0.006458401679992676,
0.0430922731757164,
-0... | 0.066829 |
before the bot push lands, the lane rebases the validated patch, reruns `pnpm check:changed`, and retries the push; conflicting stale patches are skipped. It uses GitHub-hosted Ubuntu so the Codex action can keep the same drop-sudo safety posture as the docs agent. ### Duplicate PRs After Merge The `Duplicate PRs After... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
-0.007943768985569477,
-0.09139300882816315,
-0.011819065548479557,
-0.05278192088007927,
0.04839290305972099,
-0.10168657451868057,
-0.01744888909161091,
-0.0005954980151727796,
0.003825706895440817,
0.043145958334207535,
0.09946739673614502,
0.05764240771532059,
0.009833842515945435,
-0.... | -0.01144 |
crabbox:run` script because pnpm may reconcile dependencies before Crabbox starts; invoke the node wrapper directly instead: ```bash node scripts/crabbox-wrapper.mjs run --provider blacksmith-testbox --timing-json --shell -- "pnpm test " ``` Blacksmith-backed runs require Crabbox 0.22.0 or newer so the wrapper gets the... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
0.04859147220849991,
0.05329623445868492,
-0.0003706981078721583,
-0.00005887096267542802,
0.05005475506186485,
-0.058872342109680176,
-0.056192971765995026,
-0.05591190233826637,
-0.021456027403473854,
-0.0290734451264143,
-0.002860467415302992,
-0.029489858075976372,
0.01138672512024641,
... | -0.059541 |
work, ordinary lint/typecheck, small E2E repros, or Blacksmith outage triage. Use `--market on-demand` for capacity diagnosis so Spot market churn is not mixed into the signal. `.crabbox.yaml` owns provider, sync, and GitHub Actions hydration defaults for owned-cloud lanes. It excludes local `.git` so the hydrated Acti... | https://github.com/openclaw/openclaw/blob/main/docs/ci.md | main | opebclaw | [
0.018422061577439308,
-0.02628392167389393,
0.03961040452122688,
-0.03678854927420616,
0.05539612099528313,
-0.0616164393723011,
0.040050968527793884,
-0.01562598906457424,
0.04677876457571983,
-0.03206357732415199,
-0.046159688383340836,
-0.0005791417206637561,
0.03651675954461098,
-0.050... | 0.017588 |
# Docs Guide This directory owns docs authoring, Mintlify link rules, and docs i18n policy. ## Mintlify Rules - Docs are hosted on Mintlify (`https://docs.openclaw.ai`). - Internal doc links in `docs/\*\*/\*.md` must stay root-relative with no `.md` or `.mdx` suffix (example: `[Config](/gateway/configuration)`). - Sect... | https://github.com/openclaw/openclaw/blob/main/docs/CLAUDE.md | main | opebclaw | [
-0.08479510992765427,
0.016029784455895424,
-0.0038736851420253515,
0.021533483639359474,
0.07385625690221786,
-0.02426195703446865,
-0.08935365825891495,
0.05724817141890526,
-0.019778022542595863,
-0.00012000626884400845,
-0.01448869239538908,
0.05282548442482948,
0.08873482793569565,
0.... | 0.063549 |
The official Android app is available on [Google Play](https://play.google.com/store/apps/details?id=ai.openclaw.app&hl=en\_IN). It is a companion node and requires a running OpenClaw Gateway. The source code is also available in the [OpenClaw repository](https://github.com/openclaw/openclaw) under `apps/android`; see ... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/android.md | main | opebclaw | [
-0.061846066266298294,
-0.04657934606075287,
0.022449886426329613,
-0.06914612650871277,
-0.005485230591148138,
-0.04493382200598717,
-0.12097907066345215,
0.017833737656474113,
-0.01643494702875614,
0.007167079020291567,
0.04114416241645813,
-0.0013187519507482648,
0.05897291749715805,
-0... | -0.007581 |
the first successful pairing, Android auto-reconnects on launch: - Manual endpoint (if enabled), otherwise - The last discovered gateway (best-effort). ### Presence alive beacons After the authenticated node session connects, and when the app moves to the background while the foreground service is still connected, Andr... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/android.md | main | opebclaw | [
-0.04108676314353943,
-0.04138519614934921,
0.027142953127622604,
0.023368602618575096,
0.028051994740962982,
-0.042191751301288605,
-0.012637398205697536,
-0.04508260637521744,
0.03373196721076965,
0.004292432218790054,
0.01230647973716259,
0.06330077350139618,
0.03321633115410805,
-0.005... | 0.010968 |
`dataSync` to `dataSync|microphone` before capture starts, then demotes it when Talk Mode stops. Android 14+ requires the `FOREGROUND\_SERVICE\_MICROPHONE` declaration, the `RECORD\_AUDIO` runtime grant, and the microphone service type at runtime. - By default, Android Talk uses native speech recognition, Gateway chat,... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/android.md | main | opebclaw | [
-0.06267104297876358,
-0.05612054839730263,
0.027003994211554527,
-0.06840238720178604,
-0.00039954885141924024,
-0.0526781864464283,
-0.005143614951521158,
-0.03360548987984657,
0.012497248128056526,
-0.022639134898781776,
0.010424727573990822,
0.003831175621598959,
-0.035642437636852264,
... | 0.061017 |
EasyRunner can host the OpenClaw Gateway as a small containerized app behind its Caddy proxy. This guide assumes an EasyRunner host that runs Podman-compatible Compose apps and exposes HTTPS through Caddy. ## Before you begin - An EasyRunner server with a domain routed to it. - A built or published OpenClaw container i... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/easyrunner.md | main | opebclaw | [
-0.009263602085411549,
-0.015504641458392143,
-0.00038420106284320354,
-0.019070936366915703,
-0.04553690552711487,
-0.09535607695579529,
-0.08664875477552414,
0.009512483142316341,
-0.05312732607126236,
0.03358694165945053,
-0.004553243517875671,
-0.004214847460389137,
0.020516449585556984,... | -0.042029 |
OpenClaw supports both \*\*native Windows\*\* and \*\*WSL2\*\*. WSL2 is the more stable path and recommended for the full experience — the CLI, Gateway, and tooling run inside Linux with full compatibility. Native Windows works for core CLI and Gateway use, with some caveats noted below. Native Windows companion apps a... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/windows.md | main | opebclaw | [
-0.017895877361297607,
-0.021157927811145782,
-0.06142924353480339,
0.01781379245221615,
-0.009334946982562542,
-0.09006518870592117,
-0.1156073659658432,
0.024195194244384766,
-0.02347905933856964,
-0.0626370906829834,
0.0009833128424361348,
-0.030408674851059914,
-0.038371969014406204,
0... | 0.031005 |
```powershell New-NetFirewallRule -DisplayName "WSL SSH $ListenPort" -Direction Inbound ` -Protocol TCP -LocalPort $ListenPort -Action Allow ``` Refresh the portproxy after WSL restarts: ```powershell netsh interface portproxy delete v4tov4 listenport=$ListenPort listenaddress=0.0.0.0 | Out-Null netsh interface portpro... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/windows.md | main | opebclaw | [
0.1107269749045372,
0.020625436678528786,
-0.09116438031196594,
0.021326366811990738,
-0.014316575601696968,
0.05781818926334381,
-0.04682697728276253,
-0.03768393397331238,
-0.0006687479326501489,
0.00031796787516213953,
-0.0055299741216003895,
0.008738456293940544,
0.01120138168334961,
0... | -0.064175 |
The Gateway is fully supported on Linux. \*\*Node is the recommended runtime\*\*. Bun is not recommended for the Gateway (WhatsApp/Telegram bugs). Native Linux companion apps are planned. Contributions are welcome if you want to help build one. ## Beginner quick path (VPS) 1. Install Node 24 (recommended; Node 22 LTS, ... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/linux.md | main | opebclaw | [
-0.011624823324382305,
-0.008541216142475605,
-0.04624965786933899,
-0.025947360321879387,
-0.005272958427667618,
-0.020384302362799644,
-0.09884800016880035,
0.04598560929298401,
-0.01501595787703991,
0.10262998938560486,
0.05854078009724617,
0.007181882858276367,
-0.010106442496180534,
0... | 0.038735 |
The macOS app is the \*\*menu-bar companion\*\* for OpenClaw. It owns permissions, manages/attaches to the Gateway locally (launchd or manual), and exposes macOS capabilities to the agent as a node. ## What it does - Shows native notifications and status in the menu bar. - Owns TCC prompts (Notifications, Accessibility... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/macos.md | main | opebclaw | [
-0.012836616486310959,
-0.032940421253442764,
-0.03569265082478523,
-0.029593920335173607,
0.05158757045865059,
-0.08745595812797546,
-0.008018220774829388,
0.0033951885998249054,
-0.009733016602694988,
0.021502798423171043,
-0.005800426937639713,
-0.04608464241027832,
-0.001659079105593264,... | 0.181512 |
"Always Allow" in the prompt adds that command to the allowlist. - `system.run` environment overrides are filtered (drops `PATH`, `DYLD\_\*`, `LD\_\*`, `NODE\_OPTIONS`, `NODE\_REDIRECT\_WARNINGS`, `NODE\_REPL\_EXTERNAL\_MODULE`, `NODE\_REPL\_HISTORY`, `NODE\_V8\_COVERAGE`, `PYTHON\*`, `PERL\*`, `RUBYOPT`, `SHELLOPTS`, ... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/macos.md | main | opebclaw | [
0.008742265403270721,
0.025661712512373924,
-0.060980379581451416,
-0.04028626158833504,
0.08136703819036484,
-0.019969157874584198,
-0.03475820645689964,
0.03738922253251076,
-0.08070936799049377,
0.05677718669176102,
-0.020408907905220985,
0.00023706426145508885,
0.013646933250129223,
0.... | 0.040877 |
-L :127.0.0.1:` with BatchMode + ExitOnForwardFailure + keepalive options. - \*\*IP reporting:\*\* the SSH tunnel uses loopback, so the gateway will see the node IP as `127.0.0.1`. Use \*\*Direct (ws/wss)\*\* transport if you want the real client IP to appear (see [macOS remote access](/platforms/mac/remote)). For setu... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/macos.md | main | opebclaw | [
0.011698422953486443,
0.041460029780864716,
-0.059507131576538086,
0.023521168157458305,
0.008380663581192493,
0.046003665775060654,
-0.017221694812178612,
0.008084862492978573,
-0.035247091203927994,
0.03005087375640869,
-0.016068430617451668,
-0.010198155418038368,
0.03478328511118889,
-... | 0.0251 |
OpenClaw core is written in TypeScript. \*\*Node is the recommended runtime\*\*. Bun is not recommended for the Gateway — known issues with WhatsApp and Telegram channels; see [Bun (experimental)](/install/bun) for details. Companion apps exist for macOS (menu bar app) and mobile nodes (iOS/Android). Windows and Linux ... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/index.md | main | opebclaw | [
-0.023300692439079285,
-0.0031792325899004936,
0.011400867253541946,
-0.02669437788426876,
0.027638645842671394,
-0.06764532625675201,
-0.09277235716581345,
0.05760456994175911,
-0.0009756766958162189,
0.04709514603018761,
0.029796969145536423,
-0.0037723002023994923,
-0.022597407922148705,
... | 0.036077 |
Availability: iPhone app builds are distributed through Apple channels when enabled for a release. Local development builds can also run from source. ## What it does - Connects to a Gateway over WebSocket (LAN or tailnet). - Exposes node capabilities: Canvas, Screen snapshot, Camera capture, Location, Talk mode, Voice ... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/ios.md | main | opebclaw | [
-0.0010254128137603402,
-0.030928384512662888,
-0.01018534041941166,
-0.012222847901284695,
-0.03871942684054375,
-0.0898078978061676,
-0.11141835153102875,
-0.0002501790295355022,
0.030027305707335472,
-0.016611373052001,
0.07980816066265106,
-0.037726547569036484,
-0.0028802589513361454,
... | 0.02615 |
the stored relay-backed registration. ## Background alive beacons When iOS wakes the app for a silent push, background refresh, or significant-location event, the app attempts a short node reconnect and then calls `node.event` with `event: "node.presence.alive"`. The gateway records this as `lastSeenAtMs`/`lastSeenReas... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/ios.md | main | opebclaw | [
-0.05894710496068001,
-0.0517631433904171,
0.01978951133787632,
0.08139626681804657,
0.004119854886084795,
-0.043011512607336044,
-0.022249257192015648,
-0.07615042477846146,
0.03415132313966751,
0.07556796818971634,
-0.0152846435084939,
0.08300990611314774,
-0.01130716409534216,
0.0000159... | 0.038885 |
``` These are gateway-host runtime env vars, not Fastlane settings. `apps/ios/fastlane/.env` only stores App Store Connect / TestFlight auth such as `ASC\_KEY\_ID` and `ASC\_ISSUER\_ID`; it does not configure direct APNs delivery for local iOS builds. Recommended gateway-host storage: ```bash mkdir -p ~/.openclaw/crede... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/ios.md | main | opebclaw | [
0.009456812404096127,
-0.010025645606219769,
-0.09441790729761124,
0.00599536532536149,
-0.09316088259220123,
-0.05858541652560234,
-0.03889835625886917,
-0.07752206176519394,
0.027952784672379494,
0.07974861562252045,
0.08185715228319168,
-0.024872805923223495,
-0.05024464428424835,
0.020... | -0.101996 |
## What is shown - We surface the current agent work state in the menu bar icon and in the first status row of the menu. - Health status is hidden while work is active; it returns when all sessions are idle. - A root "Context" submenu contains recent sessions instead of expanding them directly in the root menu. - The "... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/menu-bar.md | main | opebclaw | [
-0.059038467705249786,
0.0009980250615626574,
-0.010768131352961063,
0.011088074184954166,
0.016857117414474487,
-0.038892582058906555,
0.04034188389778137,
-0.010667429305613041,
0.04538654908537865,
0.0635891705751419,
-0.024755077436566353,
0.0452350489795208,
0.011920487508177757,
-0.0... | 0.191524 |
macOS permission grants are fragile. TCC associates a permission grant with the app's code signature, bundle identifier, and on-disk path. If any of those change, macOS treats the app as new and may drop or hide prompts. ## Requirements for stable permissions - Same path: run the app from a fixed location (for OpenClaw... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/permissions.md | main | opebclaw | [
-0.09976547956466675,
0.01200958713889122,
-0.021440399810671806,
-0.0048392838798463345,
0.06479320675134659,
-0.08813624083995819,
0.024828551337122917,
0.016633598133921623,
0.015390138141810894,
-0.031038865447044373,
0.028808677569031715,
-0.04920249432325363,
0.023078985512256622,
0.... | 0.083882 |
OpenClaw.app no longer bundles Node/Bun or the Gateway runtime. The macOS app expects an \*\*external\*\* `openclaw` CLI install, does not spawn the Gateway as a child process, and manages a per-user launchd service to keep the Gateway running (or attaches to an existing local Gateway if one is already running). ## Ins... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/bundled-gateway.md | main | opebclaw | [
-0.003243587911128998,
-0.05071653053164482,
-0.013978268951177597,
-0.007504068780690432,
0.052307866513729095,
-0.07426264882087708,
-0.06834696233272552,
0.021393543109297752,
-0.02236863225698471,
0.03435473144054413,
0.012698383070528507,
-0.013855302706360817,
-0.04341225326061249,
0... | 0.084236 |
The macOS app embeds an agent-controlled \*\*Canvas panel\*\* using `WKWebView`. It is a lightweight visual workspace for HTML/CSS/JS, A2UI, and small interactive UI surfaces. ## Where Canvas lives Canvas state is stored under Application Support: - `~/Library/Application Support/OpenClaw/canvas//...` The Canvas panel ... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/canvas.md | main | opebclaw | [
-0.10977579653263092,
-0.017996126785874367,
-0.04522102326154709,
0.036840494722127914,
0.09045059978961945,
-0.07257003337144852,
-0.00460381805896759,
0.0011953091016039252,
-0.013420344330370426,
0.008338594809174538,
0.004165435675531626,
0.021060537546873093,
0.009963363409042358,
0.... | 0.163913 |
The macOS menu bar app embeds the WebChat UI as a native SwiftUI view. It connects to the Gateway and defaults to the \*\*main session\*\* for the selected agent (with a session switcher for other sessions). - \*\*Local mode\*\*: connects directly to the local Gateway WebSocket. - \*\*Remote mode\*\*: forwards the Gate... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/webchat.md | main | opebclaw | [
-0.015132416039705276,
-0.04694807156920433,
0.006584361661225557,
0.020353304222226143,
-0.03862529247999191,
-0.11366445571184158,
0.009680548682808876,
-0.018440037965774536,
0.010871118865907192,
-0.009362841956317425,
0.054094262421131134,
-0.045367442071437836,
-0.032801639288663864,
... | 0.074073 |
# Voice Overlay Lifecycle (macOS) Audience: macOS app contributors. Goal: keep the voice overlay predictable when wake-word and push-to-talk overlap. ## Current intent - If the overlay is already visible from wake-word and the user presses the hotkey, the hotkey session \_adopts\_ the existing text instead of resetting... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/voice-overlay.md | main | opebclaw | [
-0.03709116950631142,
-0.06203633174300194,
0.05113540217280388,
-0.019906198605895042,
0.048760659992694855,
-0.04963488131761551,
0.05298318713903427,
-0.026332594454288483,
0.07922539860010147,
-0.029929447919130325,
-0.017838723957538605,
0.03525925800204277,
-0.035763777792453766,
-0.... | 0.111426 |
# OpenClaw macOS IPC architecture \*\*Current model:\*\* a local Unix socket connects the \*\*node host service\*\* to the \*\*macOS app\*\* for exec approvals + `system.run`. A `openclaw-mac` debug CLI exists for discovery/connect checks; agent actions still flow through the Gateway WebSocket and `node.invoke`. UI aut... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/xpc.md | main | opebclaw | [
-0.12039580196142197,
-0.04693049192428589,
-0.030290009453892708,
0.008154837414622307,
0.0018523263279348612,
-0.09612441062927246,
0.015464166179299355,
0.013278264552354813,
-0.007303958758711815,
0.012974567711353302,
-0.011394343338906765,
-0.08247888833284378,
0.02470066212117672,
-... | 0.225187 |
# Voice Wake & Push-to-Talk ## Modes - \*\*Wake-word mode\*\* (default): always-on Speech recognizer waits for trigger tokens (`swabbleTriggerWords`). On match it starts capture, shows the overlay with partial text, and auto-sends after silence. - \*\*Push-to-talk (Right Option hold)\*\*: hold the right Option key to c... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/voicewake.md | main | opebclaw | [
-0.04714365303516388,
-0.03159411996603012,
0.02488359808921814,
-0.011565517634153366,
0.052529819309711456,
0.010592029429972172,
0.05416688695549965,
-0.05263754725456238,
0.012876849621534348,
-0.1116424947977066,
-0.05150396376848221,
-0.058383841067552567,
-0.008618146181106567,
-0.0... | 0.046909 |
stay enlarged (uses `triggerVoiceEars(ttl:nil)`); they drop after release. ## Related - [Voice wake](/nodes/voicewake) - [Voice overlay](/platforms/mac/voice-overlay) - [macOS app](/platforms/macos) | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/voicewake.md | main | opebclaw | [
-0.03492133319377899,
0.02076408825814724,
0.060232363641262054,
-0.03058042749762535,
0.014010102488100529,
0.013394423760473728,
-0.00858847051858902,
-0.030240340158343315,
0.028262998908758163,
-0.09307941794395447,
0.029530225321650505,
0.035048335790634155,
-0.03244829922914505,
-0.0... | 0.083489 |
The macOS app surfaces OpenClaw skills via the gateway; it does not parse skills locally. ## Data source - `skills.status` (gateway) returns all skills plus eligibility and missing requirements (including allowlist blocks for bundled skills). - Requirements are derived from `metadata.openclaw.requires` in each `SKILL.m... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/skills.md | main | opebclaw | [
-0.024196065962314606,
-0.030703004449605942,
0.01374075934290886,
0.015132428146898746,
0.0796431377530098,
-0.09314581006765366,
-0.05253778398036957,
-0.015301752835512161,
-0.11341492086648941,
-0.009173844940960407,
0.037955544888973236,
-0.00012482241436373442,
0.009025576524436474,
... | 0.002976 |
# Logging (macOS) ## Rolling diagnostics file log (Debug pane) OpenClaw routes macOS app logs through swift-log (unified logging by default) and can write a local, rotating file log to disk when you need a durable capture. - Verbosity: \*\*Debug pane → Logs → App logging → Verbosity\*\* - Enable: \*\*Debug pane → Logs ... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/logging.md | main | opebclaw | [
-0.03802092373371124,
-0.012655388563871384,
-0.034125521779060364,
0.014871967025101185,
0.05931843817234039,
-0.11864536255598068,
-0.0026637508999556303,
0.010955165140330791,
0.0013399888994172215,
0.04230266436934471,
0.08287657052278519,
-0.008613902144134045,
-0.04028427600860596,
0... | 0.136352 |
# mac signing (debug builds) This app is usually built from [`scripts/package-mac-app.sh`](https://github.com/openclaw/openclaw/blob/main/scripts/package-mac-app.sh), which now: - sets a stable debug bundle identifier: `ai.openclaw.mac.debug` - writes the Info.plist with that bundle id (override via `BUNDLE\_ID=...`) -... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/signing.md | main | opebclaw | [
-0.08389290422201157,
0.0011093155480921268,
-0.029182959347963333,
-0.016325749456882477,
0.111765556037426,
-0.13485755026340485,
0.019261399284005165,
0.04748580604791641,
-0.030963249504566193,
-0.002611670410260558,
0.09878163784742355,
-0.0337214469909668,
0.0003620329371187836,
-0.0... | 0.084178 |
# Menu Bar Icon States Author: steipete · Updated: 2025-12-06 · Scope: macOS app (`apps/macos`) - \*\*Idle:\*\* Normal icon animation (blink, occasional wiggle). - \*\*Paused:\*\* Status item uses `appearsDisabled`; no motion. - \*\*Voice trigger (big ears):\*\* Voice wake detector calls `AppState.triggerVoiceEars(ttl:... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/icon.md | main | opebclaw | [
-0.06871382892131805,
-0.029961470514535904,
0.015104405581951141,
-0.06123942881822586,
-0.02416147291660309,
-0.03911412134766579,
0.08466099947690964,
-0.051491957157850266,
0.017058594152331352,
-0.07314573228359222,
0.004324209410697222,
-0.03313647583127022,
-0.022694015875458717,
-0... | 0.14315 |
OpenClaw can host \*\*PeekabooBridge\*\* as a local, permission-aware UI automation broker. This lets the `peekaboo` CLI drive UI automation while reusing the macOS app's TCC permissions. ## What this is (and is not) - \*\*Host\*\*: OpenClaw.app can act as a PeekabooBridge host. - \*\*Client\*\*: use the `peekaboo` CLI... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/peekaboo.md | main | opebclaw | [
-0.0719900131225586,
-0.013677158392965794,
-0.01595921255648136,
-0.028141552582383156,
-0.026183824986219406,
-0.09103263169527054,
0.02513526938855648,
-0.01582556962966919,
-0.0027128057554364204,
-0.04069932922720909,
0.012679687701165676,
-0.08114205300807953,
0.04225732758641243,
0.... | 0.127191 |
# macOS developer setup Build and run the OpenClaw macOS application from source. ## Prerequisites Before building the app, ensure you have the following installed: 1. \*\*Xcode 26.2+\*\*: Required for Swift development. 2. \*\*Node.js 24 & pnpm\*\*: Recommended for the gateway, CLI, and packaging scripts. Node 22 LTS,... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/dev-setup.md | main | opebclaw | [
-0.0007655553054064512,
-0.06375660002231598,
-0.020763272419571877,
0.018389243632555008,
0.05786918103694916,
-0.10441365838050842,
-0.06625966727733612,
0.029470982030034065,
-0.05405829846858978,
0.02815852500498295,
0.04304862767457962,
-0.04681062698364258,
-0.03039558231830597,
0.03... | 0.048218 |
The macOS app \*\*manages the Gateway via launchd\*\* by default and does not spawn the Gateway as a child process. It first tries to attach to an already-running Gateway on the configured port; if none is reachable, it enables the launchd service via the external `openclaw` CLI (no embedded runtime). This gives you re... | https://github.com/openclaw/openclaw/blob/main/docs/platforms/mac/child-process.md | main | opebclaw | [
-0.020706279203295708,
-0.057915087789297104,
-0.021544264629483223,
0.008858229033648968,
0.0011011651949957013,
-0.0699484720826149,
-0.05891057848930359,
0.037300802767276764,
0.011541828513145447,
0.035736411809921265,
-0.01260264590382576,
0.025882484391331673,
-0.03301049768924713,
0... | 0.084281 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.