Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

amiport

amiport에는 bdgscotland에서 수집한 skills 19개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
19
Stars
28
업데이트
2026-04-14
Forks
2
직업 범위
직업 카테고리 3개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

capture-learning
소프트웨어 개발자

Capture a lesson learned from a porting session and route it to the right enforcement mechanism. Use when a bug, mistake, or process failure occurs that should be prevented in future sessions.

2026-04-14
post-news
소프트웨어 개발자

Publish a news entry to the amiport site. Appends to site/data/news.json, validates, deploys via site-manager, and clears the activity cache. Use when announcing a release, project update, milestone, or behind-the-scenes note.

2026-04-13
analyze-source
소프트웨어 개발자

Analyze C source code for Amiga portability issues. Scans headers, system calls, and language features to produce a structured porting report. Use when starting a new port or evaluating whether a project can be ported.

2026-04-13
transform-source
소프트웨어 개발자

Transform C source code for Amiga compatibility. Replaces POSIX calls with Amiga equivalents or posix-shim wrappers. Use after analyze-source has identified issues.

2026-04-13
batch-port-parallel
소프트웨어 개발자

Dispatch multiple ports from the catalog in parallel using specialized agents. Runs the same pipeline stages as /port-project but overlaps them across ports for ~3x throughput.

2026-04-12
port-project
소프트웨어 개발자

Port an entire C project to AmigaOS. Runs the full pipeline — analyze, transform, build, test, package. Use to port a new project from scratch.

2026-04-12
port-status
네트워크·컴퓨터 시스템 관리자

Show comprehensive status of a single port — build, tests, reviews, catalog, site data, documentation

2026-04-11
extend-shim
소프트웨어 개발자

Add a new POSIX function to the amiport shim (Tier 1) or emulation (Tier 2) library. Researches AmigaOS APIs first, then implements with proper mapping. Looks up the POSIX spec, classifies the tier, writes the implementation + header + test, and rebuilds the library.

2026-03-26
batch-port
소프트웨어 개발자

Dispatch the next ready porting candidate from the catalog. Session-resilient — dispatches ONE port per invocation. Re-run to continue the batch.

2026-03-25
catalog-status
소프트웨어 개발자

Print the porting tech tree catalog dashboard — readiness tier distribution, top shim unlock opportunities, and next batch recommendation.

2026-03-25
test-amiga
소프트웨어 품질 보증 분석가·테스터

Test compiled Amiga binaries using vamos (virtual AmigaOS runtime). Verifies correct execution and output comparison. Use after a successful build.

2026-03-24
build-amiga
소프트웨어 개발자

Cross-compile C source for Amiga using bebbo-gcc or VBCC in Docker. Manages compiler flags, linking against posix-shim, and packaging. Use after source transformation.

2026-03-23
c89-reference
소프트웨어 개발자

C89/ANSI C language constraints for AmigaOS porting. Use when writing or reviewing C code for this project. Loads the list of C99+ features that are NOT available, libnix function availability, and common mistakes agents make when writing C89 code.

2026-03-23
crash-patterns
소프트웨어 개발자

Load the crash patterns knowledge base for AmigaOS debugging. Contains documented crash signatures, root causes, and fixes discovered across all ports. Use when debugging crashes, reviewing code for crash risks, or writing transformations that touch memory/IO/exit paths.

2026-03-23
libnix-reference
소프트웨어 개발자

Load the libnix function availability reference. Lists all 700+ functions available in libnix (the -noixemul C runtime), including which are present and which are missing. Use when checking whether a C standard library function is available on AmigaOS, or when a linker reports undefined symbols.

2026-03-23
review-amiga
소프트웨어 품질 보증 분석가·테스터

Amiga-specific code review for ported programs. Checks for stack overflow risks, memory allocation patterns, BPTR handling, library cleanup, 68k alignment issues, and AmigaOS conventions. Use after porting or before publishing to Aminet.

2026-03-23
amiga-api-lookup
소프트웨어 개발자

Look up AmigaOS API documentation from the ADCD reference library. Use when writing or reviewing code that calls AmigaOS functions (exec.library, dos.library, timer.device, intuition, graphics, etc.), designing shim functions, or needing to understand struct layouts, function signatures, or usage patterns. Also use when designing new AmigaOS-native features like profilers, crash handlers, or device drivers.

2026-03-22
write-arexx
소프트웨어 개발자

Write ARexx scripts for AmigaOS automation, testing, and inter-process communication. Use when creating or modifying .rexx files, writing FS-UAE test harnesses, or automating Amiga workflows.

2026-03-22
debug-amiga
소프트웨어 개발자

Debug a crashed Amiga port using Enforcer hit capture and autonomous fix loop. Runs test-fsemu in debug mode, captures crashes, and dispatches the debug-agent to fix them. Use after a port builds but crashes at runtime.

2026-03-21