{"kind":"Skill","metadata":{"namespace":"community","name":"strip-profile","version":"0.1.0"},"spec":{"description":"|","files":{"SKILL.md":"---\nname: fsi-strip-profile\ndescription: |\n  Creates professional investment banking strip profiles (company profiles) for pitch books, deal materials, and client presentations. Generates 1-4 information-dense slides with quadrant layouts, charts, and tables.\n---\n\n## Workflow\n\n### 1. Clarify Requirements\n- **Ask the user**: Single-slide or multi-slide (3-4 slides)?\n- **Ask the user**: Any specific focus areas or topics to emphasize?\n- **Only after user confirms**, proceed to research\n\n### 2. Research \u0026 Planning\n**Data Sources:**\n- **Primary**: Company filings (BamSEC, SEC EDGAR - \"Item 1. Business\", MD\u0026A), investor presentations, corporate website\n- **Market data**: Bloomberg, FactSet, CapIQ (price, shares, market cap, net debt, EV, ownership)\n- **Estimates**: FactSet/CapIQ consensus for NTM revenue, EBITDA, EPS\n- **News**: Press releases from last 90 days, M\u0026A activity, guidance changes\n\n**Required Metrics:**\n- **Financials**: Revenue, EBITDA, margins (%), EPS, FCF for ±3 years\n- **Valuation**: Market Cap, EV, EV/Revenue, EV/EBITDA, P/E multiples\n- **Growth**: YoY growth rates (%)\n- **Ownership**: Top 5 shareholders with % ownership\n- **Segments**: Product mix and/or geographic mix (% breakdown)\n\n**Normalization:**\n- Convert all amounts to consistent currency\n- Scale consistently ($mm or $bn throughout, not mixed)\n\n**Before Building:**\n- Print outline to chat with 4-5 bullet points per item (actual numbers, no placeholders)\n- Print style choices: fonts, colors (hex codes), chart types for each data set\n- Get user alignment: \"Does this outline and visual strategy align with your vision?\"\n\n### 3. Slide-by-Slide Creation\n**CRITICAL: You MUST create ONE slide at a time and get user approval before proceeding to the next slide.**\n\n**For EACH slide:**\n1. Create ONLY this one slide with PptxGenJS\n2. **MANDATORY: Convert to image for review** - You MUST convert slides to images so you can visually verify them:\n   ```bash\n   soffice --headless --convert-to pdf presentation.pptx\n   pdftoppm -jpeg -r 150 -f 1 -l 1 presentation.pdf slide\n   ```\n3. **MANDATORY VISUAL REVIEW**: You MUST carefully examine the rendered slide image before proceeding:\n   - **Text overlap check**: Scan every text element - do any labels, bullets, or titles collide with each other?\n   - **Text cutoff check**: Is any text truncated at boundaries? Are all words fully visible?\n   - **Chart boundary check**: Do charts stay within their containers? Are ALL axis labels fully visible?\n   - **Quadrant integrity**: Does content in one quadrant bleed into adjacent quadrants?\n4. **If ANY overlap or cutoff is detected**: Fix immediately using these strategies in order:\n   - **First**: Reduce font size (go down 1-2pt)\n   - **Second**: Shorten text (abbreviate, remove less critical info)\n   - **Third**: Adjust element positions or container sizes\n   - **Re-render and verify again** - do not proceed until all text fits cleanly\n5. Show slide image to user with download link\n6. **STOP and wait for explicit user approval** before creating the next slide. Do NOT proceed until user confirms.\n\n**YOU MUST CHECK FOR THESE SPECIFIC ISSUES ON EVERY PAGE:**\n- Table rows colliding with text below them\n- Chart x-axis labels cut off at bottom\n- Long bullet points wrapping into adjacent content\n- Quadrant content bleeding into adjacent quadrants\n- Title text overlapping with content below\n- Legend text overlapping with chart elements\n- Footer/source text colliding with main content\n\n---\n\n## Slide Format Requirements\n\n### Information Density is Critical\n\n**The #1 goal is MAXIMUM information density.** A busy executive should understand the entire company story in 30 seconds. Fill every quadrant to capacity.\n\n**Per quadrant targets:**\n- **Company Overview**: 6-8 bullets minimum (HQ, founded, employees, CEO/CFO, market cap, ticker, industry, key stat)\n- **Business \u0026 Positioning**: 6-8 bullets (revenue drivers, products, market share %, competitive moat, customer count, geographic mix)\n- **Key Financials**: Table with 8-10 rows OR chart + 4-5 key metrics (Revenue, EBITDA, margins, EPS, FCF, growth rates, valuation multiples)\n- **Fourth quadrant**: 5-7 bullets (ownership %, recent M\u0026A, developments, catalysts)\n\n**Information packing techniques:**\n- Combine related facts: \"HQ: Austin, TX; Founded: 2003; 140K employees\"\n- Always include numbers: \"$50B revenue\" not \"large revenue\"\n- Add context: \"EBITDA margin: 25% (vs. 18% industry avg)\"\n- Include YoY changes: \"Revenue: $125M (+28% YoY)\"\n- Use percentages: \"Enterprise: 62% of revenue\"\n\n**If a quadrant looks sparse, add more:**\n- Segment breakdowns with %\n- Geographic revenue splits\n- Customer concentration (top 10 = X%)\n- Recent contract wins with $ values\n- Guidance vs. consensus\n- Insider ownership %\n\n**Line spacing - use single textbox per section:**\n```python\ndef add_section(slide, x, y, w, header_text, bullets, header_size=10, bullet_size=8):\n    \"\"\"Header + bullets in single textbox with natural spacing\"\"\"\n    tb = slide.shapes.add_textbox(x, y, w, Inches(len(bullets) * 0.18 + 0.3))\n    tf = tb.text_frame\n    tf.word_wrap = True\n\n    # Header paragraph\n    p = tf.paragraphs[0]\n    p.text = header_text\n    p.font.bold = True\n    p.font.size = Pt(header_size)\n    p.font.color.rgb = RGBColor(0, 51, 102)\n    p.space_after = Pt(6)  # Small gap after header\n\n    # Bullet paragraphs\n    for bullet in bullets:\n        p = tf.add_paragraph()\n        p.text = bullet\n        p.font.size = Pt(bullet_size)\n        p.space_after = Pt(3)\n    return tb\n```\n\n**Key spacing principles:**\n- Put header + bullets in SAME textbox (no separate header textbox)\n- Use `space_after = Pt(6)` after header, `Pt(3)` between bullets\n- Don't hardcode gaps - let paragraph spacing handle it naturally\n- If content overflows, reduce font by 1pt rather than removing content\n\n---\n\n- **3-4 dense slides** - use quadrants, columns, tables, charts\n- **Bullets for ALL body text** - NEVER paragraphs. **Use ONE textbox per section with all bullets inside** - do NOT create separate textboxes for each bullet point. Use PptxGenJS bullet formatting:\n  ```javascript\n  // CORRECT: Single textbox with bullet list - each array item becomes a bullet\n  // Position in top-left quadrant (Company Overview) - after header with accent bar\n  slide.addText(\n    [\n      { text: 'Headquarters: Austin, Texas; Founded 2003', options: { bullet: { indent: 10 }, breakLine: true } },\n      { text: 'Employees: 140,000+ globally across 6 continents', options: { bullet: { indent: 10 }, breakLine: true } },\n      { text: 'CEO: Elon Musk; CFO: Vaibhav Taneja', options: { bullet: { indent: 10 }, breakLine: true } },\n      { text: 'Market Cap: $850B (#6 globally by market cap)', options: { bullet: { indent: 10 }, breakLine: true } },\n      { text: 'Segments: Automotive (85%), Energy (10%), Services (5%)', options: { bullet: { indent: 10 } } }\n    ],\n    { x: 0.45, y: 0.95, w: 4.5, h: 2.6, fontSize: 11, fontFace: 'Arial', valign: 'top', paraSpaceAfter: 6 }\n  );\n\n  // WRONG: Multiple separate textboxes for each bullet - causes alignment issues\n  // slide.addText('Headquarters: Austin', { x: 0.5, y: 1.0, bullet: true });\n  ```\n\n  **Bullet formatting tips:**\n  - `bullet: { indent: 10 }` - controls bullet indentation (smaller = tighter)\n  - `paraSpaceAfter: 6` - space after each paragraph in points\n  - Pack multiple related facts into each bullet (e.g., \"HQ: Austin; Founded: 2003\")\n  - Include specific numbers and percentages for information density\n- **Title case** for titles (not ALL CAPS), left-aligned\n- **Consistent fonts** everywhere including tables\n- **Company's brand colors** - YOU MUST research actual brand colors via web search before creating slides. Do not guess or assume colors.\n- **Follow brand guidelines if provided**\n\n### Visual Reference\nSee `examples/Nike_Strip_Profile_Example.pptx` for layout inspiration. Adapt colors to each company's brand.\n\n---\n\n## First Page Layout\n\nMust pass \"30-second comprehension test\" for a busy executive.\n\n### Slide Setup (CRITICAL)\n**Use 4:3 aspect ratio** (standard IB pitch book format):\n```javascript\nconst pptx = new pptxgen();\npptx.layout = 'LAYOUT_4x3';  // 10\" wide × 7.5\" tall - MUST USE THIS\n```\n\n### Slide Coordinate System\nPptxGenJS uses inches. 4:3 slide = **10\" wide × 7.5\" tall**.\n- **x**: horizontal position from left edge (0 = left, 10 = right)\n- **y**: vertical position from top edge (0 = top, 7.5 = bottom)\n- **Content must stay within bounds** - leave 0.3\" margin on all sides\n\n### First Page Positioning (in inches)\n```\n┌─────────────────────────────────────────────────────────────────┐\n│ y=0.2  Title: Company Name (Ticker)                             │\n├────────────────────────────┬────────────────────────────────────┤\n│ y=0.6  Company Overview    │ y=0.6  Business \u0026 Positioning      │\n│ x=0.3, w=4.7               │ x=5.0, w=4.7                       │\n│ h=3.0                      │ h=3.0                              │\n├────────────────────────────┼────────────────────────────────────┤\n│ y=3.7  Key Financials      │ y=3.7  Stock/Recent Developments   │\n│ x=0.3, w=4.7               │ x=5.0, w=4.7                       │\n│ h=3.5                      │ h=3.5                              │\n└────────────────────────────┴────────────────────────────────────┘\n                                                            y=7.5\n```\n\n### Title Section (y=0.2)\n**Company Name (Ticker)** - Example: `Tesla, Inc. (TSLA)`\n```javascript\nslide.addText('Tesla, Inc. (TSLA)', { x: 0.3, y: 0.2, w: 9.4, h: 0.35, fontSize: 18, bold: true });\n```\n\n### 4-Quadrant Layout (y=0.6 to y=7.2)\n\n| Quadrant | Position | Content |\n|----------|----------|---------|\n| **1** | x=0.3, y=0.6, w=4.7, h=3.0 | **Company Overview**: HQ, founded, key stats, business summary (4-5 bullets) |\n| **2** | x=5.0, y=0.6, w=4.7, h=3.0 | **Business \u0026 Positioning**: revenue drivers, products/services, competitive position, growth drivers (4-5 bullets) |\n| **3** | x=0.3, y=3.7, w=4.7, h=3.5 | **Key Financials**: Revenue, EBITDA, margins, EPS, FCF + Valuation (Mkt Cap, EV, multiples) — **table OR chart, not both** |\n| **4** | x=5.0, y=3.7, w=4.7, h=3.5 | **For public companies**: 1Y stock price chart + top shareholders. **For private**: Recent developments or Ownership/M\u0026A history |\n\n### Font Sizes - USE THESE EXACT VALUES\n| Element | Size | Notes |\n|---------|------|-------|\n| Slide title | 24pt | Bold, company brand color |\n| Quadrant headers | 14pt | Bold, with accent bar |\n| Body/bullet text | 11pt | Regular weight |\n| Table text | 10pt | Use 9pt for dense tables |\n| Chart labels | 9pt | Keep labels short |\n| Source/footer | 8pt | Bottom of slide |\n\n**CRITICAL: If text overflows, REDUCE font size by 1pt and re-render.**\n\n### Visual Accents (REQUIRED)\nEach quadrant header MUST have a colored accent bar to the left:\n```javascript\n// Add accent bar for quadrant header\nslide.addShape(pptx.shapes.RECTANGLE, {\n  x: 0.3, y: 0.6, w: 0.08, h: 0.25,\n  fill: { color: 'E31937' }  // Use company brand color\n});\nslide.addText('Company Overview', {\n  x: 0.45, y: 0.6, w: 4.5, h: 0.3, fontSize: 14, bold: true, fontFace: 'Arial'\n});\n```\n\n**Visual elements to include:**\n- Accent bars next to all section headers (brand color)\n- Thin horizontal divider line between top and bottom quadrants\n- Company logo in top-right corner if available\n- Subtle gridlines in tables (light gray #CCCCCC)\n\n### First Page Formatting\n- **Font: Arial** (or as specified by user/brand guidelines)\n- **Quadrant titles**: Title Case (not ALL CAPS), e.g., \"Company Overview\" not \"COMPANY OVERVIEW\"\n- **Bullets**: Bold key terms at start, e.g., \"**Market Position:** Leading global manufacturer...\"\n- White background only — no boxes, fills, or shading\n- Section headers: bold text, follow brand guidelines for styling\n- All quadrants equally sized and aligned\n\n---\n\n## Subsequent Pages: Free-Form Layouts\n\n- Two-column (40/60 or 50/50), full-slide charts, or sidebar layouts\n- Each page elaborates on first page content\n- Maintain consistent typography and color scheme\n- Suggested flow: Products/Market → Financial Analysis → Leadership\n\n---\n\n## Charts (Multi-Slide Profiles)\n\n**For multi-slide profiles**: Include 2-3 actual PptxGenJS charts. Never use placeholder divs or static images.\n\n**For single-slide profiles**: Use tables for financials (more space-efficient). Only add a chart if it replaces the table, not in addition to it.\n\n| Data Type | Chart Type |\n|-----------|------------|\n| Revenue trends | Line or column (multi-year) |\n| Geographic breakdown | Horizontal bar |\n| Product mix | Pie with percentages |\n| Financial comparison | Column |\n| Stock price (1Y daily) | Line |\n\n### Chart Code Examples\n\n**Horizontal Bar (fits in bottom-right quadrant for 4:3 slide):**\n```javascript\nslide.addChart(pptx.charts.BAR, [{\n  name: 'FY2024 Revenue by Region',\n  labels: ['North America', 'EMEA', 'China', 'APLA'],\n  values: [21.4, 13.6, 7.6, 6.7]\n}], {\n  x: 5.0, y: 4.1, w: 4.5, h: 3.0,  // Fits in bottom-right quadrant (4:3)\n  barDir: 'bar', chartColors: ['FF6B35'], showValue: true,\n  dataLabelFontSize: 10, catAxisLabelFontSize: 10, valAxisLabelFontSize: 10,\n  dataLabelFormatCode: '$#,##0.0B',\n  title: 'Revenue by Geography', titleFontSize: 12, titleBold: true\n});\n```\n\n**Pie Chart (fits in bottom-right quadrant for 4:3 slide):**\n```javascript\nslide.addChart(pptx.charts.PIE, [{\n  name: 'Product Mix',\n  labels: ['Footwear', 'Apparel', 'Equipment'],\n  values: [68, 29, 3]\n}], {\n  x: 5.0, y: 4.1, w: 4.5, h: 3.0,  // Fits in bottom-right quadrant (4:3)\n  showPercent: true, showLegend: true, legendPos: 'r',\n  dataLabelFontSize: 10, legendFontSize: 10,\n  chartColors: ['FF6B35', '2C2C2C', '4A4A4A'],\n  title: 'Revenue Mix FY24', titleFontSize: 12, titleBold: true\n});\n```\n\n**Line Chart (full width for subsequent slides):**\n```javascript\nslide.addChart(pptx.charts.LINE, [{\n  name: 'Revenue ($B)',\n  labels: ['FY21', 'FY22', 'FY23', 'FY24', 'FY25E'],\n  values: [44.5, 46.7, 48.5, 51.4, 54.2]\n}], {\n  x: 0.3, y: 1.2, w: 9.4, h: 5.5,  // Full width for 4:3 slide\n  chartColors: ['FF6B35'], showValue: true, lineSmooth: true,\n  dataLabelFontSize: 11, catAxisLabelFontSize: 11, valAxisLabelFontSize: 11,\n  title: 'Revenue Trend \u0026 Forecast', titleFontSize: 14, titleBold: true\n});\n```\n\n---\n\n## Financial Data Formatting\n\n**Always use native PptxGenJS tables or charts - NEVER plain text prose or HTML tables.**\n\nUse `slide.addTable()` for financial data (fits in bottom-left quadrant for 4:3 slide):\n```javascript\n// Add header with accent bar first\nslide.addShape(pptx.shapes.RECTANGLE, {\n  x: 0.3, y: 3.7, w: 0.08, h: 0.25, fill: { color: 'E31937' }\n});\nslide.addText('Key Financials \u0026 Valuation', {\n  x: 0.45, y: 3.7, w: 4.5, h: 0.3, fontSize: 14, bold: true, fontFace: 'Arial'\n});\n\n// Financial data table\nslide.addTable([\n  [{ text: 'Metric', options: { bold: true, fill: '003366', color: 'FFFFFF' } },\n   { text: 'FY24', options: { bold: true, fill: '003366', color: 'FFFFFF' } },\n   { text: 'FY25E', options: { bold: true, fill: '003366', color: 'FFFFFF' } }],\n  ['Revenue', '$51.4B', '$54.2B'],\n  ['YoY Growth', '+6.0%', '+5.5%'],\n  ['EBITDA', '$8.9B', '$9.5B'],\n  ['EBITDA Margin', '17.3%', '17.5%'],\n  ['EPS', '$3.42', '$3.75'],\n  ['Market Cap', '$185B', '—'],\n  ['EV/EBITDA', '12.5x', '11.7x']\n], {\n  x: 0.45, y: 4.1, w: 4.3, h: 3.0,  // Below header in bottom-left quadrant\n  fontFace: 'Arial', fontSize: 10,\n  border: { pt: 0.5, color: 'CCCCCC' },\n  valign: 'middle',\n  colW: [1.8, 1.25, 1.25]  // Column widths\n});\n```\n\n❌ **Incorrect:** Plain text like `Note: FY2024 revenue growth +1.0%, Net Income $5.1B...`\n❌ **Incorrect:** HTML tables that don't convert properly to PowerPoint\n\nFor projections, use Bear/Base/Bull case scenarios in structured tables.\n\n---\n\n## Quality Checklist\n\n### First Page\n- [ ] Title section with company name, ticker, industry\n- [ ] Exactly 4 equal quadrants below title\n- [ ] All bullets, no paragraphs, 1 line max each\n- [ ] Financials in table or chart (not both)\n\n### All Slides\n- [ ] No text overflow or cutoff\n- [ ] Consistent fonts and colors throughout\n- [ ] Charts render correctly\n- [ ] No placeholder text - all actual data\n- [ ] Consistent scaling ($mm or $bn, not mixed)\n- [ ] Sources cited\n- [ ] Investment banking quality (GS/MS/JPM standard)\n\n**Note:** Reference the **PPTX skill** for PowerPoint file creation.\n"},"import":{"commit_sha":"9affc6e683bbaf66361058117027cf5a50bf1861","imported_at":"2026-05-18T20:09:40Z","license_text":"\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n","owner":"anthropics","repo":"anthropics/financial-services","source_url":"https://github.com/anthropics/financial-services/tree/9affc6e683bbaf66361058117027cf5a50bf1861/plugins/vertical-plugins/investment-banking/skills/strip-profile"}},"content_hash":[231,126,33,90,211,154,140,251,185,138,213,80,13,174,157,191,195,190,201,193,116,137,11,121,1,235,156,183,53,116,176,121],"trust_level":"unsigned","yanked":false}
