
Security News
Re-Enabled GitHub Actions Expose Thousands of Repositories to Mini Shai-Hulud
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.
@rflukerii/docbot
Advanced tools
A lightweight, bidirectional data format transformer. Convert between CSV, JSON, and Markdown with a simple, chainable API.
npm install @rflukerii/docbot
const { csvToJson, jsonToCsv, jsonToMarkdown, csvToMarkdown } = require('@rflukerii/docbot');
const json = csvToJson("name,age\nAlice,30\nBob,25");
// [{ name: 'Alice', age: '30' }, { name: 'Bob', age: '25' }]
const csv = jsonToCsv([{ name: 'Alice', age: '30' }, { name: 'Bob', age: '25' }]);
// "name,age\r\nAlice,30\r\nBob,25"
const md = jsonToMarkdown([{ name: 'Alice', age: '30' }, { name: 'Bob', age: '25' }]);
// | name | age |
// | --- | --- |
// | Alice | 30 |
// | Bob | 25 |
const md = csvToMarkdown("name,age\nAlice,30\nBob,25");
// | name | age |
// | --- | --- |
// | Alice | 30 |
// | Bob | 25 |
| Function | Input | Output |
|---|---|---|
csvToJson(csvString) | CSV string | JSON array |
jsonToCsv(jsonArray) | JSON array | CSV string |
jsonToMarkdown(jsonArray) | JSON array | Markdown table |
csvToMarkdown(csvString) | CSV string | Markdown table |
MIT
FAQs
Bidirectional CSV <> JSON <> Markdown transformer
The npm package @rflukerii/docbot receives a total of 9 weekly downloads. As such, @rflukerii/docbot popularity was classified as not popular.
We found that @rflukerii/docbot demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.

Research
/Security News
The compromise affects MemTensor's MemOS, an open source memory framework for large language models (LLMs) and AI agents. Both npm package @memtensor/memos-cloud-openclaw-plugin and the PyPI package MemoryOS are compromised. They drop cross-platform Go binaries that exfiltrate developer secrets.