소스 정보
- 저장소
- diegosouzapw/awesome-omni-skill
- 최근 소스 활동
- 2026년 2월 28일 04:11
- 감지된 SKILL.md 언어
- 영어
- 스타
- 50
- 포크
- 19
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill project-knowledge명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | project-knowledge |
| description | CEI architecture, modules, data flows, conventions, tech stack decisions |
Name: CEI-001 — Guide Interactif Pré-Projet ERP
Purpose: Evaluate ERP implementation readiness for small manufacturing enterprises
Users: SME manufacturers, CEI consultants, admins
Timeline: 50 hours forfait
Budget: Free access for users, admin requires auth
| Decision | Rationale |
|---|---|
| Chat + Evaluation hybrid | Chat for exploration, Evaluation for structured assessment |
| OpenAI GPT-4 | Quality > cost for strategic consulting |
| Weaviate RAG | Open source, semantic search, admin-friendly |
| PostgreSQL | Relational, JSON support, proven reliability |
| FastAPI | Async native, auto-docs, type safety |
| React + TypeScript | Type safety, ecosystem maturity |
| JWT auth | Stateless, simple for admin-only protection |
| Docker Compose | Easy deployment, local development |
User input → Frontend
→ POST /api/chat/message
→ Save message (PostgreSQL)
→ Query Weaviate (semantic search)
→ Build RAG context
→ Call OpenAI API (with context)
→ Stream response back
→ Save assistant message
→ Frontend displays with sources
User starts evaluation → Load questions (8 modules)
→ User answers module by module
→ Answers saved to PostgreSQL
→ On completion:
→ Scoring engine calculates scores
→ Generate recommendations
→ Create report
→ Return PDF
Admin uploads document → Upload to server
→ Save metadata (PostgreSQL)
→ Start pipeline:
→ Anonymize (OpenAI)
→ Whitelabel (OpenAI)
→ Normalize (OpenAI)
→ Enrich with summary (OpenAI)
→ Generate Q&A (OpenAI)
→ Chunk for RAG
→ Index into Weaviate
→ Publish
/api/[resource]/[action]lowercase_pluralsnake_casePascalCasecamelCase (Python: snake_case)PascalCase.tsxuseXxx# Core
DEBUG = False
ENVIRONMENT = "production"
# Database
DATABASE_URL = "postgresql+asyncpg://user:pass@localhost:5432/cei"
# Weaviate
WEAVIATE_HOST = "weaviate:8080"
WEAVIATE_SCHEME = "http"
# OpenAI
OPENAI_API_KEY = "sk-..."
OPENAI_MODEL = "gpt-4-turbo-preview"
OPENAI_EMBEDDING_MODEL = "text-embedding-3-small"
# Auth
JWT_SECRET = "your-secret-key-32-chars-min"
JWT_EXPIRE_HOURS = 24
# Frontend
VITE_API_URL = "https://api.yourdomain.com"
| Layer | Technology | Why |
|---|---|---|
| Frontend | React 18 + TS | Type safety, ecosystem |
| Styling | TailwindCSS 3 | Rapid, consistent UI |
| Build | Vite 5 | Fast HMR, modern |
| Backend | FastAPI 0.109 | Async, auto-docs |
| Database | PostgreSQL 16 | Relational, JSON |
| ORM | SQLAlchemy 2.0 | Async support, mature |
| Vector DB | Weaviate 1.24 | Open source, semantic |
| LLM | OpenAI API | Quality responses |
| Auth | JWT + bcrypt | Standard, simple |
| Container | Docker Compose | Multi-service |
# app/services/rag_service.py
from weaviate import Client
import weaviate.classes as wvc
class RAGService:
def __init__(self, weaviate_url: str):
self.client = Client(f"http://{weaviate_url}")
self._ensure_schema()
def _ensure_schema(self):
"""Create Weaviate schema if not exists"""
# Document class for indexed documents
self.client.collections.create(
name="Document",
description="CEI knowledge base documents",
vectorizer_config=wvc.Configure.Vectorizer.text2vec_openai(),
properties=[
wvc.Property(
name="title",
data_type=wvc.DataType.TEXT,
description="Document title"
),
wvc.Property(
name="content",
data_type=wvc.DataType.TEXT,
description="Document chunk content"
),
wvc.Property(
name="section",
data_type=wvc.DataType.TEXT,
description="Section title"
),
wvc.Property(
name="module",
data_type=wvc.DataType.TEXT,
description="Evaluation module (vision, org, data, etc.)"
),
wvc.Property(
name="document_id",
data_type=wvc.DataType.UUID,
description="PostgreSQL document ID"
),
wvc.Property(
name=,
data_type=wvc.DataType.INT,
description=
),
]
)
async def index_document(self, doc_id: str, chunks: List[str]):
"""Index document chunks into Weaviate"""
collection = self.client.collections.get("Document")
# Prepare objects
objects = []
for idx, chunk in enumerate(chunks):
obj = wvc.DataObject(
properties={
"title": f"Document {doc_id}",
"content": chunk,
"section": "unknown",
"module": "general",
"document_id": doc_id,
"chunk_index": idx,
}
)
objects.append(obj)
# Batch import
uuids = collection.data.insert_multiple(objects)
return uuids
async def search(self, query: str, limit: int = 3):
"""Semantic search in Weaviate"""
collection = self.client.collections.get("Document")
results = collection.query.near_text(
query=query,
limit=limit,
where_filter=wvc.Filter.by_property("module").not_equal("archived")
).objects
return [
{
"title": obj.properties["title"],
"content": obj.properties["content"],
: obj.properties[],
: obj.properties[],
: obj.metadata.score
}
obj results
]
():
collection = .client.collections.get()
collection.data.delete_many(
where=wvc.Filter.by_property().equal(doc_id)
)
def chunk_text(
content: str,
chunk_size: int = 800,
chunk_overlap: int = 100
) -> List[str]:
"""Smart chunking: split by paragraphs, then sentences"""
chunks = []
paragraphs = content.split('\n\n')
current_chunk = ""
for para in paragraphs:
if len(current_chunk) + len(para) < chunk_size:
current_chunk += para + "\n\n"
else:
if current_chunk:
chunks.append(current_chunk.strip())
# Handle overlap
if len(para) > chunk_overlap:
current_chunk = para
else:
current_chunk = para
if current_chunk:
chunks.append(current_chunk.strip())
return chunks
async def generate_rag_response(
self,
user_query: str,
chat_history: List[Dict],
openai_client: AsyncOpenAI
) -> Tuple[str, List[Dict]]:
"""Generate response with RAG context"""
# 1. Search knowledge base
context_docs = await self.search(user_query, limit=3)
# 2. Build context
context_text = "\n\n".join([
f"Source: {doc['title']}\n{doc['content']}"
for doc in context_docs
])
# 3. Build prompt
system_prompt = f"""Tu es un expert ERP pour PME manufacturières.
Contexte de connaissances:
{context_text}
Réponds en utilisant ce contexte. Cite les sources quand pertinent.
Sois concis et pratique."""
# 4. Call OpenAI
response = await openai_client.messages.create(
model="gpt-4-turbo-preview",
max_tokens=1024,
system=system_prompt,
messages=chat_history
)
return response.content[0].text, context_docs
# app/config.py
OPENAI_EMBEDDING_MODEL = "text-embedding-3-small"
OPENAI_EMBEDDING_DIMENSION = 1536
# Cost optimization: use smaller embeddings
# text-embedding-3-small: 1536 dimensions, cheap
# text-embedding-3-large: 3072 dimensions, more precise
# Search with confidence threshold
async def search_with_confidence(self, query: str, min_score: float = 0.5):
"""Only return results above confidence threshold"""
results = await self.search(query, limit=5)
return [
r for r in results
if r["score"] >= min_score
]