Claude-skill-registry ai-collaboration-standards-asiaostrich-universal-dev-standa
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/ai-collaboration-standards-asiaostrich-universal-dev-standa" ~/.claude/skills/majiayu000-claude-skill-registry-ai-collaboration-standards-asiaostrich-universa && rm -rf "$T"
manifest:
skills/data/ai-collaboration-standards-asiaostrich-universal-dev-standa/SKILL.mdsource content
AI Collaboration Standards
Language: English | 繁體中文
Version: 1.1.0 Last Updated: 2026-01-25 Applicability: Claude Code Skills
Purpose
This skill ensures AI assistants provide accurate, evidence-based responses without hallucination.
Quick Reference
Unified Tag System
This skill uses two complementary tag categories:
Category 1: Certainty Tags (for analyzing existing content)
| Tag | Use When |
|---|---|
| Direct evidence from code/docs |
| Logical deduction from evidence |
| Based on common patterns (needs verification) |
| Information not available |
| Requires user clarification |
Category 2: Derivation Tags (for generating new content)
| Tag | Use When |
|---|---|
| Direct content from spec/requirement |
| Transformed from source content |
| AI-generated structure |
| Requires human implementation |
When to Use Which:
| Workflow | Primary Tags |
|---|---|
| Code analysis | Certainty Tags |
| Reverse engineering | Certainty Tags |
| Forward derivation | Derivation Tags |
| Spec generation | Derivation Tags |
Source Types
| Source Type | Tag | Reliability |
|---|---|---|
| Project Code | | ⭐⭐⭐⭐⭐ Highest |
| Project Docs | | ⭐⭐⭐⭐ High |
| External Docs | | ⭐⭐⭐⭐ High |
| Web Search | | ⭐⭐⭐ Medium |
| AI Knowledge | | ⭐⭐ Low |
| User Provided | | ⭐⭐⭐ Medium |
Core Rules
- Evidence-Based Only: Only analyze content that has been explicitly read
- Cite Sources: Include file path and line number for code references
- Classify Certainty: Tag all statements with certainty level
- Always Recommend: When presenting options, include a recommended choice with reasoning
Detailed Guidelines
For complete standards, see:
Examples
✅ Correct Response
[Confirmed] src/auth/service.ts:45 - JWT validation uses 'jsonwebtoken' library [Inferred] Based on repository pattern in src/repositories/, likely using dependency injection [Need Confirmation] Should the new feature support multi-tenancy?
❌ Incorrect Response
The system uses Redis for caching (code not reviewed) The UserService should have an authenticate() method (API not verified)
✅ Correct Option Presentation
There are three options: 1. Redis caching 2. In-memory caching 3. File-based caching **Recommended: Option 1 (Redis)**: Given the project already has Redis infrastructure and needs cross-instance cache sharing, Redis is the most suitable choice.
❌ Incorrect Option Presentation
There are three options: 1. Redis caching 2. In-memory caching 3. File-based caching Please choose one.
Checklist
Before making any statement:
- Source Verified - Have I read the actual file/document?
- Source Type Tagged - Did I specify
,[Source: Code]
, etc.?[Source: External] - Reference Cited - Did I include file path and line number?
- Certainty Classified - Did I tag as
,[Confirmed]
, etc.?[Inferred] - No Fabrication - Did I avoid inventing APIs, configs, or requirements?
- Recommendation Included - When presenting options, did I include a recommended choice?
Configuration Detection
This skill supports project-specific language configuration for certainty tags.
Detection Order
- Check
for "Certainty Tag Language" sectionCONTRIBUTING.md - If found, use the specified language (English / 中文)
- If not found, default to English tags
First-Time Setup
If no configuration found and context is unclear:
- Ask the user: "This project hasn't configured certainty tag language preference. Which would you like to use? (English / 中文)"
- After user selection, suggest documenting in
:CONTRIBUTING.md
## Certainty Tag Language This project uses **[English / 中文]** certainty tags. <!-- Options: English | 中文 -->
Configuration Example
In project's
CONTRIBUTING.md:
## Certainty Tag Language This project uses **English** certainty tags. ### Tag Reference - [Confirmed] - Direct evidence from code/docs - [Inferred] - Logical deduction from evidence - [Assumption] - Based on common patterns - [Unknown] - Information not available - [Need Confirmation] - Requires user clarification
Related Standards
Version History
| Version | Date | Changes |
|---|---|---|
| 1.1.0 | 2026-01-25 | Added: Unified Tag System with Certainty and Derivation tag categories |
| 1.0.0 | 2025-12-24 | Added: Standard sections (Purpose, Related Standards, Version History, License) |
License
This skill is released under CC BY 4.0.
Source: universal-dev-standards