From 8a889ac28a57b3398fc9bae2cc4ecbe5921e2aab Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 7 May 2026 21:44:03 +0000 Subject: [PATCH 1/4] Initial plan From e1e5ec007d9b0b9aabbb6a75b1be8ddab654dca2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 7 May 2026 21:45:36 +0000 Subject: [PATCH 2/4] feat: scaffold latex, bibtex, pdf and README template Agent-Logs-Url: https://github.com/cypherstack/fcmp-grimoire/sessions/e831a4e2-f045-4050-9535-67a5c468c75d Co-authored-by: b-g-goodell <16093694+b-g-goodell@users.noreply.github.com> --- README.md | 31 +++++++++++++++++++++++++++++-- main.pdf | Bin 0 -> 628 bytes main.tex | 24 ++++++++++++++++++++++++ references.bib | 6 ++++++ 4 files changed, 59 insertions(+), 2 deletions(-) create mode 100644 main.pdf create mode 100644 main.tex create mode 100644 references.bib diff --git a/README.md b/README.md index 803b038..37dd2cc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,29 @@ -# fcmp-grimoire -Grimoire describing full-chain membership proofs +# Paper Repository Template + +> Replace this README content with your paper/project details. + +## Purpose +This repository is a minimal workspace for: +- `main.tex` (LaTeX source) +- `references.bib` (BibTeX references) +- `main.pdf` (compiled paper) +- a lightweight change log for paper revisions + +## Repository Layout +- `main.tex` — main LaTeX entrypoint +- `references.bib` — bibliography database +- `main.pdf` — compiled PDF to track paper snapshots + +## How To Use +1. Edit `main.tex` with your paper content. +2. Add/update citations in `references.bib`. +3. Compile and commit updated `main.pdf`. +4. Add an entry to the change log section below. + +## Change Log +- YYYY-MM-DD — _Short description of what changed_ +- YYYY-MM-DD — _Short description of what changed_ + +## Notes +- Keep entries concise and focused on paper-level changes. +- Replace placeholder sections as needed. diff --git a/main.pdf b/main.pdf new file mode 100644 index 0000000000000000000000000000000000000000..98d4d1e5d5aee7445cadadfdbeb2260fff31733e GIT binary patch literal 628 zcmZWnO>crg6uk2*=3>$w6c)jc#CWjPG^tIEa%f_DSmCJ{WX-ZPw!gk_Q7hIB2bec+ zW*%=Fv*$@uv;s%KgIevJ!2oXbeIU3`(#TA0;LhZR3iwQzV>omuPb|@X-!`0h?rWM9 zShg+wlT}oi8;Dw?t=u<_pSgk;KMlZ1~>(;%}a2MsuRAbxW1>BJ==u~;3?2Akq%i0W9^`bJRd}Frg z1-4!oO>*yyBF-itdWhEOa(3TCl;B~O$(Xh(OGqPD`$L*h0$u@{&~&gx$hG0(R7UiH zRhec<>k-ioL#%Pd`lzbNuUOc-!-U|O?5XkmfN#Y= otSxGo(UK?7)umaaKZFi1NGZGT^JOWF)TYWA1fkPtjNd2DFX{)U-v9sr literal 0 HcmV?d00001 diff --git a/main.tex b/main.tex new file mode 100644 index 0000000..96ee3f3 --- /dev/null +++ b/main.tex @@ -0,0 +1,24 @@ +\\documentclass[11pt]{article} + +\\usepackage[T1]{fontenc} +\\usepackage[utf8]{inputenc} + +\\title{} +\\author{} +\\date{\\today} + +\\begin{document} + +\\maketitle + +\\begin{abstract} + +\\end{abstract} + +\\section{Introduction} + + +\\bibliographystyle{plain} +\\bibliography{references} + +\\end{document} diff --git a/references.bib b/references.bib new file mode 100644 index 0000000..54604c7 --- /dev/null +++ b/references.bib @@ -0,0 +1,6 @@ +@misc{placeholder_reference, + title = {Placeholder Reference Title}, + author = {Placeholder Author}, + year = {2026}, + note = {Replace this with real citations.} +} From ad695db8f190f2b0ca4361e1426428832ceb0d2b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 7 May 2026 21:46:04 +0000 Subject: [PATCH 3/4] docs: align README template title with repository purpose Agent-Logs-Url: https://github.com/cypherstack/fcmp-grimoire/sessions/e831a4e2-f045-4050-9535-67a5c468c75d Co-authored-by: b-g-goodell <16093694+b-g-goodell@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 37dd2cc..4ccecc1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Paper Repository Template +# fcmp-grimoire Paper Template > Replace this README content with your paper/project details. From 5a33f77b2ce6481bfe6c204c6afcb8a9757ab080 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 7 May 2026 21:46:27 +0000 Subject: [PATCH 4/4] docs: clarify template relation to full-chain membership proofs Agent-Logs-Url: https://github.com/cypherstack/fcmp-grimoire/sessions/e831a4e2-f045-4050-9535-67a5c468c75d Co-authored-by: b-g-goodell <16093694+b-g-goodell@users.noreply.github.com> --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 4ccecc1..eec5baa 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # fcmp-grimoire Paper Template +Template workspace for the full-chain membership proofs paper. + > Replace this README content with your paper/project details. ## Purpose