<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Recently Active Topics]]></title><description><![CDATA[A list of topics that have been active within the past 24 hours]]></description><link>https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/recent</link><generator>RSS for Node</generator><lastBuildDate>Tue, 30 Jun 2026 05:46:29 GMT</lastBuildDate><atom:link href="https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/recent.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 17 Jun 2026 01:18:57 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Skills - email2jira]]></title><description><![CDATA[<hr />
<h2>name: email2jira<br />
description: Convert incoming email requests to Jira tickets for Team China DevSecOps. Use this skill when the user asks to check emails for requests, process DevSecOps requests from email, create Jira tickets from emails, or mentions "email2jira", "email to jira", "request emails", or wants to triage incoming requests sent to Team China DevSecOps. Also trigger when the user mentions checking inbox for team requests or converting email requests to tickets.</h2>
<h1>Email to Jira Ticket Workflow</h1>
<p dir="auto">This skill monitors Outlook emails for requests sent to Team China DevSecOps and creates corresponding Jira tickets in the CDTT project.</p>
<h2>When to Use</h2>
<ul>
<li>User asks to "check emails for requests" or "process email requests"</li>
<li>User wants to create Jira tickets from incoming emails</li>
<li>User mentions Team China DevSecOps email requests</li>
<li>User asks to triage or handle incoming requests</li>
</ul>
<h2>Workflow</h2>
<h3>Step 1: Search for Request Emails</h3>
<p dir="auto">Search Outlook for emails matching these criteria:</p>
<ul>
<li>Subject contains "request" (case-insensitive)</li>
<li>Recipients (To or CC) include "Team China DevSecOps"</li>
</ul>
<p dir="auto">Use the Outlook MCP tools:</p>
<pre><code>outlook_outlook_search_emails with query: "request"
</code></pre>
<p dir="auto">Then filter results to only include emails where:</p>
<ul>
<li>The <code>to</code> or <code>cc</code> field contains "Team China DevSecOps" or "devsecops" (the team's email alias)</li>
<li>The email hasn't already been processed (check for existing Jira tickets with the same subject)</li>
</ul>
<h3>Step 2: Read and Understand Each Email</h3>
<p dir="auto">For each matching email:</p>
<ol>
<li>Get the full email content using <code>outlook_outlook_get_email_content</code></li>
<li>Extract key information:
<ul>
<li><strong>Requester</strong>: The sender's name and email</li>
<li><strong>Subject</strong>: Email subject line (will become Jira summary)</li>
<li><strong>Request Details</strong>: The email body content</li>
<li><strong>Date</strong>: When the request was received</li>
<li><strong>Attachments</strong>: Note if there are any attachments</li>
</ul>
</li>
</ol>
<h3>Step 3: Get Active Sprint</h3>
<p dir="auto">Before creating tickets, find the current active sprint for the CDTT project:</p>
<pre><code>get_project_sprints with:
  - project_key: "CDTT"
  - state: "active"
</code></pre>
<p dir="auto">This returns the active sprint(s). Use the first active sprint found for ticket assignment.</p>
<h3>Step 4: Create Jira Ticket</h3>
<p dir="auto">For each request email, create a Jira Story with:</p>
<p dir="auto"><strong>Project</strong>: CDTT<br />
<strong>Issue Type</strong>: Story<br />
<strong>Assignee</strong>: XXX(<a href="mailto:xxx@ford.com" rel="nofollow ugc">xxx@ford.com</a>) — assigned via <code>jira_assign_issue</code> after creation<br />
<strong>Epic Link</strong>: CDTT-33xx<br />
<strong>Sprint</strong>: (use the active sprint name from Step 3)</p>
<p dir="auto"><strong>Summary Format</strong>:</p>
<pre><code>[Email Request] {Original Email Subject}
</code></pre>
<p dir="auto"><strong>Description Format</strong>:</p>
<pre><code>h2. Request Source
*From*: {Sender Name} ({Sender Email})
*Received*: {Email Date}
*Original Subject*: {Subject}

h2. Request Details
{Email Body Content}

----
_This ticket was auto-generated from an email request sent to Team China DevSecOps._
</code></pre>
<p dir="auto">Use the Jira MCP tool:</p>
<pre><code>jira_create_issue with:
  - project_key: "CDTT"
  - issue_type: "Story"
  - summary: "[Email Request] {subject}"
  - description: {formatted description}
  - epic_link: "CDTT-33xx"
  - sprint_name: "{active_sprint_name}"  # from Step 3
</code></pre>
<h3>Step 5: Assign to XXX</h3>
<p dir="auto">After creating the ticket, assign it using the account email (the <code>assignee</code> parameter in <code>jira_create_issue</code> does not work reliably):</p>
<pre><code>jira_assign_issue with:
  - issue_key: "CDTT-XXXX"
  - assignee_email: "xxx@ford.com"
</code></pre>
<h3>Step 6: Verify and Fix Sprint Assignment</h3>
<p dir="auto">After creating the ticket, the sprint may not be set correctly due to Jira API limitations. Always verify and fix:</p>
<pre><code>move_to_sprint with:
  - issue_key: "CDTT-XXXX"
  - sprint_name: "{active_sprint_name}"  # from Step 3
</code></pre>
<p dir="auto">This ensures the ticket is added to the active sprint.</p>
<h3>Step 7: Mark Email as Processed (Optional)</h3>
<p dir="auto">After successfully creating the Jira ticket:</p>
<ol>
<li>Flag the email using <code>outlook_outlook_flag_email</code> to indicate it's been processed</li>
<li>Optionally reply to the sender confirming the ticket was created (ask user first)</li>
</ol>
<h3>Step 8: Report Results</h3>
<p dir="auto">Provide a summary to the user:</p>
<ul>
<li>Number of emails found matching criteria</li>
<li>Number of Jira tickets created</li>
<li>Active sprint name used</li>
<li>List of ticket keys with links</li>
<li>Any emails that couldn't be processed and why</li>
</ul>
<h2>Example Output</h2>
<pre><code>Active Sprint: Devops 202606

Found 3 request emails for Team China DevSecOps:

1. "Request: New Jenkins pipeline for Project X"
   From: john.doe@ford.com
   -&gt; Created CDTT-1234, linked to Epic CDTT-3365, added to active sprint

2. "Request: Access to production environment" 
   From: jane.smith@ford.com
   -&gt; Created CDTT-1235, linked to Epic CDTT-3365, added to active sprint

3. "Request: Help with Docker deployment"
   From: bob.wilson@ford.com
   -&gt; Created CDTT-1236, linked to Epic CDTT-3365, added to active sprint

All 3 tickets created, assigned to Jian Liu, linked to Epic CDTT-3365, and added to active sprint (Devops 202606).
</code></pre>
<h2>Error Handling</h2>
<ul>
<li>If Outlook search fails, report the error and suggest checking MCP connectivity</li>
<li>If no active sprint found, warn the user and create ticket without sprint assignment</li>
<li>If Jira ticket creation fails, save the email details and report which ones failed</li>
<li>If sprint assignment fails, report the issue but keep the created ticket</li>
<li>If an email appears to be a duplicate request (similar subject to existing ticket), flag it and ask user before creating</li>
</ul>
]]></description><link>https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/topic/8/skills-email2jira</link><guid isPermaLink="true">https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/topic/8/skills-email2jira</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Wed, 17 Jun 2026 01:18:57 GMT</pubDate></item><item><title><![CDATA[Topic for testing]]></title><description><![CDATA[Test posting as a guest
]]></description><link>https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/topic/7/topic-for-testing</link><guid isPermaLink="true">https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/topic/7/topic-for-testing</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Mon, 15 Jun 2026 01:20:11 GMT</pubDate></item><item><title><![CDATA[Cloud Foundation 团队 AI 使用情况调查报告]]></title><description><![CDATA[<hr />
<h1>核心发现</h1>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>关键指标</th>
<th>数值</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>问卷回收率</td>
<td><strong>95.8%</strong></td>
<td>23/24人参与</td>
</tr>
<tr>
<td>AI工具使用率</td>
<td><strong>100%</strong></td>
<td>全员使用AI工具</td>
</tr>
<tr>
<td>每日使用者</td>
<td><strong>91.3%</strong></td>
<td>21人每天多次使用</td>
</tr>
<tr>
<td>GitHub Copilot覆盖率</td>
<td><strong>95.7%</strong></td>
<td>22人在使用</td>
</tr>
<tr>
<td>平均每周节省时间</td>
<td><strong>6.3小时</strong></td>
<td>年化约7,000人时</td>
</tr>
<tr>
<td>未来使用意愿</td>
<td><strong>100%</strong></td>
<td>全员愿意加大使用</td>
</tr>
</tbody>
</table>
<blockquote>
<p dir="auto"><strong>核心结论：</strong> 团队AI使用成熟度高，年化节省约<strong>7,000人时</strong>，<strong>100%成员认为AI潜力巨大</strong></p>
</blockquote>
<hr />
<p dir="auto">&lt;!-- _class: dense columns --&gt;</p>
<h1>AI工具使用现状</h1>
<p dir="auto">&lt;div&gt;</p>
<p dir="auto"><strong>使用频率</strong></p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>频率</th>
<th>人数</th>
<th>占比</th>
</tr>
</thead>
<tbody>
<tr>
<td>每天多次</td>
<td>21</td>
<td>91.3%</td>
</tr>
<tr>
<td>每周2-3次</td>
<td>1</td>
<td>4.35%</td>
</tr>
<tr>
<td>每周1次或更少</td>
<td>1</td>
<td>4.35%</td>
</tr>
</tbody>
</table>
<p dir="auto"><strong>Copilot深度</strong> — 高活跃(≥50%): 13人(57%)</p>
<p dir="auto">&lt;/div&gt;<br />
&lt;div&gt;</p>
<p dir="auto"><strong>工具覆盖率</strong></p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>工具</th>
<th>使用率</th>
</tr>
</thead>
<tbody>
<tr>
<td>GitHub Copilot</td>
<td>95.7%</td>
</tr>
<tr>
<td>ChatGPT/GPT-4</td>
<td>60.9%</td>
</tr>
<tr>
<td>Claude</td>
<td>47.8%</td>
</tr>
<tr>
<td>Ford LLM / Gemini / Cursor</td>
<td>4-9%</td>
</tr>
</tbody>
</table>
<p dir="auto">&lt;/div&gt;</p>
<hr />
<p dir="auto">&lt;!-- _class: dense columns --&gt;</p>
<h1>效果评估</h1>
<p dir="auto">&lt;div&gt;</p>
<p dir="auto"><strong>效果评分 (1-5分)</strong></p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>评估维度</th>
<th>平均分</th>
<th>高分占比</th>
</tr>
</thead>
<tbody>
<tr>
<td>提高工作效率</td>
<td>4.39</td>
<td>91%</td>
</tr>
<tr>
<td>帮助学习新知识</td>
<td>4.39</td>
<td>91%</td>
</tr>
<tr>
<td>提升工作质量</td>
<td>4.13</td>
<td>78%</td>
</tr>
<tr>
<td>输出质量满意度</td>
<td>4.00</td>
<td>83%</td>
</tr>
<tr>
<td>熟练使用程度</td>
<td>3.78</td>
<td>74%</td>
</tr>
<tr>
<td>了解公司政策</td>
<td>3.43</td>
<td>57%</td>
</tr>
</tbody>
</table>
<p dir="auto">&lt;/div&gt;<br />
&lt;div&gt;</p>
<p dir="auto"><strong>每周节省时间</strong></p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>时间范围</th>
<th>人数</th>
<th>占比</th>
</tr>
</thead>
<tbody>
<tr>
<td>10小时以上</td>
<td>5</td>
<td>22%</td>
</tr>
<tr>
<td>5-10小时</td>
<td>7</td>
<td>30%</td>
</tr>
<tr>
<td>2-5小时</td>
<td>8</td>
<td>35%</td>
</tr>
<tr>
<td>1-2小时</td>
<td>3</td>
<td>13%</td>
</tr>
</tbody>
</table>
<p dir="auto"><strong>年化节省：~7,000人时</strong><br />
<em>(23人×6.3h/周×48周)</em></p>
<p dir="auto">&lt;/div&gt;</p>
<hr />
<p dir="auto">&lt;!-- _class: columns --&gt;</p>
<h1>障碍与需求分析</h1>
<p dir="auto">&lt;div&gt;</p>
<p dir="auto"><strong>主要障碍 Top 3</strong></p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>障碍因素</th>
<th>高阻碍人数</th>
</tr>
</thead>
<tbody>
<tr>
<td>数据隐私/安全顾虑</td>
<td>12人 (52%)</td>
</tr>
<tr>
<td>AI输出质量不稳定</td>
<td>12人 (52%)</td>
</tr>
<tr>
<td>缺乏工具访问权限</td>
<td>10人 (43%)</td>
</tr>
</tbody>
</table>
<p dir="auto"><em>其他障碍（整合困难、政策不清等）阻碍程度较低</em></p>
<p dir="auto">&lt;/div&gt;<br />
&lt;div&gt;</p>
<p dir="auto"><strong>最需要的支持 Top 3</strong></p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>支持类型</th>
<th>选择人数</th>
</tr>
</thead>
<tbody>
<tr>
<td>更多工具访问权限</td>
<td>18人 (78%)</td>
</tr>
<tr>
<td>最佳实践案例库</td>
<td>14人 (61%)</td>
</tr>
<tr>
<td>清晰的使用政策指引</td>
<td>10人 (43%)</td>
</tr>
</tbody>
</table>
<p dir="auto"><em>其他：培训课程(39%)、经验分享(30%)</em></p>
<p dir="auto">&lt;/div&gt;</p>
<hr />
<h1>未来意愿与期望领域</h1>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>使用意愿</th>
<th>人数</th>
<th></th>
<th>潜力评估</th>
<th>人数</th>
<th></th>
<th>期望领域</th>
<th>占比</th>
</tr>
</thead>
<tbody>
<tr>
<td>5-非常愿意</td>
<td>19</td>
<td></td>
<td>5-潜力巨大</td>
<td>19</td>
<td></td>
<td>代码编写调试</td>
<td>39%</td>
</tr>
<tr>
<td>4-比较愿意</td>
<td>4</td>
<td></td>
<td>4-较大潜力</td>
<td>4</td>
<td></td>
<td>重复任务自动化</td>
<td>26%</td>
</tr>
<tr>
<td><strong>平均分</strong></td>
<td><strong>4.83</strong></td>
<td></td>
<td><strong>平均分</strong></td>
<td><strong>4.83</strong></td>
<td></td>
<td>方案设计决策</td>
<td>17%</td>
</tr>
</tbody>
</table>
<blockquote>
<p dir="auto"><strong>100%成员愿意加大AI使用，100%认为AI潜力巨大</strong></p>
</blockquote>
<p dir="auto"><strong>成功案例主题：</strong> 代码迁移(.NET升级) · 问题诊断(节省5天) · 成本优化(TMC AWS) · 自动化(Release/Monitor)</p>
<hr />
<h1>行动建议</h1>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>优先级</th>
<th>时间</th>
<th>行动项</th>
<th>目标</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/assets/plugins/nodebb-plugin-emoji/emoji/android/1f534.png?v=190ce3c8dca" class="not-responsive emoji emoji-android emoji--red_circle" style="height:23px;width:auto;vertical-align:middle" title="🔴" alt="🔴" /> 高</td>
<td>2周</td>
<td>发布AI使用合规指南</td>
<td>消除52%隐私顾虑，提升政策了解度</td>
</tr>
<tr>
<td><img src="https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/assets/plugins/nodebb-plugin-emoji/emoji/android/1f534.png?v=190ce3c8dca" class="not-responsive emoji emoji-android emoji--red_circle" style="height:23px;width:auto;vertical-align:middle" title="🔴" alt="🔴" /> 高</td>
<td>1月</td>
<td>建立最佳实践案例库</td>
<td>加速经验传播，满足61%需求</td>
</tr>
<tr>
<td>🟡 中</td>
<td>持续</td>
<td>组织Prompt技巧分享会</td>
<td>降低"输出不稳定"感知(当前52%)</td>
</tr>
<tr>
<td>🟡 中</td>
<td>3月</td>
<td>扩展AI工具访问权限</td>
<td>满足78%成员最大需求</td>
</tr>
<tr>
<td>🟢 低</td>
<td>6月</td>
<td>探索AI Agent工作流</td>
<td>深化自动化，响应26%期望</td>
</tr>
</tbody>
</table>
<p dir="auto"><strong>跟踪指标：</strong> 每日使用率(91%→95%) · 高活跃用户(57%→70%) · 政策了解度(57%→80%)</p>
<hr />
]]></description><link>https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/topic/6/cloud-foundation-团队-ai-使用情况调查报告</link><guid isPermaLink="true">https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/topic/6/cloud-foundation-团队-ai-使用情况调查报告</guid><dc:creator><![CDATA[ygong6]]></dc:creator><pubDate>Fri, 12 Jun 2026 02:27:57 GMT</pubDate></item><item><title><![CDATA[Welcome to your NodeBB!]]></title><description><![CDATA[<h3>Welcome to your brand new NodeBB forum!</h3>
<p dir="auto">This is what a topic and post looks like. As an administrator, you can edit the post's title and content.<br />
To customise your forum, go to the <a href="../../admin">Administrator Control Panel</a>. You can modify all aspects of your forum there, including installation of third-party plugins.</p>
<h4>Additional Resources</h4>
<ul>
<li><a href="https://docs.nodebb.org" rel="nofollow ugc">NodeBB Documentation</a></li>
<li><a href="https://community.nodebb.org" rel="nofollow ugc">Community Support Forum</a></li>
<li><a href="https://github.com/nodebb/nodebb" rel="nofollow ugc">Project repository</a></li>
</ul>
]]></description><link>https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/topic/1/welcome-to-your-nodebb</link><guid isPermaLink="true">https://nodebb.chinanorth3.cloudapp.chinacloudapi.cn/topic/1/welcome-to-your-nodebb</guid><dc:creator><![CDATA[Yiyang]]></dc:creator><pubDate>Thu, 18 Sep 2025 19:36:34 GMT</pubDate></item></channel></rss>