一键导入
persistent-notes
Save notes locally to /mnt/workspace/notes.json file. Use when user wants to "save a note" or "remember something".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Save notes locally to /mnt/workspace/notes.json file. Use when user wants to "save a note" or "remember something".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Analyzes cost structure, cost efficiency, and expense management from P&L data. Use when the user asks about costs, expenses, COGS, operating expenses, cost ratios, cost control, spending efficiency, margin compression from cost side, or wants to understand where money is going. Also use for "are we spending too much", "cost breakdown", "expense analysis", or "how efficient are our operations". NOT for revenue or top-line analysis.
Generates a concise executive-level financial briefing or summary suitable for a CEO, CFO, or board presentation. Use when the user asks for a summary, briefing, executive summary, board update, financial overview, financial health check, or "how is the business doing". Covers the full P&L picture in one page. Also use for "give me the highlights", "what do I need to know", or "quick financial update".
Analyzes financial trends across multiple quarters by comparing P&L metrics over time. Use when the user wants to see trends, patterns, trajectories, or directional movement across 3 or more quarters. Also use for "how are we trending", "show me the trend", "track performance over time", "quarter over quarter comparison across all quarters", or any multi-period longitudinal analysis.
Calculates quarterly financial KPIs from P&L data. P&L figures can be provided directly by the user or fetched from the financial data MCP server. Use when the user wants KPI calculations such as Gross Margin %, EBITDA Margin %, Operating Expense Ratio, or Revenue Growth % QoQ. Also use for quarterly performance review, P&L analysis, or interpreting financial ratios against benchmarks.
Deep-dives into revenue growth patterns, growth rates, and growth quality. Use when the user asks specifically about revenue growth, top-line performance, sales growth, revenue acceleration or deceleration, growth trajectory, or wants to understand what is driving revenue changes. NOT for cost or margin analysis — this skill is revenue-focused only.
Format weather information with emoji, temperature ranges, and activity recommendations
| name | persistent-notes |
| description | Save notes locally to /mnt/workspace/notes.json file. Use when user wants to "save a note" or "remember something". |
Save notes to a local /mnt/workspace/notes.json file.
python3 persistent-notes/scripts/note_manager.py "Your note content here"
notes.jsonpython3 persistent-notes/scripts/note_manager.py "Deploy to production on Friday"
Output:
{
"status": "success",
"message": "Note saved to notes.json",
"note": {
"content": "Deploy to production on Friday",
"timestamp": "2026-03-19T10:30:00.123456"
}
}
Notes are saved to ./notes.json in the current working directory as a JSON array:
[
{
"content": "First note",
"timestamp": "2026-03-19T10:00:00.000000"
},
{
"content": "Second note",
"timestamp": "2026-03-19T10:30:00.000000"
}
]