master fc85a90c63d1 cached
8 files
5.7 KB
1.8k tokens
1 requests
Download .txt
Repository: openopensource/openopensource.github.io
Branch: master
Commit: fc85a90c63d1
Files: 8
Total size: 5.7 KB

Directory structure:
gitextract_lsq6gp2w/

├── .gitignore
├── Makefile
├── Readme.md
├── foot.html
├── head.html
├── index.html
├── package.json
└── style.css

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
node_modules
npm-debug.log


================================================
FILE: Makefile
================================================
prepublish: index.html

start: prepublish
	http-server

index.html: Readme.md head.html foot.html package.json Makefile
	cat head.html > build.html
	## Change <project name> to This
	sed 's/&lt;project name&gt;/This/g' Readme.md >> build.md
	marked -i build.md >> build.html
	rm build.md
	cat foot.html >> build.html
	mv build.html index.html


clean:
	-rm index.html
	-rm build.html

.PHONY: prepublish start clean


================================================
FILE: Readme.md
================================================
# &lt;project name&gt; is an [OPEN Open Source Project](https://openopensource.github.io/)

-----------------------------------------

## What?

Individuals making significant and valuable contributions are given
commit-access to the project to contribute as they see fit. This project
is more like an open wiki than a standard guarded open source project.

## Rules

There are a few basic ground-rules for contributors:

1. **No `--force` pushes** or modifying the Git history in any way.
1. **Non-main branches** ought to be used for ongoing work.
1. **External API changes and significant modifications** ought to be subject to an **internal pull-request** to solicit feedback from other contributors.
1. Internal pull-requests to solicit feedback are *encouraged* for any other non-trivial contribution but left to the discretion of the contributor.
1. Contributors should attempt to adhere to the prevailing code-style.

## Releases

Declaring formal releases remains the prerogative of the project maintainer.

## Changes to this arrangement

This is an experiment and feedback is welcome! This document may also be
subject to pull-requests or changes by contributors where you believe
you have something valuable to add or change.

Get a copy of this manifesto as [markdown](https://raw.githubusercontent.com/openopensource/openopensource.github.io/master/Readme.md) and use it in your own projects.


================================================
FILE: foot.html
================================================
</body>
</html>


================================================
FILE: head.html
================================================
<!doctype html>
<html>
<head>
  <title>OPEN Open Source</title>
  <link href='http://fonts.googleapis.com/css?family=Ubuntu:300,500' rel='stylesheet' type='text/css'>
  <link href='style.css' rel='stylesheet' type='text/css'>
</head>
<body>
<a href="https://github.com/openopensource/openopensource.github.io"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>


================================================
FILE: index.html
================================================
<!doctype html>
<html>
<head>
  <title>OPEN Open Source</title>
  <link href='https://fonts.googleapis.com/css?family=Ubuntu:300,500' rel='stylesheet' type='text/css'>
  <link href='style.css' rel='stylesheet' type='text/css'>
</head>
<body>
<a href="https://github.com/openopensource/openopensource.github.io"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
<h1 id="this-is-an-open-open-source-project-http-openopensource-org-">This is an <a href="https://openopensource.github.io/">OPEN Open Source Project</a></h1>
<hr>
<h2 id="what-">What?</h2>
<p>Individuals making significant and valuable contributions are given
commit-access to the project to contribute as they see fit. This project
is more like an open wiki than a standard guarded open source project.</p>
<h2 id="rules">Rules</h2>
<p>There are a few basic ground-rules for contributors:</p>
<ol>
<li><strong>No <code>--force</code> pushes</strong> or modifying the Git history in any way.</li>
<li><strong>Non-main branches</strong> ought to be used for ongoing work.</li>
<li><strong>External API changes and significant modifications</strong> ought to be subject to an <strong>internal pull-request</strong> to solicit feedback from other contributors.</li>
<li>Internal pull-requests to solicit feedback are <em>encouraged</em> for any other non-trivial contribution but left to the discretion of the contributor.</li>
<li>Contributors should attempt to adhere to the prevailing code-style.</li>
</ol>
<h2 id="releases">Releases</h2>
<p>Declaring formal releases remains the prerogative of the project maintainer.</p>
<h2 id="changes-to-this-arrangement">Changes to this arrangement</h2>
<p>This is an experiment and feedback is welcome! This document may also be
subject to pull-requests or changes by contributors where you believe
you have something valuable to add or change.</p>
<p>Get a copy of this manifesto as <a href="https://raw.githubusercontent.com/openopensource/openopensource.github.io/master/Readme.md">markdown</a> and use it in your own projects.</p>

</body>
</html>


================================================
FILE: package.json
================================================
{
  "name": "openopensource.github.io",
  "version": "0.0.0",
  "description": "https://openopensource.github.io/",
  "scripts": {
    "prepublish": "make prepublish",
    "start": "make start",
    "clean": "make clean"
  },
  "devDependencies": {
    "http-server": "^0.8.0",
    "marked": "^0.3.3"
  }
}


================================================
FILE: style.css
================================================
html, body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Ubuntu', sans-serif;
  background: #f0f0f8;
  color: #404050;
  max-width: 800px;
  max-width: 40vw;
  margin: 0 auto;
  font-weight: 300;
  font-size: 1.2em;
}

h1 {
  letter-spacing: 0.2em;
  text-align: center;
  max-width: 700px;
  margin: 1em auto;
}

a {
 color: #4cb5ff;
 text-decoration: none;
}

a:hover {
 color: #acd5ff;
}
Download .txt
gitextract_lsq6gp2w/

├── .gitignore
├── Makefile
├── Readme.md
├── foot.html
├── head.html
├── index.html
├── package.json
└── style.css
Condensed preview — 8 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (6K chars).
[
  {
    "path": ".gitignore",
    "chars": 27,
    "preview": "node_modules\nnpm-debug.log\n"
  },
  {
    "path": "Makefile",
    "chars": 416,
    "preview": "prepublish: index.html\n\nstart: prepublish\n\thttp-server\n\nindex.html: Readme.md head.html foot.html package.json Makefile\n"
  },
  {
    "path": "Readme.md",
    "chars": 1407,
    "preview": "# &lt;project name&gt; is an [OPEN Open Source Project](https://openopensource.github.io/)\n\n----------------------------"
  },
  {
    "path": "foot.html",
    "chars": 16,
    "preview": "</body>\n</html>\n"
  },
  {
    "path": "head.html",
    "chars": 722,
    "preview": "<!doctype html>\n<html>\n<head>\n  <title>OPEN Open Source</title>\n  <link href='http://fonts.googleapis.com/css?family=Ubu"
  },
  {
    "path": "index.html",
    "chars": 2417,
    "preview": "<!doctype html>\n<html>\n<head>\n  <title>OPEN Open Source</title>\n  <link href='https://fonts.googleapis.com/css?family=Ub"
  },
  {
    "path": "package.json",
    "chars": 307,
    "preview": "{\n  \"name\": \"openopensource.github.io\",\n  \"version\": \"0.0.0\",\n  \"description\": \"https://openopensource.github.io/\",\n  \"s"
  },
  {
    "path": "style.css",
    "chars": 477,
    "preview": "html, body {\n  margin: 0;\n  padding: 0;\n}\n\nbody {\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: gray"
  }
]

About this extraction

This page contains the full source code of the openopensource/openopensource.github.io GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 8 files (5.7 KB), approximately 1.8k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!