经 AI Skill Hub 精选评估,LinkedIn SSI Booster 获评「推荐使用」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
适应性持续学习的混合RAG代理,用于内容、curate和per。突出价值:提高内容创作效率、智能内容推荐。
LinkedIn SSI Booster 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
适应性持续学习的混合RAG代理,用于内容、curate和per。突出价值:提高内容创作效率、智能内容推荐。
LinkedIn SSI Booster 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install linkedin_ssi_booster
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install linkedin_ssi_booster
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/samjd-zz/linkedin_ssi_booster
cd linkedin_ssi_booster
pip install -e .
# 验证安装
python -c "import linkedin_ssi_booster; print('安装成功')"
# 命令行使用
linkedin_ssi_booster --help
# 基本用法
linkedin_ssi_booster input_file -o output_file
# Python 代码中调用
import linkedin_ssi_booster
# 示例
result = linkedin_ssi_booster.process("input")
print(result)
# linkedin_ssi_booster 配置文件示例(config.yml) app: name: "linkedin_ssi_booster" debug: false log_level: "INFO" # 运行时指定配置文件 linkedin_ssi_booster --config config.yml # 或通过环境变量配置 export LINKEDIN_SSI_BOOSTER_API_KEY="your-key" export LINKEDIN_SSI_BOOSTER_OUTPUT_DIR="./output"
<p align="center"> <img src="media/favicons/logo1.png" alt="LinkedIn SSI Booster Logo" width="150"> </p>
Run the full stack with a single command — Ollama LLM server + Wyoming Piper TTS + SSI Booster app. The stack uses Docker Profiles (core vs full) to manage hardware resources.
Quick Start:
```bash
```bash python -m venv .venv source .venv/bin/activate pip install -r requirements.txt python -m spacy download en_core_web_md cp .env.example .env cp data/avatar/persona_graph.example.json data/avatar/persona_graph.json cp data/avatar/domain_knowledge.example.json data/avatar/domain_knowledge.json cp data/avatar/narrative_memory.example.json data/avatar/narrative_memory.json
cp data/avatar/domain_knowledge_java.json data/avatar/domain_knowledge_java.json cp data/avatar/domain_knowledge_python.json data/avatar/domain_knowledge_python.json cp content_calendar.example.py content_calendar.py python main.py --schedule --week 1 --dry-run
Copy .env.example to .env and fill in required values. Key variables include:
BUFFER_API_KEY — Buffer API accessOLLAMA_MODEL / OLLAMA_MODEL_FALLBACK — LLM models (e.g., gemma4:e4b, qwen3.5:9b)TRUTH_GATE_BM25_THRESHOLD — Evidence scoring thresholdMODEL2VEC_ENABLED — Static embedding classificationCONSOLE_USE_VOICE — Wyoming Piper TTSDATABASE_ENABLED — PostgreSQL dual-write modeSee docs/environment-variables.md for comprehensive reference covering 40+ configuration options across Buffer, Ollama, truth gate, Model2Vec, voice/TTS, image generation, Strudel music, and database integration.
MIT License — see LICENSE for details.
Generate music directly from command line:
```bash
Access Rei Toei directly in console mode:
python main.py --console
Sam> /rei-toei
Rei> ⚡ Online. I transform your technical knowledge into algorithmic music.
What concept should we sonify today?
Sam> Generate a song about the recent ML architecture article
Rei> [Generates song concept, lyrics, and Suno prompt]
Sam> Create a Strudel pattern for that concurrent processing theme
Rei> [Generates and executes Tidal Cycles code via MCP agent]
Commands: /rei-toei or /rei to switch to Rei's personality, then describe what you want to generate.
How the system learns and adapts:
post (scheduled directly), idea (Buffer Ideas for manual review), or block. Those publication outcomes are later reconciled against Buffer — posts that actually go live raise the acceptance prior for their source, topic, and SSI component; posts that stay as ideas or get blocked do not count. Over time, sources that reliably produce clean, well-grounded posts float to the top of article ranking, while sources that consistently trigger heavy truth-gate filtering sink. The truth gate doesn't pre-filter articles — it filters the generated output — but its signal is what teaches the selection layer which articles are worth fetching next run.How deterministic grounding and the truth gate work:
S3, AI Q&A, Java 21) and is backed by an expanded evidence set from auto-merged domain_knowledge_*.json files. Each removed sentence is logged with a reason code (weak_evidence_bm25, weak_dot_gradient, low_semantic_similarity, unsupported_org, etc.) that feeds the confidence scoring pipeline.---
The system now supports dual-write mode with PostgreSQL for improved data integrity, query performance, and concurrent access. Database integration is optional — the system continues to work with file-based storage (JSON/JSONL) by default.
Setup (Docker):
.env: DATABASE_ENABLED=true
POSTGRES_USER=ssi_booster
POSTGRES_PASSWORD=your_secure_password_here
POSTGRES_DB=linkedin_ssi_booster
DATABASE_URL=postgresql://ssi_booster:your_password@postgres:5432/linkedin_ssi_booster
docker compose --profile core up -d postgres
docker exec -it ssi_booster_postgres psql -U ssi_booster -d linkedin_ssi_booster -c "\dt"
Database Schema:
The system stores 17 tables across 5 domains:
persona_graph, projects, companies, skills, claims, domains, domain_facts, domain_relationships, extracted_facts, narrative_memorycandidate_records, published_recordsmoderation_events, confidence_decisionstruth_trajectories, truth_trajectory_pointsschema_migrationsMigration from JSON/JSONL:
```bash
LinkedIn SSI Booster 是一个用于生成算法音乐的项目,基于多模态特征。它使用 FLUX.1-schnell 图像生成、Rei Toei AI 音乐形象 (Suno + Strudel) 和 Buffer MCP 代理等功能。
LinkedIn SSI Booster 支持多模态特征,包括 FLUX.1-schnell 图像生成、Rei Toei AI 音乐形象 (Suno + Strudel) 和 Buffer MCP 代理等功能。Rei Toei 实现包括 AI 音乐形象架构、Suno 歌曲生成、Strudel 模式执行、控制台集成和 CLI 旗帜等。
环境依赖与系统要求中文说明
LinkedIn SSI Booster 的安装步骤包括设置环境、依赖、人物图谱和日历设置。使用指南包括调度、筛选、控制台模式、通道和 CLI 示例。CLI 参考包括完整的命令行标志参考,用于调度、筛选、控制台和报告模式。
LinkedIn SSI Booster 的使用教程包括设置指南、使用指南、CLI 参考和环境变量参考等。
LinkedIn SSI Booster 的配置说明包括 Docker 部署、环境变量和关键参数等。
LinkedIn SSI Booster 的 API/接口说明包括 CLI 生成音乐直接从命令行等功能。
LinkedIn SSI Booster 的工作流/模块说明包括主题提取、技术隐喻和 E 等功能。
该项目提供了一个开源的AI工作流,适应性持续学习的混合RAG代理,用于内容、curate和per。虽然项目质量良好,但仍需要进一步优化和完善。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:LinkedIn SSI Booster 的核心功能完整,质量良好。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | linkedin_ssi_booster |
| 原始描述 | 开源AI工作流:An adaptive continually learning hybrid RAG Agent for content, curation, and per。⭐7 · Python |
| Topics | workflowpython |
| GitHub | https://github.com/samjd-zz/linkedin_ssi_booster |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-23 · 更新时间:2026-05-23 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端