소스 정보
- 저장소
- personamanagmentlayer/pcl
- 최근 소스 활동
- 2026년 1월 19일 22:04
- 감지된 SKILL.md 언어
- 영어
- 스타
- 40
- 포크
- 9
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/personamanagmentlayer/pcl --skill lawyer-expert명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Expert in Persona Control Language (PCL) - language design, compiler architecture, runtime systems, and ecosystem development
Expert system for designing, creating, and validating PCL skills with comprehensive domain knowledge extraction
Expert-level Docker containerization, image optimization, and container orchestration. Use this skill for building efficient Docker images, managing containers, and implementing Docker best practices.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | lawyer-expert |
| version | 1.0.0 |
| description | Expert-level legal systems, contracts, compliance, and legal technology |
| category | professional |
| tags | ["legal","contracts","compliance","law","legal-tech"] |
| allowed-tools | ["Read","Write","Edit"] |
Expert guidance for legal systems, contract law, regulatory compliance, and legal technology implementation.
from datetime import datetime, timedelta
from enum import Enum
from typing import List, Optional
class ContractStatus(Enum):
DRAFT = "draft"
UNDER_REVIEW = "under_review"
NEGOTIATION = "negotiation"
APPROVED = "approved"
EXECUTED = "executed"
EXPIRED = "expired"
TERMINATED = "terminated"
class Contract:
def __init__(self, title: str, parties: List[str],
effective_date: datetime, expiration_date: datetime):
self.id = self.generate_contract_id()
self.title = title
self.parties = parties
self.effective_date = effective_date
self.expiration_date = expiration_date
self.status = ContractStatus.DRAFT
self.clauses = []
self.amendments = []
self.version = 1
def add_clause(self, clause_type: str, content: str):
"""Add clause to contract"""
self.clauses.append({
: clause_type,
: content,
: datetime.now()
})
():
.amendments.append({
: amendment,
: reason,
: datetime.now(),
: .version +
})
.version +=
() -> :
days_until_expiry = (.expiration_date - datetime.now()).days
{
: days_until_expiry < ,
: days_until_expiry,
: < days_until_expiry <
}
() -> :
(signatures) < (.parties):
ValueError()
.status = ContractStatus.EXECUTED
{
: .,
: datetime.now(),
: signatures,
: .status.value
}
class LegalDocumentGenerator:
def generate_nda(self, disclosing_party: str, receiving_party: str,
term_months: int = 24) -> str:
"""Generate Non-Disclosure Agreement"""
template = f"""
NON-DISCLOSURE AGREEMENT
This Non-Disclosure Agreement ("Agreement") is entered into as of {datetime.now().strftime('%B %d, %Y')}
BETWEEN:
{disclosing_party} ("Disclosing Party")
AND
{receiving_party} ("Receiving Party")
1. DEFINITION OF CONFIDENTIAL INFORMATION
The term "Confidential Information" means any and all information disclosed by the Disclosing Party...
2. OBLIGATIONS OF RECEIVING PARTY
The Receiving Party agrees to:
a) Hold Confidential Information in strict confidence
b) Not disclose to any third parties
c) Use solely for the purpose of evaluating potential business relationship
3. TERM
This Agreement shall remain in effect for {term_months} months from the date of execution.
4. RETURN OF MATERIALS
Upon termination, all Confidential Information must be returned or destroyed.
_________________________ _________________________
{disclosing_party} {receiving_party}
Date: _______________ Date: _______________
"""
return template
def generate_service_agreement(self, provider: str, client: str,
services: List[str], fee: float) -> str:
"""Generate Service Agreement"""
services_list = "\n".join([f" - {s}" for s in services])
template = f"""
PROFESSIONAL SERVICES AGREEMENT
Date:
PARTIES:
Service Provider:
Client:
1. SERVICES
Provider agrees to perform the following services:
2. COMPENSATION
Client agrees to pay $ for the services rendered.
3. PAYMENT TERMS
Payment due within 30 days of invoice date.
4. TERM AND TERMINATION
Either party may terminate with 30 days written notice.
5. CONFIDENTIALITY
Both parties agree to maintain confidentiality of proprietary information.
6. LIMITATION OF LIABILITY
Provider's liability limited to the amount of fees paid.
SIGNATURES:
_________________________ _________________________
"""
template
class ComplianceManager:
def __init__(self):
self.regulations = []
self.compliance_checks = []
def assess_gdpr_compliance(self, system_data: dict) -> dict:
"""Assess GDPR compliance"""
checks = {
"data_inventory": self.check_data_inventory(system_data),
"consent_management": self.check_consent_mechanisms(system_data),
"data_subject_rights": self.check_dsr_processes(system_data),
"data_protection": self.check_encryption(system_data),
"breach_notification": self.check_breach_procedures(system_data),
"dpo_appointed": system_data.get("dpo_appointed", False),
"privacy_policy": self.check_privacy_policy(system_data)
}
compliance_score = sum(checks.values()) / len(checks) * 100
return {
"compliant": compliance_score >= 90,
"score": compliance_score,
"checks": checks,
"recommendations": self.generate_recommendations(checks)
}
def assess_hipaa_compliance(self, healthcare_system: ) -> :
checks = {
: .check_access_controls(healthcare_system),
: .check_audit_logging(healthcare_system),
: .check_phi_encryption(healthcare_system),
: healthcare_system.get(, ),
: .check_training(healthcare_system),
: .check_risk_assessment(healthcare_system)
}
{
: (checks.values()),
: checks,
: [k k, v checks.items() v]
}
() -> :
data_collected = .join([ dt data_types])
❌ No contract version control ❌ Manual tracking of contract deadlines ❌ Storing sensitive data unencrypted ❌ No compliance documentation ❌ Ignoring data subject rights requests ❌ No legal review of automated documents ❌ Inadequate audit trails