
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
On 64-bit systems you need to have 32-bit libc, libstdc++ and libseccomp installed. On Ubuntu, run:
sudo dpkg --add-architecture i386
sudo apt-get install libc6-i386 lib32stdc++6 libseccomp2:i386
To install Codius command line tools, run:
sudo npm install -g codius
Let's check out a contract and run it!
git clone https://github.com/codius/example-helloworld codius-example-helloworld
cd codius-example-helloworld
codius run
You should see something like:
Contracts can expose HTTP APIs, check it out:
git clone https://github.com/codius/example-webserver codius-example-webserver
cd codius-example-webserver
codius serve
Your contract is now running at localhost:2634
. Go ahead and open it in a browser!
Warning, this functionality is still heavily under development.
You can upload contracts to Codius hosts. First, let's set up a local Codius host:
git clone https://github.com/codius/codius-host
cd codius-host
npm install
node app
Now you can go back to the codius-example-webserver
folder from the previous example.
To upload your contract, run codius upload
.
cd codius-example-webserver
codius upload
Now your contract is running on the Codius host! Go ahead and open its URL in the browser and watch its output in the host's log!
Using Self-Signed SSL Certificates
If your Codius Host is using a self-signed SSL certificate (potentially for development) you will need to
enable tls connections with self-signed certs by setting the CODIUS_UNAUTHORIZED_SSL
environment variable to true
CODIUS_UNAUTHORIZED_SSL=true codius upload
FAQs
Command Line Interface for Codius
The npm package codius receives a total of 2 weekly downloads. As such, codius popularity was classified as not popular.
We found that codius demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.