cross-app-workflow

cross-app-workflow is a skill for Claude Code, Codex from malue-ai/dazee-small. It costs 35 tokens per session (860 once invoked), scanned A, original, MIT.

A workflow coordinator that links several local apps and skills into one ordered process. It passes each step’s result to the next step and can try alternatives when a step fails.

In plain words
What is it for?
Use it to turn email attachments into reports, combine PDF data into spreadsheets, convert meeting notes into calendar tasks, or research papers into a review.
Why use it?
It reduces the manual effort of moving information between apps during multi-step tasks.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to turn email attachments into reports, combine PDF data into spreadsheets, convert meeting notes into calendar tasks, or research papers into a review.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/malue-ai/dazee-small/cross-app-workflow
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add malue-ai/dazee-small --skill cross-app-workflow
Clone the repo
git clone --depth 1 https://github.com/malue-ai/dazee-small

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cross-app-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/malue-ai/dazee-small/cross-app-workflow.svg)](https://agentmods.dev/skills/malue-ai/dazee-small/cross-app-workflow)
Your own site
<a href="https://agentmods.dev/skills/malue-ai/dazee-small/cross-app-workflow"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/cross-app-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 860 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00035 $0.00860
Opus 5 $0.00017 $0.00430
Sonnet 5 $0.00007 $0.00172
Haiku 4.5 $0.00003 $0.00086

Measured 7d ago against content hash a7a85e09d749, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

cross-app-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

instances/xiaodazi/skills/cross-app-workflow/SKILL.md · 91 lines

What it actually says

跨应用工作流

将多个本地应用和 Skill 串联成复杂的多步骤工作流,完成端到端的自动化任务。

使用场景

  • 用户说「把邮件里的附件提取出来,分析 Excel,生成报告,再回复邮件」
  • 用户说「从这 5 个 PDF 里提取数据,汇总到 Excel,做个图表」
  • 用户说「把会议纪要整理成行动项,加到日历,通知参会者」
  • 用户说「分析这个文件夹的数据,生成 PPT,保存到桌面」

执行方式

这是一个编排型 Skill,本身不执行具体操作,而是指导 Agent 如何将多个 Skill 串联使用。

工作流编排原则

  1. 理解完整目标:分析用户请求,识别需要的所有步骤
  2. 拆解任务链:将目标分解为有序的子任务
  3. 选择合适 Skill:每个子任务匹配最佳 Skill
  4. 传递中间结果:上一步的输出作为下一步的输入
  5. 错误恢复:某步失败时尝试替代方案

常见工作流模板

数据分析 → 报告生成
Step 1: [excel-analyzer] 读取并分析数据文件
Step 2: [LLM] 基于分析结果生成洞察和结论
Step 3: [elegant-reports / word-processor] 生成格式化报告
Step 4: [file-manager] 保存到用户指定位置
邮件处理 → 任务分发
Step 1: [himalaya / outlook-cli] 读取邮件内容和附件
Step 2: [LLM] 提取关键信息和行动项
Step 3: [meeting-notes-to-action-items] 结构化行动项
Step 4: [apple-calendar / outlook-cli] 创建日程提醒
Step 5: [himalaya / outlook-cli] 起草并发送回复
内容创作 → 多平台分发
Step 1: [writing-assistant] 撰写长文
Step 2: [humanizer] 去 AI 味润色
Step 3: [content-reformatter] 适配各平台格式
Step 4: [file-manager] 保存各版本到对应文件夹
文献调研 → 报告
Step 1: [paper-search / arxiv-search] 搜索相关论文
Step 2: [deep-doc-reader] 深度阅读关键论文
Step 3: [literature-reviewer] 对比分析多篇文献
Step 4: [word-processor] 生成文献综述报告

中间结果管理

  • 每步产生的文件保存到 ~/Desktop/xiaodazi_workflow/ 临时目录
  • 工作流完成后提醒用户检查中间文件是否需要保留
  • 大数据中间结果写入文件,不全部放入上下文

安全规则

  • 每步执行前展示计划:让用户了解接下来的操作
  • 敏感操作需确认:发送邮件、删除文件等需用 HITL 确认
  • 错误不静默跳过:某步失败时通知用户并提供替代方案

输出规范

  • 开始前展示完整工作流计划(步骤列表)
  • 每步完成后报告进度
  • 全部完成后给出总结:执行了哪些操作、生成了哪些文件
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 91 lines · 35 tokens per session scan A a7a85e09d749

Subscribe to this mod's changes

cross-app-workflow is a skill published in the GitHub repository malue-ai/dazee-small (36 stars, last pushed 5mo ago), licensed MIT. It adds 35 tokens to every session and 860 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.