用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tractorjuice/arckit-kimi --skill arckit-score命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
[COMMUNITY] Assess EU Cloud Sovereignty Framework (v1.2.1) posture for cloud procurement — score the eight sovereignty objectives and record SEAL-level evidence
Document architectural decisions with options analysis and traceability
Design AI agent governance — oversight models, approval workflows, audit requirements, compliance mapping
基于 SOC 职业分类
正在显示 SKILL.md
| name | arckit-score |
| description | Score vendor proposals against evaluation criteria with persistent structured storage |
You are helping an enterprise architect score vendor proposals against evaluation criteria, compare vendors, and maintain an auditable scoring record.
$ARGUMENTS
Note: Before generating, scan
projects/for existing project directories. For each project, list allARC-*.mdartifacts, checkexternal/for reference documents, and check000-global/for cross-project policies. If no external docs exist but they would improve output, ask the user.
Parse the first word of $ARGUMENTS to determine which action to perform:
vendor <name> --project=NNNScore a specific vendor against the project's evaluation criteria.
Read the project's EVAL artifact (evaluation criteria):
/skill:arckit-evaluate firstRead vendor proposal from projects/{id}/vendors/{vendor-name}/:
.md or .pdf files as vendor proposal contentGovernment award history (if present): When scoring criteria related to vendor experience, track
record, capability, or past performance, check for a ## Government Award History section in
projects/{id}/vendors/{slug}-profile.md (or a CMPT Competitor Landscape artefact in research/).
If it records UK government contract wins for this vendor (values, buyers, notice URLs), cite that as
objective evidence for the relevant criterion's score, carrying the caveat that awarded value is not
actual spend (it evidences track record, not committed cost). Run /skill:arckit-competitors --supplier '<vendor>' to generate it if absent.
Read existing scores from projects/{id}/vendors/scores.json (if exists)
Score each criterion using the 0-3 rubric:
| Score | Meaning | Description |
|---|---|---|
| 0 | Not Met | No evidence of capability; does not address the criterion |
| 1 | Partially Met | Some evidence but significant gaps remain |
| 2 | Met | Fully addresses the criterion with adequate evidence |
| 3 | Exceeds | Goes beyond requirements with strong differentiation |
For each score, provide:
Calculate weighted totals:
totalWeighted = sum(score * weight) / sum(weight)totalRaw = sum(scores)maxPossible = 3 * number_of_criteriaWrite scores to projects/{id}/vendors/scores.json:
{
"projectId": "001",
"lastUpdated": "2026-03-08T10:00:00Z",
"criteria": [
{ "id": "C-001", "name": "Technical Capability", "weight": 0.25, "category": "Technical" }
],
"vendors": {
"acme-cloud": {
"displayName": "Acme Cloud Services",
"scoredDate": "2026-03-08T10:00:00Z",
"scoredBy": "Architecture Team",
"scores": [
{ "criterionId"
Output a markdown summary to console showing all scores with evidence.
compare --project=NNNGenerate a side-by-side vendor comparison.
Read projects/{id}/vendors/scores.json — if it doesn't exist or has fewer than 2 vendors, explain what's needed
Output comparison table:
## Vendor Comparison: Project 001
| Criterion | Weight | Acme Cloud | Beta Systems | Gamma Tech |
|-----------|--------|------------|--------------|------------|
| Technical Capability | 25% | 3 | 2 | 2 |
| Security Compliance | 20% | 2 | 3 | 1 |
| **Weighted Total** | | **2.45** | **2.30** | **1.95** |
### Recommendation
**Acme Cloud** scores highest overall (2.45/3.00).
### Risk Summary
- Acme Cloud: [aggregated risks from scoring]
- Beta Systems: [aggregated risks from scoring]
### Sensitivity Analysis
Show how the ranking changes if the top-weighted criterion weight is adjusted by +/- 10%.
Include sensitivity analysis: Vary the weight of each criterion by ±10% to identify which criteria are decisive.
audit --project=NNNShow the scoring audit trail.
Read projects/{id}/vendors/scores.json
Output chronological audit:
## Scoring Audit Trail: Project 001
| Date | Vendor | Scored By | Weighted Score | Criteria Count |
|------|--------|-----------|----------------|----------------|
| 2026-03-08 | Acme Cloud | Architecture Team | 2.45/3.00 | 8 |
| 2026-03-07 | Beta Systems | Architecture Team | 2.30/3.00 | 8 |
Show total vendors scored, date range, and whether any vendors are missing scores.
If no recognised action, show usage:
Usage: /skill:arckit-score <action> [options]
Actions:
vendor <name> --project=NNN Score a vendor against evaluation criteria
compare --project=NNN Side-by-side vendor comparison
audit --project=NNN Scoring audit trail
Examples:
/skill:arckit-score vendor "Acme Cloud" --project=001
/skill:arckit-score compare --project=001
/skill:arckit-score audit --project=001
After completing this command, consider running:
/skill:arckit-evaluate -- Create or update evaluation framework before scoring (when No EVAL artifact exists for the project)/skill:arckit-sow -- Generate Statement of Work for selected vendor (when Vendor selection complete, ready for procurement)/skill:arckit-competitors -- Generate the vendor's UK award-history evidence for scoring (when UK government procurement context)