소스 정보
- 저장소
- zeenie-ai/OpenCompany
- 최근 소스 활동
- 2026년 7월 13일 11:20
- 감지된 SKILL.md 언어
- 영어
- 스타
- 797
- 포크
- 117
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/zeenie-ai/OpenCompany --skill agentic-loop-skill명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use this skill to generate well-branded interfaces and assets for OpenCompany (opencompany.sh), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Read, search, and write raw local data (files, CSV, JSON, PDF, HTML, XLSX, images) across the workspace and operator-mounted folders. Use when the user asks about local files, documents, spreadsheets, logs, or data on disk.
Understand images (describe content, answer questions about them, extract text/OCR) via a vision model. Use when the user asks what an image, screenshot, chart, scan, or photo contains.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | agentic-loop-skill |
| description | Autonomous decision loop with reflection and iteration |
| allowed-tools | delegate_to_ai_agent python_executor check_delegated_tasks |
| metadata | {"author":"opencompany","version":"1.0","category":"autonomous"} |
You are an autonomous agent capable of iterative problem-solving through self-delegation and reflection.
┌─────────────────────────────────────────────────────────────┐
│ AGENTIC LOOP │
├─────────────────────────────────────────────────────────────┤
│ │
│ OBSERVE ──▶ THINK ──▶ ACT ──▶ REFLECT ──▶ DECIDE │
│ ▲ │ │
│ │ │ │
│ └──────────── (if not done) ◀──────────────┘ │
│ │
└─────────────────────────────────────────────────────────────┘
OBSERVE: What is the current state?
THINK: What should I do next?
ACT: Execute ONE focused action
REFLECT: Did it work?
DECIDE: Continue or complete?
To iterate on complex tasks, delegate to yourself with updated context:
{
"task": "Continue: [specific next step description]",
"context": "Iteration: 2/5\nPrevious result: [summary]\nCurrent state: [state]\nRemaining: [what's left to do]"
}
Iteration: {current}/{max}
Goal: {original goal}
Progress: {what has been accomplished}
State: {current data/results}
Errors: {any errors encountered}
Next: {specific next action}
Task: "Research the top 3 programming languages of 2024, compare their use cases"
{
"task": "Continue: Search for programming language rankings",
"context": "Iteration: 1/4\nGoal: Compare top 3 programming languages\nProgress: Starting research\nNext: Use web_search to find current rankings"
}
Action: Use web_search tool Result: Found TIOBE index - Python, C, C++
{
"task": "Continue: Research Python use cases",
"context": "Iteration: 2/4\nGoal: Compare top 3 programming languages\nProgress: Identified top 3 (Python, C, C++)\nState: Rankings found\nNext: Research Python use cases"
}
Action: Use web_search for Python applications Result: AI/ML, web development, automation, data science
{
"task": "Continue: Research C and C++ use cases",
"context": "Iteration: 3/4\nGoal: Compare top 3 programming languages\nProgress: Python use cases complete\nState: Python = AI/ML, web, automation\nNext: Research C and C++ use cases"
}
Action: Use web_search for C/C++ applications Result: Systems programming, embedded, games, performance-critical
{
"task": "Continue: Create comparison summary",
"context": "Iteration: 4/4\nGoal: Compare top 3 programming languages\nProgress: All research complete\nState: Python=AI/ML/Web, C=Systems/Embedded, C++=Games/Performance\nNext: Generate final comparison"
}
Action: Generate comprehensive comparison Result: Complete comparison delivered to user
STOP and return when:
CONTINUE when:
Task: "Calculate fibonacci(50) and factorize it"
# Use code mode for computation
def fib(n):
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a
result = fib(50)
print(f"Fibonacci(50) = {result}")
# Result: 12586269025
{
"task": "Continue: Factorize the fibonacci result",
"context": "Iteration: 2/3\nGoal: Calculate and factorize fib(50)\nProgress: fib(50) = 12586269025\nNext: Find prime factors"
}
def factorize(n):
factors = []
d = 2
while d * d <= n:
while n % d == 0:
factors.append(d)
n //= d
d += 1
if n > 1:
factors.append(n)
return factors
n = 12586269025
factors = factorize(n)
print(f"Prime factors: {factors}")
print(f"Verification: {eval('*'.join(map(str, factors)))}")
Final response to user with both results
When using self-delegation:
task_completed eventThis enables visual tracking of the loop in the workflow canvas.
If an iteration fails:
{
"task": "Retry: [same task with different approach]",
"context": "Iteration: 2/5 (retry 1)\nGoal: [original goal]\nProgress: [what worked]\nError: [what failed and why]\nNew approach: [different strategy]"
}