PHPackages                             goemktg/seat-custom-plugin - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. goemktg/seat-custom-plugin

ActiveSeat-plugin

goemktg/seat-custom-plugin
==========================

A custom plugin for NIS SeAT

v0.1.4(2mo ago)018MITPHP

Since Feb 22Pushed 2mo agoCompare

[ Source](https://github.com/goemktg/seat-custom-plugin)[ Packagist](https://packagist.org/packages/goemktg/seat-custom-plugin)[ RSS](/packages/goemktg-seat-custom-plugin/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (2)Versions (6)Used By (0)

Universal Development Template
==============================

[](#universal-development-template)

A standardized template for **any software development project** with **GitHub Copilot** integration and AI-powered workflows.

Features
--------

[](#features)

- 🤖 **AI-Optimized**: Pre-configured GitHub Copilot instructions, custom agents, and agent skills
- 📊 **Flexible Structure**: Adaptable to any project type (Web, Game, ML/AI, Modding, etc.)
- 🔄 **Reproducible**: Version control, configuration management, type-safe code practices
- 📝 **Documentation-First**: Structured documentation workflow with templates
- 🧩 **Extensible**: Agent skills for automated workflows and best practices
- 🌐 **Multi-Language**: Support for Korean + English documentation

Quick Start
-----------

[](#quick-start)

```
# Clone your project
git clone
cd

# Install dependencies (adapt to your project)
# Python: uv sync
# Node.js: npm install
# .NET: dotnet restore
# RimWorld Mod: See documents/BUILD_GUIDE.md

# Run your project (adapt to your project)
# Python: uv run python src/main.py
# Node.js: npm start
# .NET: dotnet run
# RimWorld Mod: Copy to mods folder and launch game
```

Project Structure
-----------------

[](#project-structure)

```
.
├── .github/
│   ├── agents/              # Custom Copilot agents (.agent.md)
│   ├── skills/              # Agent Skills (workflows)
│   ├── prompts/             # Reusable prompt templates
│   └── copilot-instructions.md  # Global Copilot instructions
├── src/                     # Source code (adapt to your project)
├── tests/                   # Test files
├── scripts/                 # Automation scripts
├── documents/               # Curated documentation
│   ├── final/               # Published reports
│   ├── drafts/              # Work in progress
│   ├── reference/           # External references
│   │   ├── papers/          # Academic paper summaries
│   │   └── technical/       # API docs, technical guides
│   ├── templates/           # Document templates
│   ├── PROJECT.md           # Project overview (start here!)
│   ├── AGENT_MANUAL.md      # AI agent operation manual
│   ├── BUILD_GUIDE.md       # Build instructions
│   ├── TEST_GUIDE.md        # Testing procedures
│   ├── QUICKSTART.md        # Quick start guide
│   └── CHANGELOG.md         # Change history
├── reference_codes/         # Reference code from external projects
├── results/                 # Execution results (if applicable)
├── logs/                    # Application logs
├── temp/                    # Temporary files (gitignored)
├── AGENTS.md                # Agent documentation (must-read!)
└── README.md                # This file

```

**Note**: The structure above is flexible. Adapt it to your project type:

- **RimWorld Mod**: See [documents/PROJECT.md](documents/PROJECT.md) for actual structure
- **ML/AI Research**: Add `configs/`, `results/`, `checkpoints/`
- **Web Development**: Add `public/`, `api/`, `frontend/`, `backend/`
- **Game Development**: Add `assets/`, `scenes/`, `prefabs/`

AI Agents
---------

[](#ai-agents)

This template includes pre-configured GitHub Copilot agents for common development tasks:

AgentDescription`@orchestrator`Autonomous Task Manager &amp; Master Planner`@fixer`Autonomous problem-solving &amp; execution agent`@doc-writer`Documentation Writer (creates structured docs)`@doc-reviewer`Documentation Reviewer (quality checks)`@code-generator`Code generation with best practices`@code-quality-reviewer`Code quality &amp; standards compliance`@validator`Verification and validation`@architect`System architecture &amp; design`@research-gemini`Implementation-focused research`@research-gpt`Theory-focused research`@research-claude`System/Safety-focused research`@planner-*`Strategic planning (Gemini/GPT/Claude variants)`@idea-generator-*`Ideation (Gemini/GPT/Claude variants)**See [AGENTS.md](AGENTS.md) for full documentation.**

Agent Skills
------------

[](#agent-skills)

Agent Skills are specialized workflows automatically loaded by Copilot:

SkillDescription`documentation`Standardized doc creation and formatting`code-review`Code quality checklist and best practices`deep-research`Recursive research workflow (STORM-style)`data-analysis`Result visualization and statistical comparison`skill-extension`Create and extend agent skills`external-skill-generation`Generate skills from external documentation**See [AGENTS.md](AGENTS.md) for usage examples.**

Documentation Workflow
----------------------

[](#documentation-workflow)

### Document Types

[](#document-types)

TypeLocationPurpose**Final Reports**`documents/final/`Completed, reviewed documents**Drafts**`documents/drafts/`Work in progress**Technical Reference**`documents/reference/technical/`API docs, guides**Paper Summaries**`documents/reference/papers/`Research summaries**Templates**`documents/templates/`Standard forms### Documentation Guidelines

[](#documentation-guidelines)

1. **Write drafts in `documents/drafts/`** - Not ready for publication
2. **Move to `documents/final/`** - After review and approval
3. **Use Memory MCP for notes** - Don't create `*.memory.md` files
4. **Follow project language policy** - See `.github/copilot-instructions.md`

Development Workflow
--------------------

[](#development-workflow)

### Working with Agents

[](#working-with-agents)

1. **Check [AGENTS.md](AGENTS.md)** - Find the right agent for your task
2. **Invoke agent** - Use `@agent-name` in Copilot chat
3. **Provide context** - Clear requirements and constraints
4. **Review output** - Validate and iterate

### Using Skills

[](#using-skills)

Skills are automatically loaded by Copilot when relevant. You can also manually load them:

```
# Load a skill
@workspace /skills documentation

# Use skill in context
@doc-writer Create a technical guide for feature X using the documentation skill

```

### Memory Management

[](#memory-management)

Use **Memory MCP** (`mcp_memory_*` tools) for transient data:

- Observations/Notes → `mcp_memory_store`
- Prior context lookup → `mcp_memory_search`
- List all memories → `mcp_memory_list`

**DO NOT** create local `*.memory.md` files.

Project Adaptation Guide
------------------------

[](#project-adaptation-guide)

### For Different Project Types

[](#for-different-project-types)

**RimWorld Mod Development**:

- Structure: See [documents/PROJECT.md](documents/PROJECT.md)
- Build: MSBuild, .NET Framework 4.8
- Test: In-game testing with Debug Mode

**ML/AI Research**:

- Add: `configs/`, `results/`, `checkpoints/`
- Tools: PyTorch, TensorFlow, Weights &amp; Biases
- Test: Reproducibility checks, statistical validation

**Web Development**:

- Add: `frontend/`, `backend/`, `api/`, `public/`
- Tools: React, Node.js, Express, Next.js
- Test: Unit tests, integration tests, E2E tests

**Game Development**:

- Add: `assets/`, `scenes/`, `scripts/`, `prefabs/`
- Tools: Unity, Unreal, Godot
- Test: Playtesting, performance profiling

**General Software**:

- Standard structure works out of the box
- Adapt as needed for your tech stack

### Customization Steps

[](#customization-steps)

1. **Update `documents/PROJECT.md`** - Add project-specific details
2. **Configure `.github/copilot-instructions.md`** - Set coding standards
3. **Add custom agents** - Create `.github/agents/.agent.md`
4. **Create skills** - Add `.github/skills//SKILL.md`
5. **Update AGENTS.md** - Document your custom agents

Getting Started
---------------

[](#getting-started)

**First-time project setup**:

1. **Read [documents/PROJECT.md](documents/PROJECT.md)** - Understand your project
2. **Check [AGENTS.md](AGENTS.md)** - Learn about available agents
3. **Review [documents/QUICKSTART.md](documents/QUICKSTART.md)** - Quick start guide
4. **Follow [documents/BUILD\_GUIDE.md](documents/BUILD_GUIDE.md)** - Build your project
5. **Use [documents/TEST\_GUIDE.md](documents/TEST_GUIDE.md)** - Test your work

Documentation
-------------

[](#documentation)

- **[documents/PROJECT.md](documents/PROJECT.md)** - Project overview and specifics
- **[AGENTS.md](AGENTS.md)** - AI agent documentation (must-read!)
- **[documents/AGENT\_MANUAL.md](documents/AGENT_MANUAL.md)** - AI agent operation manual
- **[documents/QUICKSTART.md](documents/QUICKSTART.md)** - Quick start guide
- **[documents/CHANGELOG.md](documents/CHANGELOG.md)** - Change history
- **[.github/copilot-instructions.md](.github/copilot-instructions.md)** - Development guidelines

Reference Codes
---------------

[](#reference-codes)

The `reference_codes/` directory stores **external code used as reference** during development.

**Management Principles**:

- ✅ Include: External projects, library examples, prototype code
- ❌ Exclude: Active project code (`src/`), archived versions (`archive/`), documentation (`documents/`)

**Guidelines**:

1. Verify and comply with licenses
2. Document version/date information clearly
3. Reference code is read-only (no direct modifications)
4. Regularly update or remove outdated references

**See [documents/PROJECT.md](documents/PROJECT.md) for project-specific references.**

Contributing
------------

[](#contributing)

This is a template project. To use it:

1. Clone or fork this repository
2. Adapt the structure to your project type
3. Update `documents/PROJECT.md` with your project details
4. Customize agents and skills as needed
5. Remove this section and add your project-specific content

License
-------

[](#license)

\[Specify your license\]

Links
-----

[](#links)

- [GitHub Copilot Documentation](https://docs.github.com/en/copilot)
- [Agent Skills Specification](https://agentskills.io/specification)
- [VS Code Copilot Customization](https://code.visualstudio.com/docs/copilot/customization/agent-skills)
- [Keep a Changelog](https://keepachangelog.com/)
- [Semantic Versioning](https://semver.org/)

---

**Template Version**: 1.0.0
**Last Updated**: 2026-02-23

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance83

Actively maintained with recent releases

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity28

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

5

Last Release

84d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2d212ea8d2e40d9d05a6a004eba527ba151552fec68ed4acfb58d587fd22c207?d=identicon)[GoemFunaila](/maintainers/GoemFunaila)

---

Top Contributors

[![goemktg](https://avatars.githubusercontent.com/u/44015503?v=4)](https://github.com/goemktg "goemktg (8 commits)")

---

Tags

laravellibraryseat

### Embed Badge

![Health badge](/badges/goemktg-seat-custom-plugin/health.svg)

```
[![Health](https://phpackages.com/badges/goemktg-seat-custom-plugin/health.svg)](https://phpackages.com/packages/goemktg-seat-custom-plugin)
```

###  Alternatives

[panphp/pan

A simple, lightweight, and privacy-focused product analytics php package.

1.2k94.6k5](/packages/panphp-pan)[nikolag/laravel-square

Square API integration with Laravel built on nikolag/core

3827.3k](/packages/nikolag-laravel-square)[mariojgt/witchcraft

A Laravel Package Witchcraft, a quick start for new laravel Packages

312.6k](/packages/mariojgt-witchcraft)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
