Skills Plugins MCP Prompt Model 博客 我的中心
数据分析与咨询 #data #api #research #meeting

tear-sheet

Generate professional company tear sheets using S&P Capital IQ data via the Kensho LLM-ready API MCP server. Use this skill whenever the user asks for a tear sheet, company one-pager, company profile, fact sheet, company snapshot, or company overview document — especially when they mention a specific company name or ticker. Also trigger when users ask for equity research summaries, M&A company profiles, corporate development target profiles, sales/BD meeting prep documents, or any concise single-company financial summary. This skill supports four audience types: equity research, investment banking/M&A, corporate development, and sales/business development. If the user doesn't specify an audience, ask. Works for both public and private companies.

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=anthropics-financial-services-plugins-partner-built-spglobal-skills-tear-sheet-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name tear-sheet description Generate professional company tear sheets using S&P Capital IQ data via the Kensho LLM-ready API MCP server. Use this skill whenever the user asks for a tear sheet, company one-pager, company profile, fact sheet, company snapshot, or company overview document — especially when they mention a specific company name or ticker. Also trigger when users ask for equity research summaries, M&A company profiles, corporate development target profiles, sales/BD meeting prep documents, or any concise single-company financial summary. This skill supports four audience types: equity research, investment banking/M&A, corporate development, and sales/business development. If the user doesn't specify an audience, ask. Works for both public and private companies. Financial Tear Sheet Generator Generate audience-specific company tear sheets by pulling live data from S&P Capital IQ via the S&P Global MCP tools and formatting the result as a professional Word document. Style Configuration These are sensible defaults. To customize for your firm's brand, modify this section — common changes include swapping the color palette, changing the font (Calibri is standard at many banks), and updating the disclaimer text. Colors: Primary (header banner background, section header text): #1F3864 Accent (signature section highlights): #2E75B6 Table header row fill: #D6E4F0 Table alternating row fill: #F2F2F2 Table borders: #CCCCCC Header banner text: #FFFFFF Typography (sizes in half-points for docx-js): Font family: Arial Company name: 18pt bold (size: 36) Section headers: 11pt bold (size: 22), Primary color Body text: 9pt (size: 18) Table text: 8.5pt (size: 17) Footer/disclaimer: 7pt italic (size: 14) Per-template overrides are specified in each reference file's Formatting Notes. Company Header Banner: The header is a navy (#1F3864) banner spanning the full page width with company name in white. Below the banner, key-value pairs MUST be rendered in a two-column borderless table spanning the full page width. Left column: company identifiers (ticker, HQ, founded, employees, sector). Right column: financial identifiers (market cap, EV, stock price, shares outstanding). Each cell contains a bold label and regular-weight value on the same line (e.g., " Market Cap $124.7B"). Do not left-justify all fields in a single column — this wastes horizontal space and looks unprofessional. The two-column spread is the single most important visual signal that distinguishes a professional tear sheet from a default document. Implementation: Create a 2-column table with borders: none and shading: none on all cells. Set column widths to 50% each. Place left-column fields (ticker, HQ, founded, employees) as separate paragraphs in the left cell. Place right-column fields (market cap, EV, stock price, shares outstanding) in the right cell. Each field is a single paragraph: bold run for the label, regular run for the value. The specific fields in each column vary by audience — see the reference file's header spec. The principle is always: spread across the page, not clumped left. Do not use a bordered table for the header key-value block. Bordered tables are reserved for financial data only. Key metrics in the header (market cap, EV, stock price) should be displayed as inline key-value pairs, not in a separate bordered table. Section Headers: Each section header gets a horizontal rule (thin line, #CCCCCC, 0.5pt) directly beneath it to create clean visual separation between sections. Render the rule as a bottom border on the header paragraph itself — do not insert a separate paragraph element for the rule. A separate paragraph adds its own before/after spacing and causes excessive whitespace below section titles. Implementation: In docx-js, apply a bottom border to the section header paragraph via paragraph.borders.bottom = { style: BorderStyle.SINGLE, size: 1, color: "CCCCCC" } . Do not use doc.addParagraph() with a separate horizontal rule element. Do not use thematicBreak . The border must be on the heading paragraph itself with 0pt spacing after, so the rule sits tight against the header text. Spacing: 12pt before the header paragraph, 0pt after the header paragraph, 4pt before the next content element. Bullet Formatting: Use a single bullet character (•) for all bulleted content across all tear sheet types. Do not mix •, -, ▸, or numbered lists within or across tear sheets. Synthesis/analysis bullets (Earnings Highlights, Strategic Fit, Integration Considerations, Conversation Starters): indented block-style formatting with left indent 360 DXA (0.25") and a hanging indent for the bullet character. These should be visually offset from body text — they're interpretive content and should look distinct from data tables and prose paragraphs. Informational bullets within relationship sections: standard body indent (180 DXA), no hanging indent. Do not apply left-border accents to any bullet sections. Left-border styling renders inconsistently in docx-js and creates visual artifacts. Use indentation and text size differentiation to distinguish signature sections instead. Tables (financial data only): Header row: Table Header Fill (#D6E4F0) with bold dark text Body rows: alternating white / Table Alternating Fill (#F2F2F2) Borders: Table Border color (#CCCCCC), thin (BorderStyle.SINGLE, size 1) Cell padding: top/bottom 40 DXA, left/right 80 DXA Right-align all numeric columns Always use ShadingType.CLEAR (never SOLID — SOLID causes black backgrounds) Layout: US Letter portrait, 0.75" margins (1080 DXA all sides) Number formatting: Currency: USD. Use millions unless company revenue > $50B (then billions, one decimal). Label units in column headers (e.g., "Revenue ($M)"), not in individual cells. Table cells: plain numbers with commas, no dollar signs. Example: a revenue cell shows "4,916" not "$4,916". The column header carries the unit. Fiscal years: actual years (FY2022, FY2023, FY2024), never relative labels (FY-2, FY-1). Negatives: parentheses, e.g., (2.3%) Percentages: one decimal place Large numbers: commas as thousands separators Footer (document footer, not inline): Place the source attribution and disclaimer in the actual document footer (repeated on every page), not as inline body text at the bottom. The footer is exactly two lines, centered, on every page: Line 1: "Data: S&P Capital IQ via Kensho | Analysis: AI-generated | [Month Day, Year]" Line 2: "For informational purposes only. Not investment advice." Style: 7pt italic, centered, #666666 text color This footer text must be identical across all tear sheet types for the same company. Do not vary the wording by audience. This footer is required on every tear sheet, every audience type, every page. Do not omit it. Component Functions You MUST use these exact functions to create document elements. Do NOT write custom docx-js styling code. Copy these functions into your generated Node script and call them. The Style Configuration prose above remains as documentation; these functions are the enforcement mechanism. const docx = require ( "docx" ); const { Document , Paragraph , TextRun , Table , TableRow , TableCell , WidthType , AlignmentType , BorderStyle , ShadingType , Header , Footer , PageNumber , HeadingLevel , TableLayoutType , convertInchesToTwip } = docx; // ── Color constants ── const COLORS = { PRIMARY : "1F3864" , ACCENT : "2E75B6" , TABLE_HEADER_FILL : "D6E4F0" , TABLE_ALT_ROW : "F2F2F2" , TABLE_BORDER : "CCCCCC" , HEADER_TEXT : "FFFFFF" , FOOTER_TEXT : "666666" , }; const FONT = "Arial" ; // ── 1. createHeaderBanner ── // Returns an array of docx elements: [banner paragraph, key-value table] function createHeaderBanner ( companyName, leftFields, rightFields ) { // leftFields / rightFields: arrays of { label: string, value: string } const banner = new Paragraph ({ children : [ new TextRun ({ text : companyName, bold : true , size : 36 , // 18pt color : COLORS . HEADER_TEXT , font : FONT , }), ], shading : { type : ShadingType . CLEAR , color : "auto" , fill : COLORS . PRIMARY }, spacing : { after : 0 }, alignment : AlignmentType . LEFT , }); function buildCellParagraphs ( fields ) { return fields. map ( ( f ) => new Paragraph ({ children : [ new TextRun ({ text : f. label + " " , bold : true , size : 18 , font : FONT }), new TextRun ({ text : f. value , size : 18 , font : FONT }), ], spacing : { after : 40 }, }) ); } const noBorder = { style : BorderStyle . NONE , size : 0 , color : "FFFFFF" }; const noBorders = { top : noBorder, bottom : noBorder, left : noBorder, right : noBorder }; const noShading = { type : ShadingType . CLEAR , color : "auto" , fill : "FFFFFF" }; const kvTable = new Table ({ rows : [ new TableRow ({ children : [ new TableCell ({ children : buildCellParagraphs (leftFields), width : { size : 50 , type : WidthType . PERCENTAGE }, borders : noBorders, shading : noShading, }), new TableCell ({ children : buildCellParagraphs (rightFields), width : { size : 50 , type : WidthType . PERCENTAGE }, borders : noBorders, shading : noShading, }), ], }), ], width : { size : 100 , type : WidthType . PERCENTAGE }, }); return [banner, kvTable]; } // ── 2. createSectionHeader ── // Returns a single Paragraph with bottom border rule function createSectionHeader ( text ) { return new Paragraph ({ children : [ new TextRun ({ text : text, bold : true , size : 22 , // 11pt color : COLORS . PRIMARY , font : FONT , }), ], spacing : { before : 240 , after : 0 }, // 12pt before, 0pt after border : { bottom : { style : BorderStyle . SINGLE , size : 1 , color : COLORS . TABLE_BORDER }, }, }); } // ── 3. createTable ── // headers: string[], rows: string[][], options: { accentHeader?, fontSize? } function createTable ( headers, rows, options = {} ) { const fontSize = options. fontSize || 17 ; // 8.5pt default const headerFill = options. accentHeader ? COLORS . ACCENT : COLORS . TABLE_HEADER_FILL ; const headerTextColor = options. accentHeader ? COLORS . HEADER_TEXT : "000000" ; const cellBorders = { top : { style : BorderStyle . SINGLE , size : 1 , color : COLORS . TABLE_BORDER }, bottom : { style : BorderStyle . SINGLE , size : 1 , color : COLORS . TABLE_BORDER }, left : { style : BorderStyle . SINGLE , size : 1 , color : COLORS . TABLE_BORDER }, right : { style : BorderStyle . SINGLE , size : 1 , color : COLORS . TABLE_BORDER }, }; const cellMargins = { top : 40 , bottom : 40 , left : 80 , right : 80 }; function isNumeric ( val ) { if ( typeof val !== "string" ) return false ; const cleaned = val. replace ( /[,$%()]/g , "" ). trim (); return cleaned !== "" && ! isNaN (cleaned); } // Header row const headerRow = new TableRow ({ children : headers. map ( ( h ) => new TableCell ({ children : [ new Paragraph ({ children : [ new TextRun ({ text : h, bold : true , size : fontSize, color : headerTextColor, font : FONT , }), ], }), ], shading : { type : ShadingType . CLEAR , color : "auto" , fill : headerFill }, borders : cellBorders, margins : cellMargins, }) ), }); // Data rows with alternating shading const dataRows = rows. map ( ( row, rowIdx ) => { const fill = rowIdx % 2 === 1 ? COLORS . TABLE_ALT_ROW : "FFFFFF" ; return new TableRow ({ children : row. map ( ( cell, colIdx ) => { const align = colIdx > 0 && isNumeric (cell) ? AlignmentType . RIGHT : AlignmentType . LEFT ; return new TableCell ({ children : [ new Paragraph ({ children : [ new TextRun ({ text : cell, size : fontSize, font : FONT }), ], alignment : align, }), ], shading : { type : ShadingType . CLEAR , color : "auto" , fill : fill }, borders : cellBorders, margins : cellMargins, }); }), }); }); return new Table ({ rows : [headerRow, ...dataRows], width : { size : 100 , type : WidthType . PERCENTAGE }, }); } // ── 4. createBulletList ── // items: string[], style: "synthesis" | "informational" function createBulletList ( items, style = "synthesis" ) { const indent = style === "synthesis" ? { left : 360 , hanging : 180 } // 360 DXA left, hanging indent for bullet : { left : 180 }; // 180 DXA, no hanging return items. map ( ( item ) => new Paragraph ({ children : [ new TextRun ({ text : "• " , font : FONT , size : 18 }), new TextRun ({ text : item, font : FONT , size : 18 }), ], indent : indent, spacing : { after : 60 }, }) ); } // ── 5. createFooter ── // date: string (e.g., "February 23, 2026") function createFooter ( date ) { return new Footer ({ children : [ new Paragraph ({ children : [ new TextRun ({ text : `Data: S&P Capital IQ via Kensho | Analysis: AI-generated | ${date} ` , italics : true , size : 14 , // 7pt color : COLORS . FOOTER_TEXT , font : FONT , }), ], alignment : AlignmentType . CENTER , }), new Paragraph ({ children : [ new TextRun ({ text : "For informational purposes only. Not investment advice." , italics : true , size : 14 , color : COLORS . FOOTER_TEXT , font : FONT , }), ], alignment : AlignmentType . CENTER , }), ], }); } Usage in generated scripts: Copy all functions and constants above into the generated Node.js script Call createHeaderBanner(...) instead of manually building banner paragraphs and tables Call createSectionHeader(...) for every section title — never manually set paragraph borders Call createTable(...) for all tabular data — financial summaries, trading comps, M&A activity, relationship tables, funding history, etc. Pass { accentHeader: true } for M&A activity tables (IB/M&A template). For non-numeric tables (e.g., relationships, ownership), the function still works correctly — it only right-aligns cells that contain numeric values. Call createBulletList(items, "synthesis") for earnings highlights, strategic fit, integration considerations, and conversation starters Call createBulletList(items, "informational") for relationship entries Pass createFooter(date) to the Document constructor's footers.default property What these functions eliminate: Black background tables (enforces ShadingType.CLEAR everywhere) Separate horizontal rule paragraphs under section headers (enforces border.bottom on the paragraph itself) Bordered key-value tables in headers (enforces borders: none ) Inconsistent bullet styles (enforces • character only) Missing footers (provides the exact footer structure) Workflow Step 1: Identify Inputs Gather up to four things before proceeding: Company — name or ticker. If only a ticker, resolve the full company name with an initial query (e.g., use the company info tool). Audience — one of four types: Equity Research — for buy-side/sell-side analysts evaluating an investment IB / M&A — for bankers profiling a company in transaction context Corp Dev — for internal strategic teams evaluating an acquisition target Sales / BD — for commercial teams preparing for a client meeting Comparable companies (optional) — if the user has specific comps in mind, note them. Otherwise the skill will identify peers from S&P Global data. This matters for Equity Research, IB/M&A, and Corp Dev tear sheets. Page length preference (optional) — defaults vary by audience (see below), but the user can override. If the user doesn't specify an audience, ask. Step 2: Read the Audience-Specific Reference Read the corresponding reference file from this skill's directory: Equity Research → references/equity-research.md IB / M&A → references/ib-ma.md Corp Dev → references/corp-dev.md
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。