AI Skill Hub 强烈推荐:TexFolio 是一款优质的Agent工作流。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的Agent工作流解决方案,这是一个值得深入了解的选择。
TexFolio 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
TexFolio 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:npm 全局安装 npm install -g texfolio # 方式二:npx 直接运行(无需安装) npx texfolio --help # 方式三:项目依赖安装 npm install texfolio # 方式四:从源码运行 git clone https://github.com/theunstopabble/TexFolio cd TexFolio npm install npm start
# 命令行使用
texfolio --help
# 基本用法
texfolio [options] <input>
# Node.js 代码中使用
const texfolio = require('texfolio');
const result = await texfolio.run(options);
console.log(result);
# texfolio 配置说明 # 查看配置选项 texfolio --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export TEXFOLIO_CONFIG="/path/to/config.yml"
TexFolio is a modern SaaS application that combines the precision of LaTeX document rendering with the intelligence of Large Language Models (LLMs). It solves the problem of formatting complex resumes while ensuring they are optimized for Applicant Tracking Systems (ATS).
Unlike traditional resume builders that generate clunky HTML-to-PDF exports, TexFolio compiles real LaTeX code in the background to produce industry-standard, typography-perfect PDFs.
pdflatex rendering) — RecommendedBuild professional, ATS-friendly resumes in minutes with the power of LaTeX rendering and AI assistance.
Features • Tech Stack • Getting Started • Architecture • API Documentation • RBAC • GDPR • Contributing
</div>
---
Follow these steps to set up TexFolio locally.
git clone https://github.com/theunstopabble/TexFolio.git
cd TexFolio
npm install
3. Environment Setup Copy .env.example files and fill in your keys:
cp apps/api/.env.example apps/api/.env
cp apps/web/.env.example apps/web/.env
apps/api/.env
# Core
NODE_ENV=development
PORT=5000
MONGODB_URI=your_mongodb_connection_string
REDIS_URL=redis://localhost:6379
CORS_ORIGIN=http://localhost:5173
# Auth
CLERK_SECRET_KEY=your_clerk_secret_key
CLERK_PUBLISHABLE_KEY=your_clerk_publishable_key
# AI (at least one required)
NVIDIA_API_KEY=your_nvidia_nim_key
GROQ_API_KEY=your_groq_api_key
GOOGLE_AI_API_KEY=your_google_gemini_key
# PDF (set to true if using Docker for LaTeX)
PDFLATEX_PATH=pdflatex
USE_DOCKER_LATEX=true
# Payments
RAZORPAY_KEY_ID=your_razorpay_key_id
RAZORPAY_KEY_SECRET=your_razorpay_secret
RAZORPAY_WEBHOOK_SECRET=your_razorpay_webhook_secret
# Email
BREVO_API_KEY=your_brevo_api_key
SENDER_EMAIL=hello@texfolio.app
# Service-to-Service API Keys (optional but recommended)
API_KEY_SECRET=your_random_64_char_secret_for_hmac_signing
apps/web/.env
VITE_API_URL=http://localhost:5000/api
VITE_CLERK_PUBLISHABLE_KEY=your_clerk_publishable_key
4. Run the Application Run both frontend and backend concurrently:
npm run dev
http://localhost:5173http://localhost:5000---
| **Interactive Editor** | **Dashboard** |
|---|---|
| <img src="docs/editor-demo.png" alt="Editor" width="400"/> | <img src="docs/dashboard-demo.png" alt="Dashboard" width="400"/> |
| **AI Analysis** | **PDF Preview** |
|---|---|
| <img src="docs/ai-demo.png" alt="AI Analysis" width="400"/> | <img src="docs/preview-demo.png" alt="PDF Preview" width="400"/> |
Note: Add your screenshots to a docs/ folder in the root directory.
---
pdflatex via Docker container (texfolio-latex) or local MiKTeX, with spawn-based command injection preventionioredis (survives restarts, scales horizontally)---
All protected routes strictly require a Clerk Bearer token, unless noted otherwise.
| Method | Endpoint | Auth | Description |
|---|---|---|---|
GET | /api/resumes | Clerk | Get all user resumes (personal + org-authorized) |
POST | /api/resumes | Clerk | Create a new resume (personal or org-scoped) |
GET | /api/resumes/:id | Clerk | Get resume details (ownership or org visibility) |
PUT | /api/resumes/:id | Clerk | Update resume (owner, admin, or editor in org) |
DELETE | /api/resumes/:id | Clerk | Delete resume (owner or org admin) |
GET | /api/resumes/:id/pdf | Clerk | Enqueue PDF generation (returns job ID) |
GET | /api/resumes/:id/pdf-status | Clerk | Poll BullMQ job progress (10% → 30% → 100%) |
GET | /api/resumes/:id/download | Clerk | Download generated PDF file |
POST | /api/resumes/:id/email | Clerk | Email PDF via Brevo |
PUT | /api/resumes/:id/share | Clerk | Toggle public visibility + generate shareId |
| Method | Endpoint | Auth | Description |
|---|---|---|---|
POST | /api/agents/coach | Clerk | Full LangGraph ATS & content analysis |
POST | /api/agents/import/linkedin | Clerk | Parse and extract data from LinkedIn PDF |
POST | /api/ai/improve | Clerk | Improve text (Summary/Description) |
POST | /api/ai/generate-bullets | Clerk | Generate action-oriented bullet points |
POST | /api/ai/cover-letter | Clerk | Generate tailored cover letter |
| Method | Endpoint | Role | Description |
|---|---|---|---|
POST | /api/organizations | Any | Create org (becomes owner) |
GET | /api/organizations | Any | List your orgs with roles |
GET | /api/organizations/:id | Member | Get org details |
PUT | /api/organizations/:id | Admin+ | Update branding, settings |
DELETE | /api/organizations/:id | Owner | Delete org + cleanup |
GET | /api/organizations/:id/members | Member | List members |
POST | /api/organizations/:id/members | Admin+ | Invite member (admin/editor/viewer) |
PUT | /api/organizations/:id/members/:userId | Admin+ | Change role (supports ownership transfer) |
DELETE | /api/organizations/:id/members/:userId | Admin+ / Self | Remove member |
GET | /api/organizations/:id/resumes | Member | List all org-visible resumes |
Organization context is resolved via X-Organization-Id header or inferred from route params.
| Method | Endpoint | Auth | Description |
|---|---|---|---|
POST | /api/api-keys | Clerk | Generate HMAC-signed service key (shown once) |
GET | /api/api-keys | Clerk | List active keys (metadata only) |
DELETE | /api/api-keys/:id | Clerk | Revoke a key |
Usage: Include key inX-API-Keyheader orAuthorization: ApiKey <key>. Supported scopes:read:resumes,write:resumes,read:analytics,admin.
| Method | Endpoint | Auth | Description |
|---|---|---|---|
GET | /api/me/export | Clerk | Full JSON dump (resumes, audit logs, orgs, memberships) |
POST | /api/me/delete | Clerk | Soft-delete: anonymize PII, revoke memberships, 30-day buffer |
| Method | Endpoint | Auth | Description |
|---|---|---|---|
GET | /api/audit-logs | Clerk | Query immutable audit trail (actor, action, resourceType, date range) |
| Method | Endpoint | Auth | Description |
|---|---|---|---|
POST | /api/payments/create-order | Clerk | Create Razorpay order |
POST | /api/payments/verify | Clerk | Verify payment signature and upgrade to Pro |
Returns a complete JSON dump containing:
[REDACTED] or [DELETED].pending (effectively revoked).[DELETED:<userId>] marker.---
/api/resumes/:id/pdf).resumeId, userId, and optional organizationId./api/resumes/:id/pdf-status for job progress (10% → 30% → 100%).PDFService escapes LaTeX, applies org branding, and maps to Mustache tags.pdflatex (Docker or local) compiles .tex → .pdf with spawn (no exec).App.tsx
→ OrganizationProvider (context)
→ organizationStore (Zustand, persist)
→ Header: OrganizationSwitcher dropdown
→ Dashboard: org context banner + CTA
→ /organizations → Organizations.tsx (list, create)
→ /organizations/:id → OrganizationDetail.tsx (overview, resumes)
→ /organizations/:id/settings → OrganizationSettings.tsx (branding, locked template)
→ /organizations/:id/members → OrganizationMembers.tsx (invite, roles, remove)
→ API calls → Axios interceptor injects X-Organization-Id header dynamically
高质量的AI驱动简历生成器
该工具未明确声明开源协议,商业使用前请联系原作者确认授权范围,避免侵权风险。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
总体来看,TexFolio 是一款质量优秀的Agent工作流,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | TexFolio |
| Topics | ailatexresumebullmqgdprhonolanggraph |
| GitHub | https://github.com/theunstopabble/TexFolio |
| 语言 | TypeScript |
收录时间:2026-06-13 · 更新时间:2026-06-13 · License:未公布 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端