beacon-skill

(★ 219)

Beacon - agent-to-agent pings with optional RTC value attached (BoTTube/Moltbook/RustChain + UDP bus)

File Explorer

  • .clawhubignore
  • .gitignore
  • .npmignore
  • BCOS.md
  • CHANGELOG.md
  • CODE_OF_CONDUCT.md
  • config.example.json
  • CONTRIBUTING.md
  • CONTRIBUTORS.md
  • INSTALL_REPORT.md
  • ISSUE_TEMPLATE.md
  • LICENSE
  • llms.txt
  • package.json
  • PUBLISH_CHECKLIST.md
  • PULL_REQUEST_TEMPLATE.md
  • pyproject.toml
  • README.md
  • README_CN.md
  • README_MIGRATION.md
  • RELEASE_NOTES.md
  • requirements.txt
  • SECURITY.md
  • SKILL.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

lsof

View Details ▼

List open files and the corresponding processes.
Note: Root privileges are required to list files opened by others.

lsof {{path/to/file}}

Find the processes that have a given file open:

lsof -i :{{port}}

Find the process that opened a local internet port:

lsof -t {{path/to/file}}

Only output the process ID (PID):

🔍

npm install

View Details ▼

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

python3

View Details ▼

This command is an alias of `python`.

tldr python

View documentation for the original command:

🔍

setx

View Details ▼

Set persistent environment variables.

setx {{variable}} {{value}}

Set an environment variable for the current user:

setx {{variable}} {{value}} /M

Set an environment variable for the current machine:

setx /s {{hostname}} /u {{username}} /p {{password}} {{variable}} {{value}}

Set an environment variable for a user on a remote machine:

# Project Badges

  • Watch: Introducing Beacon Protocol Watch: Introducing Beacon Protocol Visit
  • Featured on ToolPilot.ai Featured on ToolPilot.ai Visit
  • BCOS Certified BCOS Certified Visit
// repository documentation