modify docu

This commit is contained in:
김경종
2026-06-08 14:45:43 +09:00
parent 0c151cae56
commit bbed607e58
4 changed files with 28 additions and 0 deletions
+9
View File
@@ -13,6 +13,15 @@ Before changing code or documents, every Agent must read:
5. `docs/AGENT_RULES.md`
6. The task-specific upstream documents under `docs/requirements/`, `docs/research/`, `docs/formulations/`, `docs/io-definitions/`, `docs/reference-models/`, `docs/implementation-plans/`, or related phase folders.
## Repository Defaults
- Canonical remote repository: `https://teagit.mimi1011.synology.me/baram2584/FESADev.git`
- Use `origin` as the default remote name.
- The current shared baseline branch is `dev`.
- Use `codex/<short-task-name>` for new work branches unless the user requests a different branch.
- At session start, verify repository state with `git status --short --branch` and verify the remote with `git remote -v`.
- If a fresh checkout has no remote, add it with `git remote add origin https://teagit.mimi1011.synology.me/baram2584/FESADev.git`.
- Do not push, tag, release, or publish externally unless the user explicitly requests or approves it.
## Global Solver Workflow
All solver features follow this stage-gated workflow:
+8
View File
@@ -8,6 +8,12 @@ New Agents must read `AGENTS.md`, this file, `docs/PROGRESS.md`, `docs/WORKNOTE.
## Active Objective
Build the FESA structural solver foundation around the initial feature `mitc4-linear-static-shell`.
## Repository Context
- Canonical remote repository: `https://teagit.mimi1011.synology.me/baram2584/FESADev.git`
- Default remote name: `origin`
- Shared baseline branch: `dev`
- New task branches should use `codex/<short-task-name>` unless the user requests otherwise.
## Current High-Level Plan
1. Maintain project-level documentation and handoff files.
2. Analyze new solver feature requirements for `mitc4-linear-static-shell`.
@@ -26,12 +32,14 @@ Build the FESA structural solver foundation around the initial feature `mitc4-li
- `python scripts/validate_workspace.py` remains the default validation path.
- MITC4 reference comparison covers nodal displacement, reaction, element internal force/resultant, and stress.
- Result comparison uses a single tolerance value `1e-5` with absolute-or-relative pass logic.
- Agents can identify the canonical git remote and shared baseline branch from the project handoff documents.
## Coordination Rules
- Update this file when the plan, scope, ordering, or acceptance criteria change.
- Update `docs/PROGRESS.md` after completing work or running validation.
- Update `docs/WORKNOTE.md` after mistakes, failed approaches, environment traps, or decisions that future Agents should not rediscover.
- Keep `.codex/agents/*.toml` and `.codex/skills/*/SKILL.md` pointed at `docs/AGENT_RULES.md` for common operating rules.
- Verify `git status --short --branch` and `git remote -v` at the start of git-aware work.
## Known Blockers
- No CMake project exists yet, so `python scripts/validate_workspace.py` currently takes the no-op path.
+3
View File
@@ -20,6 +20,7 @@
- Updated `.codex/agents/*.toml`, `.codex/skills/*/SKILL.md`, and related tests to reference `docs/AGENT_RULES.md` instead of the solver agent design document.
- Renamed the first solver development workflow stage to "새로운 솔버 기능 요구조건 분석" across `AGENTS.md`, `docs/`, `.codex/agents/requirement-agent.toml`, and `.codex/skills/fesa-requirements-baseline`.
- Refined `requirement-agent` and `fesa-requirements-baseline` internals to describe a new solver feature requirements analysis document instead of a requirements drafting/specification task.
- Documented the canonical git remote `https://teagit.mimi1011.synology.me/baram2584/FESADev.git`, default remote `origin`, shared baseline branch `dev`, and `codex/<short-task-name>` work branch convention in `AGENTS.md`, `docs/AGENT_RULES.md`, and `docs/PLAN.md`.
## In Progress
- Ready for the next stage: new solver feature requirements analysis for `mitc4-linear-static-shell`.
@@ -33,6 +34,8 @@
6. Create `docs/implementation-plans/mitc4-linear-static-shell-implementation-plan.md`.
## Last Validation
- 2026-06-08: After documenting git repository settings, `python scripts/validate_workspace.py` passed through the expected no-op path because no root `CMakeLists.txt` exists yet.
- 2026-06-08: After documenting git repository settings, `git diff --check` passed with only Git line-ending normalization warnings.
- 2026-06-08: After refining `requirement-agent` and `fesa-requirements-baseline` internals, `python C:\Users\baram\.codex\skills\.system\skill-creator\scripts\quick_validate.py .codex\skills\fesa-requirements-baseline` passed.
- 2026-06-08: After refining `requirement-agent` and `fesa-requirements-baseline` internals, `python -m unittest discover -s scripts -p "test_*.py"` passed. 85 tests ran successfully.
- 2026-06-08: After refining `requirement-agent` and `fesa-requirements-baseline` internals, `python scripts/validate_workspace.py` passed through the expected no-op path because no root `CMakeLists.txt` exists yet.